Pyodide is a Python distribution for the browser and Node.js based on WebAssembly
Go to file
pre-commit-ci[bot] 00d0f347c8
[pre-commit.ci] pre-commit autoupdate (#3190)
updates:
- [github.com/asottile/pyupgrade: v3.0.0 → v3.1.0](https://github.com/asottile/pyupgrade/compare/v3.0.0...v3.1.0)
- [github.com/pre-commit/mirrors-prettier: v3.0.0-alpha.1 → v3.0.0-alpha.2](https://github.com/pre-commit/mirrors-prettier/compare/v3.0.0-alpha.1...v3.0.0-alpha.2)
- [github.com/codespell-project/codespell: v2.2.1 → v2.2.2](https://github.com/codespell-project/codespell/compare/v2.2.1...v2.2.2)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2022-10-19 09:08:02 +09:00
.circleci Correctly specify files to be packed in a npm package (#3168) 2022-10-12 13:54:12 +09:00
.github Don't fail if codecov fails (#3188) 2022-10-18 17:22:41 +02:00
benchmark Use matplotlib backends from matplotlib-pyodide (#3061) 2022-09-09 13:39:26 +02:00
cpython Add argument handling and _run_main function (#3021) 2022-08-30 08:49:06 -07:00
docs PKG add wordcloud (#3173) 2022-10-12 08:28:29 +09:00
emsdk BLD simplify building CMake based packages (#3128) 2022-09-22 10:42:26 +09:00
packages Bump zlib version to 1.2.13 (#3185) 2022-10-14 16:48:30 +09:00
pyodide-build BLD Retry when package download fails (#3157) 2022-10-05 14:23:13 +09:00
src MAINT Fix noisy test results in blns test (#3177) 2022-10-14 09:55:41 +09:00
tools Correctly specify files to be packed in a npm package (#3168) 2022-10-12 13:54:12 +09:00
.clang-format chore: update pre-commit hooks (#2209) 2022-02-23 23:58:11 -05:00
.codecov.yml Add codecov configuration (#3067) 2022-09-05 14:30:27 +09: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
.flake8 Use pyodide-cli entrypoint for out-of-tree CLI (#3140) 2022-09-24 18:34:36 -07:00
.gitignore MAINT Update gitignore for tools/symlinks (#2657) 2022-06-01 13:17:13 -07:00
.pre-commit-config.yaml [pre-commit.ci] pre-commit autoupdate (#3190) 2022-10-19 09:08:02 +09:00
.prettierignore style: improve pre-commit (#2177) 2022-02-19 09:06:25 +01:00
.readthedocs.yml fix: better mypy coverage (#2339) 2022-04-01 21:58:54 +02:00
CODE-OF-CONDUCT.md MAINT Apply prettier to everything by default (#2095) 2022-01-10 13:47:59 -08:00
Dockerfile Add sqlite3 binary to the docker image (#2807) 2022-06-30 13:22:03 +09:00
Dockerfile-prebuilt Rename 'build' directory to 'dist' (#2387) 2022-04-11 16:01:40 -07:00
LICENSE Initial commit 2018-02-23 14:21:29 -05:00
Makefile Add debug build option for js package (#3129) 2022-09-21 14:20:08 +09:00
Makefile.envs BLD simplify building CMake based packages (#3128) 2022-09-22 10:42:26 +09:00
README.md DOCS Edits and updates (#2756) 2022-06-21 20:15:37 -07:00
conftest.py TST Run package tests in Safari (#3095) 2022-09-14 09:13:53 +09:00
lgtm.yml Apply lints suggested by lgtm.com (#1398) 2021-03-31 21:11:41 +02:00
pyodide_env.sh chore: more pre-commit checking (#2257) 2022-03-07 21:51:20 -08:00
pyproject.toml Switch to meta.yaml parsing with pydantic (#3079) 2022-09-11 09:20:56 +02:00
repository-structure.md chore: more pre-commit checking (#2257) 2022-03-07 21:51:20 -08:00
requirements.txt TST Benchmark package load time (#3030) 2022-08-30 09:50:59 +09:00
run_docker 0.21.0 (#2935) 2022-08-09 15:36:10 +02:00
setup.cfg MAINT Build test and distutils stdlib modules with pyodide-build (#2979) 2022-08-18 13:55:16 +09:00

README.md

NPM Latest Release PyPI Latest Release Build Status Documentation Status

Pyodide is a Python distribution for the browser and Node.js based on WebAssembly.

What is Pyodide?

Pyodide is a port of CPython to WebAssembly/Emscripten.

Pyodide makes it possible to install and run Python packages in the browser with micropip. Any pure Python package with a wheel available on PyPi is supported. Many packages with C extensions have also been ported for use with Pyodide. These include many general-purpose packages such as regex, PyYAML, lxml and scientific Python packages including NumPy, pandas, SciPy, Matplotlib, and scikit-learn.

Pyodide comes with a robust Javascript ⟺ Python foreign function interface so that you can freely mix these two languages in your code with minimal friction. This includes full support for error handling, async/await, and much more.

When used inside a browser, Python has full access to the Web APIs.

Try Pyodide (no installation needed)

Try Pyodide in a REPL directly in your browser. For further information, see the documentation.

Getting Started

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

  • Use a hosted distribution of Pyodide: see the Getting Started documentation.
  • Download a version of Pyodide from the releases page and serve it 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.

History

Pyodide was created in 2018 by Michael Droettboom at Mozilla as part of the Iodide project. Iodide is an experimental web-based notebook environment for literate scientific computing and communication.

Iodide is no longer maintained. If you want to use Pyodide in an interactive client-side notebook, see Pyodide notebook environments.

Contributing

Please view the contributing guide for tips on filing issues, making changes, and submitting pull requests. Pyodide is an independent and community-driven open-source project. The decision-making process is outlined in the Project governance.

Communication

License

Pyodide uses the Mozilla Public License Version 2.0.