Pyodide is a Python distribution for the browser and Node.js based on WebAssembly
Go to file
John Wason 810be8869f
Add Robot Raconteur package to Pyodide (without wasm-exceptions) (#2794)
This PR adds the Robot Raconteur Pyodide package, which is a modified version
of Robot Raconteur designed to run in the Pyodide environment, using WebSockets
for communication. See robotraconteur/robotraconteur for the full version of the
package. Robot Raconteur is used to communicate with robots and other automation
components, and has a large library of drivers and packages: robotraconteur/robotraconteur-directory.
It is used as the bases for PyRI, a robotics programming environment: 
https://github.com/pyri-project/pyri-core/blob/master/README.md. Using a bridge, this package can
also be used to communicate with ROS2 networks: robotraconteur-contrib/robotraconteur_ros2_bridge
2022-06-26 21:17:58 -07:00
.circleci Trigger pypi deploy from circleci (#2782) 2022-06-24 21:19:04 -07:00
.github Trigger pypi deploy from circleci (#2782) 2022-06-24 21:19:04 -07:00
benchmark TST Add Playwright for an auxiliary testing framework (#2091) 2022-05-31 08:17:47 +09:00
cpython Update libffi tag (#2772) 2022-06-23 12:05:40 -07:00
docs Move eval functions to pyodide.code submodule (#2787) 2022-06-25 21:20:22 -07:00
emsdk Add Robot Raconteur package to Pyodide (without wasm-exceptions) (#2794) 2022-06-26 21:17:58 -07:00
packages Add Robot Raconteur package to Pyodide (without wasm-exceptions) (#2794) 2022-06-26 21:17:58 -07:00
pyodide-build Add Python version to repodata (#2786) 2022-06-24 21:21:26 -07:00
pyodide-test-runner/pyodide_test_runner Move eval functions to pyodide.code submodule (#2787) 2022-06-25 21:20:22 -07:00
src Move eval functions to pyodide.code submodule (#2787) 2022-06-25 21:20:22 -07:00
tools Add continuous deployment to npm (#2776) 2022-06-23 22:51:43 -07:00
.clang-format chore: update pre-commit hooks (#2209) 2022-02-23 23:58:11 -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
.flake8 chore: enable the rest of flake8 & bugbear (#2216) 2022-02-27 12:39:53 -05: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 (#2751) 2022-06-22 11:14:45 -07: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 refactor: use cmake 3.22 from pip (#2489) 2022-05-04 14:22:50 -06: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 API Rename packages.json to repodata.json (#2749) 2022-06-20 14:46:11 -07:00
Makefile.envs Add Robot Raconteur package to Pyodide (without wasm-exceptions) (#2794) 2022-06-26 21:17:58 -07:00
README.md DOCS Edits and updates (#2756) 2022-06-21 20:15:37 -07:00
conftest.py TST Add Playwright for an auxiliary testing framework (#2091) 2022-05-31 08:17:47 +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 chore(types): fill out remaining partial types (#2612) 2022-05-25 20:31:04 -07:00
repository-structure.md chore: more pre-commit checking (#2257) 2022-03-07 21:51:20 -08:00
requirements.txt Simplify the version bump process (#2587) 2022-05-30 10:26:40 +09:00
run_docker Fix groupadd/useradd in `run_docker` so $HOME is set correctly (#2675) 2022-06-08 12:24:17 -07:00
setup.cfg TST Use short pytest tracebacks (#2700) 2022-06-12 11:41:14 -07: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.