Skip to main content

VPython for Jupyter Notebook

Project description

VPython

This package enables one to run VPython in a browser, using the GlowScript VPython API, documented in the Help at https://www.glowscript.org. If the code is in a cell in a Jupyter notebook, the 3D scene appears in the Jupyter notebook. If the code is launched outside a notebook (e.g. from the command line), a browser window will open displaying the scene.

VPython makes it unusually easy to create navigable real-time 3D animations. The one-line program "sphere()" produces a 3D sphere with appropriate lighting and with the camera positioned so that the scene fills the view. It also activates mouse interactions to zoom and rotate the camera view. This implementation of VPython was begun by John Coady in May 2014. Ruth Chabay, Matt Craig, and Bruce Sherwood are assisting in its further development.

Installation

For more detailed instructions on how to install vpython, see https://vpython.org, where you will also find a link to the VPython forum, which is a good place to report issues and to request assistance.

Briefly:

  • If you use the anaconda python distribution, install like this: conda install -c vpython vpython
  • If you use any other python distribution, install this way: pip install vpython

Sample program

Here is a simple example:

from vpython import *
sphere()

This will create a canvas containing a 3D sphere, with mouse and touch controls available to zoom and rotate the camera:

Right button drag or Ctrl-drag to rotate "camera" to view scene.
To zoom, drag with middle button or Alt/Option depressed, or use scroll wheel.
     On a two-button mouse, middle is left + right.
Shift-drag to pan left/right and up/down.
Touch screen: pinch/extend to zoom, swipe or two-finger rotate.

Currently, to re-run a VPython program in a Jupyter notebook you need to click the circular arrow icon to "restart the kernel" and then click the red-highlighted button, then click in the first cell, then click the run icon. Alternatively, if you insert scene = canvas() at the start of your program, you can rerun the program without restarting the kernel.

Run example VPython programs: Binder

Installation for developers from package source

You should install Cython (conda install cython or pip install cython) so that the fast version of the vector class can be generated and compiled. You may also need to install a compiler (command line tools on Mac, community edition on Visual Studio on Windows).

If you don't have a compilier vpython should still work, but code that generates a lot of vectors may run a little slower.

To install vpython from source run this command from the source directory after you have downloaded it:

pip install -e .

The -e option installs the code with symbolic links so that change you make show up without needing to reinstall.

If you also need the JupyterLab extension, please see the instructions in the labextension folder.

vpython build status (for the vpython developers)

Testing workfloww

Working with the source code

Here is an overview of the software architecture:

https://vpython.org/contents/VPythonArchitecture.pdf

The vpython module uses the GlowScript library (vpython/vpython_libraries/glow.min.js). The GlowScript repository is here:

https://github.com/vpython/glowscript

In the GlowScript repository's docs folder, GlowScriptOverview.txt provides more details on the GlowScript architecture.

Here is information on how to run GlowScript VPython locally, which makes possible testing changes to the GlowScript library:

https://www.glowscript.org/docs/GlowScriptDocs/local.html

If you execute build_original_no_overload.py, and change the statement "if True:" to "if False", you will generate into the ForInstalledPython folder an un-minified glow.min.js which can be copied to site-packages/vpython/vpython_libraries and tested by running your test in (say) idle or spyder. (Running in Jupyter notebook or Jupyterlab requires additional fiddling.)

Note that in site-packages/vpython/vpython_libraries it is glowcomm.html that is used by launchers such as idle or spyder; glowcomm.js is used with Jupyter notebook (and a modified version is used in Jupyterlab).

Placing console.log(....) statements in the GlowScript code or in the JavaScript section of glowcomm.html can be useful in debugging. You may also need to put debugging statements into site-packages/vpython/vpython.py.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vpython-7.6.4rc2.tar.gz (3.6 MB view details)

Uploaded Source

Built Distributions

vpython-7.6.4rc2-cp310-cp310-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.10Windows x86-64

vpython-7.6.4rc2-cp310-cp310-macosx_10_15_universal2.whl (3.6 MB view details)

Uploaded CPython 3.10macOS 10.15+ universal2 (ARM64, x86-64)

vpython-7.6.4rc2-cp39-cp39-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.9Windows x86-64

vpython-7.6.4rc2-cp39-cp39-macosx_10_15_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

vpython-7.6.4rc2-cp38-cp38-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.8Windows x86-64

