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)

Build Status Build status

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.2rc10.tar.gz (3.6 MB view details)

Uploaded Source

Built Distributions

vpython-7.6.2rc10-cp38-cp38-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.8Windows x86-64

vpython-7.6.2rc10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

vpython-7.6.2rc10-cp38-cp38-macosx_10_14_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

vpython-7.6.2rc10-cp37-cp37m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

vpython-7.6.2rc10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

vpython-7.6.2rc10-cp37-cp37m-macosx_10_14_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

vpython-7.6.2rc10-cp36-cp36m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

vpython-7.6.2rc10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

vpython-7.6.2rc10-cp36-cp36m-macosx_10_14_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

File details

Details for the file vpython-7.6.2rc10.tar.gz.

File metadata

  • Download URL: vpython-7.6.2rc10.tar.gz
  • Upload date:
  • Size: 3.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.10

File hashes

Hashes for vpython-7.6.2rc10.tar.gz
Algorithm Hash digest
SHA256 2ab0afd049eb2139513e5961d8a2c5d54b37a27ac151333e77f15ae11c01085c
MD5 22a8738decc75abab48b26637afa12b1
BLAKE2b-256 7d8c5dc769b21eb2d0987a59939c3f6e41f7f3ce4e327461cb05d64fad739de7

See more details on using hashes here.

File details

Details for the file vpython-7.6.2rc10-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: vpython-7.6.2rc10-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/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.10

File hashes

Hashes for vpython-7.6.2rc10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 058f63ed1827d2ae3f89403802b1355bd980536e5a99fcc59db191401d929af5
MD5 21b826d234adfc55467694a6f874ab44
BLAKE2b-256 bf02f109e9b398ec496446e5bd0f8178007fde6ba8d8db7274c9f290dcf24a91

See more details on using hashes here.

File details

Details for the file vpython-7.6.2rc10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for vpython-7.6.2rc10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9f15e3b974d12c4b42dfd1ad0b3efb54ca7c297d781c6ab080f5ca1796f44544
MD5 4f0d8e8dba73d4acb5d79f2363f60705
BLAKE2b-256 9db1492503d2084d1a692a034c2cc1cc697b720837f59cfcf0fc3e0be25d82db

See more details on using hashes here.

File details

Details for the file vpython-7.6.2rc10-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: vpython-7.6.2rc10-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.10

File hashes

Hashes for vpython-7.6.2rc10-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 d4ae647db42e628710bd66bee5e95429da3f66d4665b05ff3662d25db7562896
MD5 28a8b61dc3f7680d8dbb5a776dd89133
BLAKE2b-256 c49f27b124bef6dd9f34a2fad4c3ff3a0f4186ef5c08f626191c517f9c2e9f3e

See more details on using hashes here.

File details

Details for the file vpython-7.6.2rc10-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: vpython-7.6.2rc10-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/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.9

File hashes

Hashes for vpython-7.6.2rc10-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 668514af3ccf994771fcdac5da82fefd8ab3a05ae8b23a08eb3ab29ecda1b2c1
MD5 7eb3f5f0a6808a27e95c0bf37811985f
BLAKE2b-256 37327944e63e9848162dce6b40cc83f8560225d14e0f063964ea3088ffee92e9

See more details on using hashes here.

File details

Details for the file vpython-7.6.2rc10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for vpython-7.6.2rc10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eca6cc96526cec35db1516a93e64a00f95e29280f1694fe09598751e0dc202ee
MD5 4a58f93415058a2c5adb65f052c8f780
BLAKE2b-256 cb32879978a9320bf29a95a354572d46fd287bffa47ecd34a4723a1d1537579c

See more details on using hashes here.

File details

Details for the file vpython-7.6.2rc10-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: vpython-7.6.2rc10-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.10

File hashes

Hashes for vpython-7.6.2rc10-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c2709f93fb16295ec3bac1474ade4b100872a63c290701bc980a024d67469687
MD5 2e5ff8800874ef481de80dfca43049ab
BLAKE2b-256 f7c325148ae47645537da14088bbde9153062bac35a15fcc7de54a642cb2123b

See more details on using hashes here.

File details

Details for the file vpython-7.6.2rc10-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: vpython-7.6.2rc10-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.6.8

File hashes

Hashes for vpython-7.6.2rc10-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 07f5c4a7c47e43e8e5da6a4dd7d638d9378f30e6eb4954f615e5f8d282734b9e
MD5 f9556c6e7beb596df401fdf5704cb0b7
BLAKE2b-256 44bb0988a09aabd05c2448e8348d75e6d5452a7cc2b8884968ad8d16a111c413

See more details on using hashes here.

File details

Details for the file vpython-7.6.2rc10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for vpython-7.6.2rc10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 569726678be90c21405643b7b692b3e1c299130a8ac7a00dcb59a3ed01bed22a
MD5 896759ab8ce5e5506e988f62c882e819
BLAKE2b-256 0c8a00d6f1b2523ed5ed92a09f0f3e1fc0a6947ff959900b4748252496d5d40b

See more details on using hashes here.

File details

Details for the file vpython-7.6.2rc10-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: vpython-7.6.2rc10-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.6.13

File hashes

Hashes for vpython-7.6.2rc10-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 94698cefe81bcaff3c09635dc2521130b4e020bc8373e92ad87565af294bd20c
MD5 15605081f2cd3624ddc8556bd233e81a
BLAKE2b-256 ba247ba1ed5dd8dbfc863d07e00f7172574aa685593dd77f1de093f32e6313db

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