Skip to main content

Processing for CPython

Project description

https://img.shields.io/pypi/dm/py5?label=py5%20PyPI%20downloads https://mybinder.org/badge_logo.svg

py5 is a new version of Processing for Python 3.8+. It makes the Processing Java libraries available to the CPython interpreter using JPype. It can do just about everything Processing can do, except with Python instead of Java code.

The goal of py5 is to create a new version of Processing that is integrated into the Python ecosystem. Built into the library are thoughtful choices about how to best get py5 to work with other popular Python libraries such as numpy or Pillow.

Here is a simple example of a working py5 Sketch:

import py5


def setup():
    py5.size(200, 200)
    py5.rect_mode(py5.CENTER)


def draw():
    py5.square(py5.mouse_x, py5.mouse_y, 10)


py5.run_sketch()

If you have Java 11 installed on your computer, you can install py5 using pip:

pip install py5

Detailed installation instructions are available on the documentation website. There are some Special Notes for Mac Users that you should read if you use OSX.

There are currently four basic ways to use py5. They are:

  • module mode, as shown above

  • class mode: create a Python class inherited from py5.Sketch, and support multiple Sketches running at the same time.

  • imported mode: simplified code that omits the py5. prefix. This mode is supported by the py5 Jupyter notebook kernel and the run_sketch command line utility.

  • static mode: functionless code to create static images. This mode is supported by the py5bot Jupyter notebook kernel and the %%py5bot IPython magic.

The py5 library is created by the meta-programming project py5generator. Therefore, the py5 code should not be changed manually. Any issues, etc, should be directed to the py5generator repository.

The py5 documentation website provides basic tutorials and reference documentation. The website is very much a work in progress. The reference documentation is solid but the how-to’s and tutorials need a lot of work. See the py5examples repository for some working examples.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py5-0.5a1.tar.gz (11.5 MB view hashes)

Uploaded Source

Built Distribution

py5-0.5a1-py3-none-any.whl (11.5 MB view hashes)

Uploaded Python 3

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