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

Uploaded Source

Built Distributions

vpython-7.6.1b10-cp38-cp38-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.8 Windows x86-64

vpython-7.6.1b10-cp38-cp38-manylinux1_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8

vpython-7.6.1b10-cp38-cp38-macosx_10_13_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8 macOS 10.13+ x86-64

vpython-7.6.1b10-cp37-cp37m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.7m Windows x86-64

vpython-7.6.1b10-cp37-cp37m-manylinux1_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7m

vpython-7.6.1b10-cp37-cp37m-macosx_10_13_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.7m macOS 10.13+ x86-64

vpython-7.6.1b10-cp36-cp36m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.6m Windows x86-64

vpython-7.6.1b10-cp36-cp36m-manylinux1_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.6m

vpython-7.6.1b10-cp36-cp36m-macosx_10_13_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.6m macOS 10.13+ x86-64

File details

Details for the file vpython-7.6.1b10.tar.gz.

File metadata

  • Download URL: vpython-7.6.1b10.tar.gz
  • Upload date:
  • Size: 3.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.1

File hashes

Hashes for vpython-7.6.1b10.tar.gz
Algorithm Hash digest
SHA256 c84f5c701b1bbdca3604b68d3ec27b6839fdd856b597efc8ebc6fe0cbfe908cb
MD5 a8c5e85e6d6336e7e5bc3d993c32b713
BLAKE2b-256 e4fc7736f3e43479debcf57ec93fa55f5d08b13e1724184d6ec4e83ad81e3abe

See more details on using hashes here.

Provenance

File details

Details for the file vpython-7.6.1b10-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: vpython-7.6.1b10-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.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.1

File hashes

Hashes for vpython-7.6.1b10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cab9d3d0fdecf98f374cf96174cd9bebe790e7cc5a5211f6e88cb82771be8ed8
MD5 2f74fac9fce7d66329a5471b27aacc2f
BLAKE2b-256 d1399ab9763e5056566d93886bf7980887952dbf2ffff41f4b37ab84537f1a2c

See more details on using hashes here.

Provenance

File details

Details for the file vpython-7.6.1b10-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: vpython-7.6.1b10-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.1

File hashes

Hashes for vpython-7.6.1b10-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a4c077d820ea9cfaa62cad374f65bb9fb4a103c5aa3f0ac9b5dcb225bd8e1b60
MD5 92c7922321581143032a8d01901a5daf
BLAKE2b-256 40067339bcff8b96968a630e422baf7458f78e094b6e6e2834712509279eefb9

See more details on using hashes here.

Provenance

File details

Details for the file vpython-7.6.1b10-cp38-cp38-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: vpython-7.6.1b10-cp38-cp38-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.8, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.1

File hashes

Hashes for vpython-7.6.1b10-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dbc8d3cb41c3821a7442ef345352328a85b15af595651fb439c09a0378bf9601
MD5 b6597746e48dc047a43692775c48a329
BLAKE2b-256 156b2978240125f5250f35bcf2d8b5953de6ce49ffea654468337cee4c8b8cde

See more details on using hashes here.

Provenance

File details

Details for the file vpython-7.6.1b10-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: vpython-7.6.1b10-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.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6

File hashes

Hashes for vpython-7.6.1b10-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ce70d01864e3b92495b71c33b25f695291fd5edbaf533e7acc778429e550fda7
MD5 78971cee138c04968ca07310fba54db7
BLAKE2b-256 2a0d1ced8ab3dc9c2dd0af9343d75134ad20c6946cd7af74dc6a3386ae3e0ff5

See more details on using hashes here.

Provenance

File details

Details for the file vpython-7.6.1b10-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: vpython-7.6.1b10-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.1

File hashes

Hashes for vpython-7.6.1b10-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 eea47f6b24b19c9c076007f25bd243b9ba8b01664fdc3c7368980748fc4c7c45
MD5 692c41d99e8d46365e4077c879e457d7
BLAKE2b-256 b799cc0e7733820c110bc0e7818205d55bfd6b57aa856e5bf120c14b279b987c

See more details on using hashes here.

Provenance

File details

Details for the file vpython-7.6.1b10-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: vpython-7.6.1b10-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6

File hashes

Hashes for vpython-7.6.1b10-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 30c7d8dae0f9ae8655a2bc61340e704109351405ab8cc1309f326a6d53b00876
MD5 b8fae7958c37a6c16e7f18a95494dc85
BLAKE2b-256 8b529b4635eb063f2633a43cd638694ec6c5dd2775e56d70276a992b1c43bdc2

See more details on using hashes here.

Provenance

File details

Details for the file vpython-7.6.1b10-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: vpython-7.6.1b10-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.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.6.8

File hashes

Hashes for vpython-7.6.1b10-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 31a567e464be0f37ef19bc432ef4deab9a9ef6e999ff2803c04a3dac1c16762b
MD5 47746d6fe98d3ae654d285c21b7acee0
BLAKE2b-256 9436289ca6fd043a9689e76ad62aa1f2842a0234c324c08959546f81e8419c5c

See more details on using hashes here.

Provenance

File details

Details for the file vpython-7.6.1b10-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: vpython-7.6.1b10-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.1

File hashes

Hashes for vpython-7.6.1b10-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ad085b84d9cfba83e8018b1668a5f8ec40898ad9240e890b9101ac827c7fc22a
MD5 977a3e78a37c787f8a603e9853e0f491
BLAKE2b-256 7eb8fb703c8fb600f367947ac2513fa24379168ee12c9663cfed020142eb39b8

See more details on using hashes here.

Provenance

File details

Details for the file vpython-7.6.1b10-cp36-cp36m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: vpython-7.6.1b10-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.6m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.6.10

File hashes

Hashes for vpython-7.6.1b10-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7ba12f498346c941cf08baa2a4ae83c7cd954528bda89429155c6c013befb78a
MD5 0721ede62a1dd1379412d45e25173d7a
BLAKE2b-256 04232d125c79d38244abebd1473d0f6e7fe1ba9d3acf9e791de40e4ec6cd0f0d

See more details on using hashes here.

Provenance

Supported by

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