Simple tool to allow to transcrypt Python code that uses P5.js
Project description
pyp5js: drawing with Python 3
Processing ideas and Python 3 together with P5.js in the browser.
Python 3 drawing in the web! Try it here!
Here's an example of a valid Python code using P5.js API:
def setup():
createCanvas(200, 200)
def draw():
background(200)
diameter = sin(frameCount / 60) * 50 + 50
fill('blue')
ellipse(100, 100, diameter, diameter)
Project setup
$ git clone git@github.com:YOUR_GITHUB_PROFILE/pyp5js.git
$ cd pyp5js
$ pip install -r dev-requirements.txt
$ python setup.py develop
$ make test
More references
Documentation
Examples
Installation
Quickstart
Internals details
Known issues and differences to the Processing.Py and P5.js ways of doing things
How can I contribute?
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
pyp5js-0.6.0.tar.gz
(809.1 kB
view hashes)
Built Distribution
pyp5js-0.6.0-py3-none-any.whl
(2.8 MB
view hashes)