GitXplorerGitXplorer
b

pyp5js

public
204 stars
37 forks
23 issues

Commits

List of commits on branch develop.
Verified
87ebb8e48ebabfd4e0281693fffa6ba9fb61d19e

Merge pull request #223 from berinhard/feature/display-version

bberinhard committed 2 years ago
Unverified
9c9e4739a9ea862b5f252c623ba901f594760bf7

Update changelog

bberinhard committed 2 years ago
Verified
482318605657ceae20416d6695ca5147df2547ee

Merge pull request #221 from berinhard/dependabot/pip/wheel-0.38.1

bberinhard committed 2 years ago
Unverified
6cb75cf32c8737617b611d359cf3d79cf4807592

Add --version flag to pyp5js CLI interface

bberinhard committed 2 years ago
Verified
19343f84e797a6887a1c0e414d7e5954ba546924

Bump wheel from 0.37.1 to 0.38.1

ddependabot[bot] committed 2 years ago
Unverified
b50f8ac34183cafc512511d953988e8370237a6f

Merge tag '0.7.3' into develop

bberinhard committed 2 years ago

README

The README file for this repository.

pyp5js: drawing with Python 3

PyPI version Continuous Integration Gitpod ready-to-code

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