Pyodide is a Python distribution for the browser and Node.js based on WebAssembly
Go to file
Roman Yurchak 052f7f0bb4
Fix documentation build (#939)
2020-12-24 11:39:48 +01:00
.circleci Build C libraries via buildall.py (#927) 2020-12-23 14:24:32 +01:00
.github/workflows Docker image with prebuilt pyodide (#787) 2020-11-08 21:05:38 +01:00
benchmark BLD Don't compile host python (#830) 2020-12-08 00:19:16 +01:00
bin Explicitly use python3 for pyodide_build 2019-01-09 20:56:46 +05:30
cpython FIX update bzip2 url (#868) 2020-12-16 17:55:05 +01:00
docs DOC Update release notes for v0.16.0 (#813) 2020-12-24 11:31:35 +01:00
emsdk modifiy MEMFS timestamp handling to support better caching (#893) 2020-12-24 09:34:02 +01:00
packages PKG Add imageio (#919) 2020-12-24 08:26:26 +01:00
pyodide_build FIX Don't list C libraries as dependencies in packages.json (#931) 2020-12-24 09:38:54 +01:00
src Improvements to eval_code (#876) 2020-12-24 09:53:45 +01:00
tools Rerun failed tests sequentially (#859) 2020-12-14 18:05:15 +01:00
.clang-format Remove keys from .clang-format 2018-11-13 09:46:24 -05:00
.dockerignore Docker image with prebuilt pyodide (#787) 2020-11-08 21:05:38 +01:00
.editorconfig Fix #71: Upgrade to Python 3.7 2018-09-06 10:56:33 -04:00
.gitignore Build packages in parallel (#840) 2020-12-10 20:37:08 +01:00
.pre-commit-config.yaml Fix lint CI (#759) 2020-09-24 12:28:10 +02:00
.readthedocs.yml Fix documentation build (#939) 2020-12-24 11:39:48 +01:00
CODE-OF-CONDUCT.md DOC/MAINT Use MyST markdown parser in the documentation (#778) 2020-10-30 21:09:25 +01:00
Dockerfile Split build for core and packages in CI pipeline (#828) 2020-12-11 16:47:47 +01:00
Dockerfile-prebuilt MAINT Reorganize src/ and tests/ folders (#786) 2020-11-09 13:28:02 +01:00
LICENSE Initial commit 2018-02-23 14:21:29 -05:00
Makefile Build C libraries via buildall.py (#927) 2020-12-23 14:24:32 +01:00
Makefile.envs Update binaryen version_86 (#910) 2020-12-22 11:24:51 +08:00
README.md DOC Add pyodide logo (#777) 2020-10-29 23:38:32 +01:00
conftest.py TST Replace test CGI server with pytest-httpserver (#823) 2020-12-06 14:08:22 +01:00
run_docker Use newer docker image in run_docker (#848) 2020-12-12 11:31:53 +01:00
setup.cfg MAINT Reorganize src/ and tests/ folders (#786) 2020-11-09 13:28:02 +01:00

README.md

Build Status Documentation Status

The Python scientific stack, compiled to WebAssembly.

What is Pyodide?

Pyodide brings the Python 3.8 runtime to the browser via WebAssembly, along with the Python scientific stack including NumPy, Pandas, Matplotlib, parts of SciPy, and NetworkX. The packages directory lists over 35 packages which are currently available.

Pyodide provides transparent conversion of objects between Javascript and Python. When used inside a browser, Python has full access to the Web APIs.

While closely related to the iodide project, a tool for literate scientific computing and communication for the web, Pyodide goes beyond running in a notebook environment. To maximize the flexibility of the modern web, Pyodide may be used standalone in any context where you want to run Python inside a web browser.

Try Pyodide (no installation needed)

Try the iodide demo notebook or fire up a Python REPL directly in your browser.

For further information, look through the documentation.

Getting Started

Pyodide offers three different ways to get started depending on your needs and technical resources. These include:

  • Use hosted distribution of pyodide: see using pyodide from Javascript documentation.
  • Download a pre-built version from this repository's releases page and serve its contents with a web server.
  • Build Pyodide from source
    • Build natively with make: primarily for Linux users who want to experiment or contribute back to the project.
    • Use a Docker image: recommended for Windows and macOS users and for Linux users who prefer a Debian-based Docker image with the dependencies already installed.

Contributing

Please view the contributing guide for tips on filing issues, making changes, and submitting pull requests.

License

Pyodide uses the Mozilla Public License Version 2.0. See the LICENSE file for more details.