vpython-7.6.4rc2-cp38-cp38-macosx_10_15_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

vpython-7.6.4rc2-cp37-cp37m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

vpython-7.6.4rc2-cp37-cp37m-macosx_10_15_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

File details

Details for the file vpython-7.6.4rc2.tar.gz.

File metadata

  • Download URL: vpython-7.6.4rc2.tar.gz
  • Upload date:
  • Size: 3.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for vpython-7.6.4rc2.tar.gz
Algorithm Hash digest
SHA256 5b11dfce03aea45ea32b96480cd91753e02cfc56d576726ce57e8212a5eea1b6
MD5 fe2ab9b16c97a7dea3c76a331af4dbe9
BLAKE2b-256 b61a5c40e2cc8a1a985b05f54ea092292bc9d91288bad3bf7194cb615278e4d4

See more details on using hashes here.

File details

Details for the file vpython-7.6.4rc2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: vpython-7.6.4rc2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for vpython-7.6.4rc2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fe8e9468db26041164730bc481ce10400ce7eb621390ffd779a5d79373f9b232
MD5 8ccab60c1676f5b847e98886fee77c3e
BLAKE2b-256 7f5c285e03d252c2f800e6a983c52793382cb588ae2403f24af9f7986d3160f1

See more details on using hashes here.

File details

Details for the file vpython-7.6.4rc2-cp310-cp310-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for vpython-7.6.4rc2-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 36243133dd72c8e0006c6086af608f7a0e00ef7cb0f21de3d1e8e7374687addb
MD5 df013c89390f68b9ff02cfc4a335c1de
BLAKE2b-256 f8feda9aa01a98233fd4844836201ab4449a9fb761ff8c198dba1095da0350b3

See more details on using hashes here.

File details

Details for the file vpython-7.6.4rc2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: vpython-7.6.4rc2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for vpython-7.6.4rc2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 872b902b3912982a3dd373d2f0d95401d980cbf7f1bf8c2de226fc1cc586f821
MD5 d68562e7151beef780a1682ffad0a78f
BLAKE2b-256 03881a1ea056d4c2550d5867f6c905a46ed4a1beac2c34664dcb1d75bdbb9d42

See more details on using hashes here.

File details

Details for the file vpython-7.6.4rc2-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for vpython-7.6.4rc2-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 aa427c1fd0bc03979a38ed55b4e92a36d52ba7c11a1f69f82614943425ceff91
MD5 930c13b1cd4b3e64e3331ce8539194f8
BLAKE2b-256 69d8594d913b84db009b8e5235cd683d55961717bd603bce7aabb8561becd8c1

See more details on using hashes here.

File details

Details for the file vpython-7.6.4rc2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: vpython-7.6.4rc2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for vpython-7.6.4rc2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 71976f55762fa73836c92d5d9a1544bab6e55b27c259a32666c93f167276dfc8
MD5 6b3e4829222fde1ded021e880b3aa6da
BLAKE2b-256 81c8344e682a9e76ef555602585a254b366fe2db4863e75ffb348ee148591c58

See more details on using hashes here.

File details

Details for the file vpython-7.6.4rc2-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for vpython-7.6.4rc2-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 81f29ae659a03af823644e911937a48ffcd8a3084d80d3b2075d706ab94c9484
MD5 180e749402aa8e7d69d4d54682957946
BLAKE2b-256 dd1d3720a453e2281e5d551fdf827c5d36f3e8d8f7c68ec789f8cd33cf27b78a

See more details on using hashes here.

File details

Details for the file vpython-7.6.4rc2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: vpython-7.6.4rc2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.9

File hashes

Hashes for vpython-7.6.4rc2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 94c1e757e620538a2139b87a8473904a176a3699ca2d196f2782721fd6deafa3
MD5 f7d5bf930a589e8b35357f1b1bb47d70
BLAKE2b-256 5caaab9c1027a66de5c516c921c98bfe29a630c61315410750db2df3f3ad07ce

See more details on using hashes here.

File details

Details for the file vpython-7.6.4rc2-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for vpython-7.6.4rc2-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5a3b606b2ab576da7b2d9cebd7383f15640dcda35dc88661aef1db50fc65ab2a
MD5 8a73e0500c970bca4cec7723fbd62b31
BLAKE2b-256 eba7908702aad61bfaa28a276aeef7c1aa5e93b8ab9a6104784a92ae2f802a68

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page