Home

   Overview of Python & VPython

  "Welcome to VPython" tutorial

  Introductory Videos

  Pictures of 3D objects

  

  

  

  VPython 7 web site
  VPython license

Files and Libraries
file dialog

File operations

In Web VPython, you can import an external JavaScript library, read a file on the user's local computer, or download a file containing text generated by your program. The following information does not apply to VPython 7, where one can use the standard Python methods for importing modules and reading or writing files.

get_library: import a library

To import a JavaScript library, do this:

get_library("https://xyz.org/lib.js")

If the file cannot be found within a reasonable amount of time, an error message is displayed.

Currently the library must be written in JavaScript, not RapydScript, or VPython. Moreover, there are restrictions imposed because the library doesn't go through the special preprocessing that occurs when you run your program at glowscript.org. The library cannot include options that require using "rate" or "waitfor", and the following vector operations must be rewritten as shown, where A and B are vectors and k is an ordinary number:

A+B -> A.add(B)
A-B -> A.sub(B)
k*A -> A.multiply(k)
A/k -> A.divide(k)

However, when editing a file at glowscript.org in any language, clicking "Share this program" outputs code that has been converted to executable JavaScript, so you may find it useful to start from, say, RapydScript or VPython. You may have to make adjustments to the generated JavaScript.

It is not currently possible to import from your own glowscript.org files, so the library must be placed on your own web site.

read_local_file: user chooses a file

The reading and writing of files is very different in a web browser, due to security issues (you don't want an arbitrary web page to read and write your computer files). You can ask the user of your program to choose a text file on the user's computer and then use the contents of the file. The function read_local_file appends a button that says "Choose File" on the screen at the location specified, such as scene.title_anchor or scene.caption_anchor. When the user clicks that button, a file dialog appears which lets the user choose a file. Then the button is removed, and information about the file is returned.

f = read_local_file(scene.title_anchor)
print(f.name) # The file name
print(f.size) # File size in bytes
print(f.type) # What kind of file
print(f.date) # Creation date if available
print('-------------------')
print(f.text) # The file contents

If you say read_local_file(), the button is appended to the bottom of the window, corresponding to the jQuery location $('body').

download: writing a file

Due to security issues, it is not possible to write directly from a browser to an arbitrary file in the user's computer storage. However, a browser can write to the user's download folder. In Web VPython you can write a string to the download folder using the download function:

download(filename, data)

Both the filename and the data must be strings. A useful way to create the data string is to use Python f-strings; see Text Output. Note that repeated execution with the same file name results in the later downloaded files having (1), (2), (3)..added .to the file name.