├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitpod.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── Makefile.bat ├── README.md ├── VERSION ├── bin └── check_license.sh ├── dev-requirements.txt ├── docs ├── examples │ ├── index.md │ ├── pyodide │ │ ├── bouncing │ │ │ ├── bouncing.py │ │ │ ├── bouncingFPS.py │ │ │ ├── index.html │ │ │ ├── odkaz.txt │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ ├── breakout │ │ │ ├── breakout-kb.py │ │ │ ├── breakout-ms.py │ │ │ ├── breakout.py │ │ │ ├── index.html │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ ├── flappybird │ │ │ ├── flappybird.py │ │ │ ├── images │ │ │ │ ├── background.png │ │ │ │ ├── bird1.png │ │ │ │ ├── bird2.png │ │ │ │ ├── birddead.png │ │ │ │ ├── bottom.png │ │ │ │ └── top.png │ │ │ ├── index.html │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ ├── index.html.template │ │ ├── memory │ │ │ ├── LICENCE │ │ │ ├── README.md │ │ │ ├── images │ │ │ │ ├── card_back.png │ │ │ │ ├── checkmark-old.png │ │ │ │ ├── checkmark.png │ │ │ │ ├── im1.png │ │ │ │ ├── im2.png │ │ │ │ ├── im3.png │ │ │ │ ├── im4.png │ │ │ │ ├── im5.png │ │ │ │ ├── im6.png │ │ │ │ └── steve.png │ │ │ ├── index.html │ │ │ ├── memory.py │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ ├── mines │ │ │ ├── images │ │ │ ├── images30 │ │ │ │ ├── blank.png │ │ │ │ ├── cover.png │ │ │ │ ├── eight.png │ │ │ │ ├── five.png │ │ │ │ ├── flag.png │ │ │ │ ├── four.png │ │ │ │ ├── mine.png │ │ │ │ ├── one.png │ │ │ │ ├── red.png │ │ │ │ ├── seven.png │ │ │ │ ├── six.png │ │ │ │ ├── three.png │ │ │ │ └── two.png │ │ │ ├── images60 │ │ │ │ ├── blank.png │ │ │ │ ├── cover.png │ │ │ │ ├── eight.png │ │ │ │ ├── five.png │ │ │ │ ├── flag.png │ │ │ │ ├── four.png │ │ │ │ ├── mine.png │ │ │ │ ├── one.png │ │ │ │ ├── red.png │ │ │ │ ├── seven.png │ │ │ │ ├── six.png │ │ │ │ ├── three.png │ │ │ │ └── two.png │ │ │ ├── index.html │ │ │ ├── mines.py │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ ├── pong │ │ │ ├── index.html │ │ │ ├── pong.py │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ ├── samegame │ │ │ ├── index.html │ │ │ ├── samegame.py │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ ├── sketch_001 │ │ │ ├── index.html │ │ │ ├── sketch_001.py │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ ├── sketch_002 │ │ │ ├── index.html │ │ │ ├── sketch_002.py │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ ├── sketch_003 │ │ │ ├── index.html │ │ │ ├── sketch_003.py │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ ├── sketch_004 │ │ │ ├── index.html │ │ │ ├── sketch_004.py │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ ├── sketch_005 │ │ │ ├── index.html │ │ │ ├── sketch_005.py │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ ├── sketch_006 │ │ │ ├── index.html │ │ │ ├── sketch_006.py │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ ├── sketch_007 │ │ │ ├── index.html │ │ │ ├── sketch_007.py │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ ├── sketch_008 │ │ │ ├── index.html │ │ │ ├── sketch_008.py │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ ├── sketch_009 │ │ │ ├── alien.png │ │ │ ├── index.html │ │ │ ├── rainbow.png │ │ │ ├── sketch_009.py │ │ │ ├── smile.png │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ ├── sketch_010 │ │ │ ├── index.html │ │ │ ├── sketch_010.py │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ ├── sketch_011 │ │ │ ├── index.html │ │ │ ├── sketch_011.py │ │ │ ├── static │ │ │ │ └── p5.js │ │ │ └── target │ │ │ │ └── target_sketch.js │ │ └── sketch_012 │ │ │ ├── index.html │ │ │ ├── sketch_012.py │ │ │ ├── static │ │ │ └── p5.js │ │ │ └── target │ │ │ └── target_sketch.js │ ├── sketch_000 │ │ ├── index.html │ │ ├── sketch_000.py │ │ ├── static │ │ │ └── p5.js │ │ └── target │ │ │ ├── org.transcrypt.__runtime__.js │ │ │ ├── org.transcrypt.__runtime__.py │ │ │ ├── pyp5js.js │ │ │ ├── pyp5js.py │ │ │ ├── pyp5js.python_functions.js │ │ │ ├── pyp5js.python_functions.py │ │ │ ├── sketch_000.js │ │ │ ├── sketch_000.py │ │ │ ├── target_sketch.js │ │ │ ├── target_sketch.project │ │ │ └── target_sketch.py │ └── transcrypt │ │ ├── index.html.template │ │ ├── sketch_001 │ │ ├── index.html │ │ ├── sketch_001.py │ │ ├── static │ │ │ └── p5.js │ │ └── target │ │ │ ├── org.transcrypt.__runtime__.js │ │ │ ├── org.transcrypt.__runtime__.py │ │ │ ├── pyp5js.js │ │ │ ├── pyp5js.py │ │ │ ├── python_functions.js │ │ │ ├── python_functions.py │ │ │ ├── target_sketch.js │ │ │ ├── target_sketch.project │ │ │ └── target_sketch.py │ │ ├── sketch_002 │ │ ├── index.html │ │ ├── sketch_002.py │ │ ├── static │ │ │ └── p5.js │ │ └── target │ │ │ ├── org.transcrypt.__runtime__.js │ │ │ ├── org.transcrypt.__runtime__.py │ │ │ ├── pyp5js.js │ │ │ ├── pyp5js.py │ │ │ ├── python_functions.js │ │ │ ├── python_functions.py │ │ │ ├── target_sketch.js │ │ │ ├── target_sketch.project │ │ │ └── target_sketch.py │ │ ├── sketch_003 │ │ ├── index.html │ │ ├── sketch_003.py │ │ ├── static │ │ │ └── p5.js │ │ └── target │ │ │ ├── org.transcrypt.__runtime__.js │ │ │ ├── org.transcrypt.__runtime__.py │ │ │ ├── pyp5js.js │ │ │ ├── pyp5js.py │ │ │ ├── python_functions.js │ │ │ ├── python_functions.py │ │ │ ├── target_sketch.js │ │ │ ├── target_sketch.project │ │ │ └── target_sketch.py │ │ ├── sketch_004 │ │ ├── index.html │ │ ├── sketch_004.py │ │ ├── static │ │ │ └── p5.js │ │ └── target │ │ │ ├── org.transcrypt.__runtime__.js │ │ │ ├── org.transcrypt.__runtime__.py │ │ │ ├── pyp5js.js │ │ │ ├── pyp5js.py │ │ │ ├── python_functions.js │ │ │ ├── python_functions.py │ │ │ ├── target_sketch.js │ │ │ ├── target_sketch.project │ │ │ └── target_sketch.py │ │ ├── sketch_005 │ │ ├── index.html │ │ ├── sketch_005.py │ │ ├── static │ │ │ └── p5.js │ │ └── target │ │ │ ├── org.transcrypt.__runtime__.js │ │ │ ├── org.transcrypt.__runtime__.py │ │ │ ├── pyp5js.js │ │ │ ├── pyp5js.py │ │ │ ├── python_functions.js │ │ │ ├── python_functions.py │ │ │ ├── target_sketch.js │ │ │ ├── target_sketch.project │ │ │ └── target_sketch.py │ │ ├── sketch_006 │ │ ├── index.html │ │ ├── sketch_006.py │ │ ├── static │ │ │ └── p5.js │ │ └── target │ │ │ ├── org.transcrypt.__runtime__.js │ │ │ ├── org.transcrypt.__runtime__.py │ │ │ ├── pyp5js.js │ │ │ ├── pyp5js.py │ │ │ ├── python_functions.js │ │ │ ├── python_functions.py │ │ │ ├── target_sketch.js │ │ │ ├── target_sketch.project │ │ │ └── target_sketch.py │ │ ├── sketch_007 │ │ ├── index.html │ │ ├── sketch_007.py │ │ ├── static │ │ │ └── p5.js │ │ └── target │ │ │ ├── org.transcrypt.__runtime__.js │ │ │ ├── org.transcrypt.__runtime__.py │ │ │ ├── pyp5js.js │ │ │ ├── pyp5js.py │ │ │ ├── python_functions.js │ │ │ ├── python_functions.py │ │ │ ├── target_sketch.js │ │ │ ├── target_sketch.project │ │ │ └── target_sketch.py │ │ ├── sketch_008 │ │ ├── index.html │ │ ├── sketch_008.py │ │ ├── static │ │ │ └── p5.js │ │ └── target │ │ │ ├── org.transcrypt.__runtime__.js │ │ │ ├── org.transcrypt.__runtime__.py │ │ │ ├── pyp5js.js │ │ │ ├── pyp5js.py │ │ │ ├── python_functions.js │ │ │ ├── python_functions.py │ │ │ ├── target_sketch.js │ │ │ ├── target_sketch.project │ │ │ └── target_sketch.py │ │ ├── sketch_009 │ │ ├── alien.png │ │ ├── index.html │ │ ├── rainbow.png │ │ ├── sketch_009.py │ │ ├── smile.png │ │ ├── static │ │ │ └── p5.js │ │ └── target │ │ │ ├── math.js │ │ │ ├── math.py │ │ │ ├── org.transcrypt.__runtime__.js │ │ │ ├── org.transcrypt.__runtime__.py │ │ │ ├── pyp5js.js │ │ │ ├── pyp5js.py │ │ │ ├── python_functions.js │ │ │ ├── python_functions.py │ │ │ ├── random.js │ │ │ ├── random.py │ │ │ ├── target_sketch.js │ │ │ ├── target_sketch.project │ │ │ └── target_sketch.py │ │ └── sketch_010 │ │ ├── index.html │ │ ├── sketch_010.py │ │ ├── static │ │ └── p5.js │ │ └── target │ │ ├── org.transcrypt.__runtime__.js │ │ ├── org.transcrypt.__runtime__.py │ │ ├── pyp5js.js │ │ ├── pyp5js.py │ │ ├── python_functions.js │ │ ├── python_functions.py │ │ ├── target_sketch.js │ │ ├── target_sketch.project │ │ └── target_sketch.py ├── index.md └── pyodide │ ├── afterBody.js │ ├── index.html │ ├── index.html.template │ ├── pyodide.py │ ├── share.js │ ├── styles.css │ └── target │ └── target_sketch.js ├── pyp5js ├── __init__.py ├── cli.py ├── commands.py ├── compiler.py ├── config │ ├── __init__.py │ ├── fs.py │ └── sketch.py ├── exceptions.py ├── http_local │ ├── __init__.py │ ├── static │ │ ├── js │ │ │ ├── ace │ │ │ │ ├── ace.js │ │ │ │ ├── ext-beautify.js │ │ │ │ ├── ext-code_lens.js │ │ │ │ ├── ext-elastic_tabstops_lite.js │ │ │ │ ├── ext-emmet.js │ │ │ │ ├── ext-error_marker.js │ │ │ │ ├── ext-keybinding_menu.js │ │ │ │ ├── ext-language_tools.js │ │ │ │ ├── ext-linking.js │ │ │ │ ├── ext-modelist.js │ │ │ │ ├── ext-options.js │ │ │ │ ├── ext-prompt.js │ │ │ │ ├── ext-rtl.js │ │ │ │ ├── ext-searchbox.js │ │ │ │ ├── ext-settings_menu.js │ │ │ │ ├── ext-spellcheck.js │ │ │ │ ├── ext-split.js │ │ │ │ ├── ext-static_highlight.js │ │ │ │ ├── ext-statusbar.js │ │ │ │ ├── ext-textarea.js │ │ │ │ ├── ext-themelist.js │ │ │ │ ├── ext-whitespace.js │ │ │ │ ├── keybinding-emacs.js │ │ │ │ ├── keybinding-sublime.js │ │ │ │ ├── keybinding-vim.js │ │ │ │ ├── keybinding-vscode.js │ │ │ │ ├── mode-python.js │ │ │ │ ├── theme-ambiance.js │ │ │ │ ├── theme-chaos.js │ │ │ │ ├── theme-chrome.js │ │ │ │ ├── theme-clouds.js │ │ │ │ ├── theme-clouds_midnight.js │ │ │ │ ├── theme-cobalt.js │ │ │ │ ├── theme-crimson_editor.js │ │ │ │ ├── theme-dawn.js │ │ │ │ ├── theme-dracula.js │ │ │ │ ├── theme-dreamweaver.js │ │ │ │ ├── theme-eclipse.js │ │ │ │ ├── theme-github.js │ │ │ │ ├── theme-gob.js │ │ │ │ ├── theme-gruvbox.js │ │ │ │ ├── theme-idle_fingers.js │ │ │ │ ├── theme-iplastic.js │ │ │ │ ├── theme-katzenmilch.js │ │ │ │ ├── theme-kr_theme.js │ │ │ │ ├── theme-kuroir.js │ │ │ │ ├── theme-merbivore.js │ │ │ │ ├── theme-merbivore_soft.js │ │ │ │ ├── theme-mono_industrial.js │ │ │ │ ├── theme-monokai.js │ │ │ │ ├── theme-nord_dark.js │ │ │ │ ├── theme-pastel_on_dark.js │ │ │ │ ├── theme-solarized_dark.js │ │ │ │ ├── theme-solarized_light.js │ │ │ │ ├── theme-sqlserver.js │ │ │ │ ├── theme-terminal.js │ │ │ │ ├── theme-textmate.js │ │ │ │ ├── theme-tomorrow.js │ │ │ │ ├── theme-tomorrow_night.js │ │ │ │ ├── theme-tomorrow_night_blue.js │ │ │ │ ├── theme-tomorrow_night_bright.js │ │ │ │ ├── theme-tomorrow_night_eighties.js │ │ │ │ ├── theme-twilight.js │ │ │ │ ├── theme-vibrant_ink.js │ │ │ │ ├── theme-xcode.js │ │ │ │ ├── worker-coffee.js │ │ │ │ ├── worker-css.js │ │ │ │ ├── worker-html.js │ │ │ │ ├── worker-javascript.js │ │ │ │ ├── worker-json.js │ │ │ │ ├── worker-lua.js │ │ │ │ ├── worker-php.js │ │ │ │ ├── worker-xml.js │ │ │ │ └── worker-xquery.js │ │ │ ├── p5 │ │ │ │ ├── addons │ │ │ │ │ ├── p5.sound.js │ │ │ │ │ └── p5.sound.min.js │ │ │ │ ├── p5.js │ │ │ │ └── p5.min.js │ │ │ └── pyodide │ │ │ │ ├── packages.json │ │ │ │ ├── pyodide.asm.data │ │ │ │ ├── pyodide.asm.js │ │ │ │ ├── pyodide.asm.wasm │ │ │ │ ├── pyodide.js.map │ │ │ │ └── pyodide_v0.18.1.js │ │ ├── p5_reference.yml │ │ └── styles │ │ │ ├── basscss-7.1.1.min.css │ │ │ └── custom.css │ ├── templates │ │ ├── base.html │ │ ├── index.html │ │ ├── new_sketch_form.html │ │ ├── new_sketch_success.html │ │ └── view_sketch.html │ └── web_app.py ├── monitor.py ├── sketch.py ├── templates │ ├── pyodide │ │ ├── base_sketch.py.template │ │ ├── index.html │ │ └── target_sketch.js.template │ └── transcrypt │ │ ├── base_sketch.py.template │ │ ├── index.html │ │ ├── pyp5js.py │ │ ├── python_functions.py │ │ └── target_sketch.py.template ├── templates_renderers.py └── tests │ ├── __init__.py │ ├── fixtures.py │ ├── test_commands.py │ ├── test_compiler.py │ ├── test_config │ ├── __init__.py │ ├── test_fs.py │ └── test_sketch.py │ ├── test_http │ ├── assets │ │ └── alien.png │ └── test_web_app.py │ ├── test_monitor.py │ ├── test_pyp5js.py │ ├── test_sketch.py │ └── test_templates_renderers.py ├── pytest.ini ├── requirements.txt └── setup.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/Makefile.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.7.3 2 | -------------------------------------------------------------------------------- /bin/check_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/bin/check_license.sh -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /docs/examples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/index.md -------------------------------------------------------------------------------- /docs/examples/pyodide/bouncing/bouncing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/bouncing/bouncing.py -------------------------------------------------------------------------------- /docs/examples/pyodide/bouncing/bouncingFPS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/bouncing/bouncingFPS.py -------------------------------------------------------------------------------- /docs/examples/pyodide/bouncing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/bouncing/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/bouncing/odkaz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/bouncing/odkaz.txt -------------------------------------------------------------------------------- /docs/examples/pyodide/bouncing/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/bouncing/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/bouncing/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/bouncing/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/breakout/breakout-kb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/breakout/breakout-kb.py -------------------------------------------------------------------------------- /docs/examples/pyodide/breakout/breakout-ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/breakout/breakout-ms.py -------------------------------------------------------------------------------- /docs/examples/pyodide/breakout/breakout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/breakout/breakout.py -------------------------------------------------------------------------------- /docs/examples/pyodide/breakout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/breakout/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/breakout/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/breakout/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/breakout/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/breakout/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/flappybird/flappybird.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/flappybird/flappybird.py -------------------------------------------------------------------------------- /docs/examples/pyodide/flappybird/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/flappybird/images/background.png -------------------------------------------------------------------------------- /docs/examples/pyodide/flappybird/images/bird1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/flappybird/images/bird1.png -------------------------------------------------------------------------------- /docs/examples/pyodide/flappybird/images/bird2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/flappybird/images/bird2.png -------------------------------------------------------------------------------- /docs/examples/pyodide/flappybird/images/birddead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/flappybird/images/birddead.png -------------------------------------------------------------------------------- /docs/examples/pyodide/flappybird/images/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/flappybird/images/bottom.png -------------------------------------------------------------------------------- /docs/examples/pyodide/flappybird/images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/flappybird/images/top.png -------------------------------------------------------------------------------- /docs/examples/pyodide/flappybird/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/flappybird/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/flappybird/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/flappybird/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/flappybird/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/flappybird/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/index.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/index.html.template -------------------------------------------------------------------------------- /docs/examples/pyodide/memory/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/memory/LICENCE -------------------------------------------------------------------------------- /docs/examples/pyodide/memory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/memory/README.md -------------------------------------------------------------------------------- /docs/examples/pyodide/memory/images/card_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/memory/images/card_back.png -------------------------------------------------------------------------------- /docs/examples/pyodide/memory/images/checkmark-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/memory/images/checkmark-old.png -------------------------------------------------------------------------------- /docs/examples/pyodide/memory/images/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/memory/images/checkmark.png -------------------------------------------------------------------------------- /docs/examples/pyodide/memory/images/im1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/memory/images/im1.png -------------------------------------------------------------------------------- /docs/examples/pyodide/memory/images/im2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/memory/images/im2.png -------------------------------------------------------------------------------- /docs/examples/pyodide/memory/images/im3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/memory/images/im3.png -------------------------------------------------------------------------------- /docs/examples/pyodide/memory/images/im4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/memory/images/im4.png -------------------------------------------------------------------------------- /docs/examples/pyodide/memory/images/im5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/memory/images/im5.png -------------------------------------------------------------------------------- /docs/examples/pyodide/memory/images/im6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/memory/images/im6.png -------------------------------------------------------------------------------- /docs/examples/pyodide/memory/images/steve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/memory/images/steve.png -------------------------------------------------------------------------------- /docs/examples/pyodide/memory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/memory/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/memory/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/memory/memory.py -------------------------------------------------------------------------------- /docs/examples/pyodide/memory/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/memory/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/memory/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/memory/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images: -------------------------------------------------------------------------------- 1 | images60 -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images30/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images30/blank.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images30/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images30/cover.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images30/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images30/eight.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images30/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images30/five.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images30/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images30/flag.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images30/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images30/four.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images30/mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images30/mine.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images30/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images30/one.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images30/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images30/red.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images30/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images30/seven.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images30/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images30/six.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images30/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images30/three.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images30/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images30/two.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images60/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images60/blank.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images60/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images60/cover.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images60/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images60/eight.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images60/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images60/five.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images60/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images60/flag.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images60/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images60/four.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images60/mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images60/mine.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images60/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images60/one.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images60/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images60/red.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images60/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images60/seven.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images60/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images60/six.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images60/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images60/three.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/images60/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/images60/two.png -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/mines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/mines.py -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/mines/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/mines/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/pong/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/pong/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/pong/pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/pong/pong.py -------------------------------------------------------------------------------- /docs/examples/pyodide/pong/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/pong/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/pong/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/pong/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/samegame/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/samegame/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/samegame/samegame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/samegame/samegame.py -------------------------------------------------------------------------------- /docs/examples/pyodide/samegame/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/samegame/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/samegame/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/samegame/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_001/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_001/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_001/sketch_001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_001/sketch_001.py -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_001/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_001/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_001/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_001/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_002/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_002/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_002/sketch_002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_002/sketch_002.py -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_002/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_002/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_002/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_002/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_003/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_003/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_003/sketch_003.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_003/sketch_003.py -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_003/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_003/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_003/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_003/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_004/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_004/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_004/sketch_004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_004/sketch_004.py -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_004/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_004/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_004/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_004/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_005/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_005/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_005/sketch_005.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_005/sketch_005.py -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_005/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_005/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_005/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_005/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_006/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_006/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_006/sketch_006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_006/sketch_006.py -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_006/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_006/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_006/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_006/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_007/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_007/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_007/sketch_007.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_007/sketch_007.py -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_007/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_007/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_007/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_007/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_008/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_008/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_008/sketch_008.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_008/sketch_008.py -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_008/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_008/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_008/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_008/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_009/alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_009/alien.png -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_009/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_009/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_009/rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_009/rainbow.png -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_009/sketch_009.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_009/sketch_009.py -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_009/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_009/smile.png -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_009/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_009/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_009/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_009/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_010/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_010/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_010/sketch_010.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_010/sketch_010.py -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_010/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_010/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_010/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_010/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_011/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_011/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_011/sketch_011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_011/sketch_011.py -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_011/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_011/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_011/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_011/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_012/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_012/index.html -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_012/sketch_012.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_012/sketch_012.py -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_012/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_012/static/p5.js -------------------------------------------------------------------------------- /docs/examples/pyodide/sketch_012/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/pyodide/sketch_012/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/sketch_000/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/sketch_000/index.html -------------------------------------------------------------------------------- /docs/examples/sketch_000/sketch_000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/sketch_000/sketch_000.py -------------------------------------------------------------------------------- /docs/examples/sketch_000/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/sketch_000/static/p5.js -------------------------------------------------------------------------------- /docs/examples/sketch_000/target/org.transcrypt.__runtime__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/sketch_000/target/org.transcrypt.__runtime__.js -------------------------------------------------------------------------------- /docs/examples/sketch_000/target/org.transcrypt.__runtime__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/sketch_000/target/org.transcrypt.__runtime__.py -------------------------------------------------------------------------------- /docs/examples/sketch_000/target/pyp5js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/sketch_000/target/pyp5js.js -------------------------------------------------------------------------------- /docs/examples/sketch_000/target/pyp5js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/sketch_000/target/pyp5js.py -------------------------------------------------------------------------------- /docs/examples/sketch_000/target/pyp5js.python_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/sketch_000/target/pyp5js.python_functions.js -------------------------------------------------------------------------------- /docs/examples/sketch_000/target/pyp5js.python_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/sketch_000/target/pyp5js.python_functions.py -------------------------------------------------------------------------------- /docs/examples/sketch_000/target/sketch_000.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/sketch_000/target/sketch_000.js -------------------------------------------------------------------------------- /docs/examples/sketch_000/target/sketch_000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/sketch_000/target/sketch_000.py -------------------------------------------------------------------------------- /docs/examples/sketch_000/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/sketch_000/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/sketch_000/target/target_sketch.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/sketch_000/target/target_sketch.project -------------------------------------------------------------------------------- /docs/examples/sketch_000/target/target_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/sketch_000/target/target_sketch.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/index.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/index.html.template -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_001/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_001/index.html -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_001/sketch_001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_001/sketch_001.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_001/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_001/static/p5.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_001/target/org.transcrypt.__runtime__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_001/target/org.transcrypt.__runtime__.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_001/target/org.transcrypt.__runtime__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_001/target/org.transcrypt.__runtime__.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_001/target/pyp5js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_001/target/pyp5js.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_001/target/pyp5js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_001/target/pyp5js.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_001/target/python_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_001/target/python_functions.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_001/target/python_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_001/target/python_functions.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_001/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_001/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_001/target/target_sketch.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_001/target/target_sketch.project -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_001/target/target_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_001/target/target_sketch.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_002/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_002/index.html -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_002/sketch_002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_002/sketch_002.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_002/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_002/static/p5.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_002/target/org.transcrypt.__runtime__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_002/target/org.transcrypt.__runtime__.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_002/target/org.transcrypt.__runtime__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_002/target/org.transcrypt.__runtime__.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_002/target/pyp5js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_002/target/pyp5js.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_002/target/pyp5js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_002/target/pyp5js.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_002/target/python_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_002/target/python_functions.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_002/target/python_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_002/target/python_functions.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_002/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_002/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_002/target/target_sketch.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_002/target/target_sketch.project -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_002/target/target_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_002/target/target_sketch.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_003/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_003/index.html -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_003/sketch_003.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_003/sketch_003.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_003/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_003/static/p5.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_003/target/org.transcrypt.__runtime__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_003/target/org.transcrypt.__runtime__.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_003/target/org.transcrypt.__runtime__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_003/target/org.transcrypt.__runtime__.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_003/target/pyp5js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_003/target/pyp5js.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_003/target/pyp5js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_003/target/pyp5js.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_003/target/python_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_003/target/python_functions.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_003/target/python_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_003/target/python_functions.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_003/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_003/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_003/target/target_sketch.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_003/target/target_sketch.project -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_003/target/target_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_003/target/target_sketch.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_004/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_004/index.html -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_004/sketch_004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_004/sketch_004.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_004/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_004/static/p5.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_004/target/org.transcrypt.__runtime__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_004/target/org.transcrypt.__runtime__.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_004/target/org.transcrypt.__runtime__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_004/target/org.transcrypt.__runtime__.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_004/target/pyp5js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_004/target/pyp5js.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_004/target/pyp5js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_004/target/pyp5js.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_004/target/python_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_004/target/python_functions.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_004/target/python_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_004/target/python_functions.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_004/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_004/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_004/target/target_sketch.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_004/target/target_sketch.project -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_004/target/target_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_004/target/target_sketch.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_005/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_005/index.html -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_005/sketch_005.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_005/sketch_005.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_005/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_005/static/p5.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_005/target/org.transcrypt.__runtime__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_005/target/org.transcrypt.__runtime__.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_005/target/org.transcrypt.__runtime__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_005/target/org.transcrypt.__runtime__.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_005/target/pyp5js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_005/target/pyp5js.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_005/target/pyp5js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_005/target/pyp5js.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_005/target/python_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_005/target/python_functions.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_005/target/python_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_005/target/python_functions.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_005/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_005/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_005/target/target_sketch.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_005/target/target_sketch.project -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_005/target/target_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_005/target/target_sketch.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_006/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_006/index.html -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_006/sketch_006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_006/sketch_006.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_006/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_006/static/p5.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_006/target/org.transcrypt.__runtime__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_006/target/org.transcrypt.__runtime__.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_006/target/org.transcrypt.__runtime__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_006/target/org.transcrypt.__runtime__.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_006/target/pyp5js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_006/target/pyp5js.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_006/target/pyp5js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_006/target/pyp5js.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_006/target/python_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_006/target/python_functions.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_006/target/python_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_006/target/python_functions.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_006/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_006/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_006/target/target_sketch.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_006/target/target_sketch.project -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_006/target/target_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_006/target/target_sketch.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_007/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_007/index.html -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_007/sketch_007.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_007/sketch_007.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_007/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_007/static/p5.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_007/target/org.transcrypt.__runtime__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_007/target/org.transcrypt.__runtime__.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_007/target/org.transcrypt.__runtime__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_007/target/org.transcrypt.__runtime__.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_007/target/pyp5js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_007/target/pyp5js.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_007/target/pyp5js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_007/target/pyp5js.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_007/target/python_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_007/target/python_functions.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_007/target/python_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_007/target/python_functions.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_007/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_007/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_007/target/target_sketch.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_007/target/target_sketch.project -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_007/target/target_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_007/target/target_sketch.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_008/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_008/index.html -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_008/sketch_008.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_008/sketch_008.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_008/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_008/static/p5.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_008/target/org.transcrypt.__runtime__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_008/target/org.transcrypt.__runtime__.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_008/target/org.transcrypt.__runtime__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_008/target/org.transcrypt.__runtime__.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_008/target/pyp5js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_008/target/pyp5js.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_008/target/pyp5js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_008/target/pyp5js.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_008/target/python_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_008/target/python_functions.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_008/target/python_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_008/target/python_functions.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_008/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_008/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_008/target/target_sketch.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_008/target/target_sketch.project -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_008/target/target_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_008/target/target_sketch.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/alien.png -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/index.html -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/rainbow.png -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/sketch_009.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/sketch_009.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/smile.png -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/static/p5.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/target/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/target/math.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/target/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/target/math.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/target/org.transcrypt.__runtime__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/target/org.transcrypt.__runtime__.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/target/org.transcrypt.__runtime__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/target/org.transcrypt.__runtime__.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/target/pyp5js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/target/pyp5js.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/target/pyp5js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/target/pyp5js.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/target/python_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/target/python_functions.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/target/python_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/target/python_functions.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/target/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/target/random.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/target/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/target/random.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/target/target_sketch.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/target/target_sketch.project -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_009/target/target_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_009/target/target_sketch.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_010/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_010/index.html -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_010/sketch_010.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_010/sketch_010.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_010/static/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_010/static/p5.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_010/target/org.transcrypt.__runtime__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_010/target/org.transcrypt.__runtime__.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_010/target/org.transcrypt.__runtime__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_010/target/org.transcrypt.__runtime__.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_010/target/pyp5js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_010/target/pyp5js.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_010/target/pyp5js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_010/target/pyp5js.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_010/target/python_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_010/target/python_functions.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_010/target/python_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_010/target/python_functions.py -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_010/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_010/target/target_sketch.js -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_010/target/target_sketch.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_010/target/target_sketch.project -------------------------------------------------------------------------------- /docs/examples/transcrypt/sketch_010/target/target_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/examples/transcrypt/sketch_010/target/target_sketch.py -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/pyodide/afterBody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/pyodide/afterBody.js -------------------------------------------------------------------------------- /docs/pyodide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/pyodide/index.html -------------------------------------------------------------------------------- /docs/pyodide/index.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/pyodide/index.html.template -------------------------------------------------------------------------------- /docs/pyodide/pyodide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/pyodide/pyodide.py -------------------------------------------------------------------------------- /docs/pyodide/share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/pyodide/share.js -------------------------------------------------------------------------------- /docs/pyodide/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/pyodide/styles.css -------------------------------------------------------------------------------- /docs/pyodide/target/target_sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/docs/pyodide/target/target_sketch.js -------------------------------------------------------------------------------- /pyp5js/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/__init__.py -------------------------------------------------------------------------------- /pyp5js/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/cli.py -------------------------------------------------------------------------------- /pyp5js/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/commands.py -------------------------------------------------------------------------------- /pyp5js/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/compiler.py -------------------------------------------------------------------------------- /pyp5js/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/config/__init__.py -------------------------------------------------------------------------------- /pyp5js/config/fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/config/fs.py -------------------------------------------------------------------------------- /pyp5js/config/sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/config/sketch.py -------------------------------------------------------------------------------- /pyp5js/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/exceptions.py -------------------------------------------------------------------------------- /pyp5js/http_local/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/__init__.py -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ace.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-beautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-beautify.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-code_lens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-code_lens.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-elastic_tabstops_lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-elastic_tabstops_lite.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-emmet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-emmet.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-error_marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-error_marker.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-keybinding_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-keybinding_menu.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-language_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-language_tools.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-linking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-linking.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-modelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-modelist.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-options.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-prompt.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-rtl.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-searchbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-searchbox.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-settings_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-settings_menu.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-spellcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-spellcheck.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-split.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-static_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-static_highlight.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-statusbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-statusbar.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-textarea.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-themelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-themelist.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/ext-whitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/ext-whitespace.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/keybinding-emacs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/keybinding-emacs.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/keybinding-sublime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/keybinding-sublime.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/keybinding-vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/keybinding-vim.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/keybinding-vscode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/keybinding-vscode.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/mode-python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/mode-python.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-ambiance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-ambiance.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-chaos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-chaos.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-chrome.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-clouds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-clouds.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-clouds_midnight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-clouds_midnight.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-cobalt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-cobalt.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-crimson_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-crimson_editor.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-dawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-dawn.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-dracula.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-dracula.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-dreamweaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-dreamweaver.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-eclipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-eclipse.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-github.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-gob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-gob.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-gruvbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-gruvbox.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-idle_fingers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-idle_fingers.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-iplastic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-iplastic.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-katzenmilch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-katzenmilch.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-kr_theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-kr_theme.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-kuroir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-kuroir.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-merbivore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-merbivore.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-merbivore_soft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-merbivore_soft.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-mono_industrial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-mono_industrial.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-monokai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-monokai.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-nord_dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-nord_dark.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-pastel_on_dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-pastel_on_dark.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-solarized_dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-solarized_dark.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-solarized_light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-solarized_light.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-sqlserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-sqlserver.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-terminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-terminal.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-textmate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-textmate.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-tomorrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-tomorrow.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-tomorrow_night.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-tomorrow_night.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-tomorrow_night_blue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-tomorrow_night_blue.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-tomorrow_night_bright.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-tomorrow_night_bright.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-tomorrow_night_eighties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-tomorrow_night_eighties.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-twilight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-twilight.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-vibrant_ink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-vibrant_ink.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/theme-xcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/theme-xcode.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/worker-coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/worker-coffee.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/worker-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/worker-css.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/worker-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/worker-html.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/worker-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/worker-javascript.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/worker-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/worker-json.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/worker-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/worker-lua.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/worker-php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/worker-php.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/worker-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/worker-xml.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/ace/worker-xquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/ace/worker-xquery.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/p5/addons/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/p5/addons/p5.sound.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/p5/addons/p5.sound.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/p5/addons/p5.sound.min.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/p5/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/p5/p5.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/p5/p5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/p5/p5.min.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/pyodide/packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/pyodide/packages.json -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/pyodide/pyodide.asm.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/pyodide/pyodide.asm.data -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/pyodide/pyodide.asm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/pyodide/pyodide.asm.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/pyodide/pyodide.asm.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/pyodide/pyodide.asm.wasm -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/pyodide/pyodide.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/pyodide/pyodide.js.map -------------------------------------------------------------------------------- /pyp5js/http_local/static/js/pyodide/pyodide_v0.18.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/js/pyodide/pyodide_v0.18.1.js -------------------------------------------------------------------------------- /pyp5js/http_local/static/p5_reference.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/p5_reference.yml -------------------------------------------------------------------------------- /pyp5js/http_local/static/styles/basscss-7.1.1.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/styles/basscss-7.1.1.min.css -------------------------------------------------------------------------------- /pyp5js/http_local/static/styles/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/static/styles/custom.css -------------------------------------------------------------------------------- /pyp5js/http_local/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/templates/base.html -------------------------------------------------------------------------------- /pyp5js/http_local/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/templates/index.html -------------------------------------------------------------------------------- /pyp5js/http_local/templates/new_sketch_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/templates/new_sketch_form.html -------------------------------------------------------------------------------- /pyp5js/http_local/templates/new_sketch_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/templates/new_sketch_success.html -------------------------------------------------------------------------------- /pyp5js/http_local/templates/view_sketch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/templates/view_sketch.html -------------------------------------------------------------------------------- /pyp5js/http_local/web_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/http_local/web_app.py -------------------------------------------------------------------------------- /pyp5js/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/monitor.py -------------------------------------------------------------------------------- /pyp5js/sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/sketch.py -------------------------------------------------------------------------------- /pyp5js/templates/pyodide/base_sketch.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/templates/pyodide/base_sketch.py.template -------------------------------------------------------------------------------- /pyp5js/templates/pyodide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/templates/pyodide/index.html -------------------------------------------------------------------------------- /pyp5js/templates/pyodide/target_sketch.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/templates/pyodide/target_sketch.js.template -------------------------------------------------------------------------------- /pyp5js/templates/transcrypt/base_sketch.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/templates/transcrypt/base_sketch.py.template -------------------------------------------------------------------------------- /pyp5js/templates/transcrypt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/templates/transcrypt/index.html -------------------------------------------------------------------------------- /pyp5js/templates/transcrypt/pyp5js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/templates/transcrypt/pyp5js.py -------------------------------------------------------------------------------- /pyp5js/templates/transcrypt/python_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/templates/transcrypt/python_functions.py -------------------------------------------------------------------------------- /pyp5js/templates/transcrypt/target_sketch.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/templates/transcrypt/target_sketch.py.template -------------------------------------------------------------------------------- /pyp5js/templates_renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/templates_renderers.py -------------------------------------------------------------------------------- /pyp5js/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/tests/__init__.py -------------------------------------------------------------------------------- /pyp5js/tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/tests/fixtures.py -------------------------------------------------------------------------------- /pyp5js/tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/tests/test_commands.py -------------------------------------------------------------------------------- /pyp5js/tests/test_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/tests/test_compiler.py -------------------------------------------------------------------------------- /pyp5js/tests/test_config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/tests/test_config/__init__.py -------------------------------------------------------------------------------- /pyp5js/tests/test_config/test_fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/tests/test_config/test_fs.py -------------------------------------------------------------------------------- /pyp5js/tests/test_config/test_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/tests/test_config/test_sketch.py -------------------------------------------------------------------------------- /pyp5js/tests/test_http/assets/alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/tests/test_http/assets/alien.png -------------------------------------------------------------------------------- /pyp5js/tests/test_http/test_web_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/tests/test_http/test_web_app.py -------------------------------------------------------------------------------- /pyp5js/tests/test_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/tests/test_monitor.py -------------------------------------------------------------------------------- /pyp5js/tests/test_pyp5js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/tests/test_pyp5js.py -------------------------------------------------------------------------------- /pyp5js/tests/test_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/tests/test_sketch.py -------------------------------------------------------------------------------- /pyp5js/tests/test_templates_renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pyp5js/tests/test_templates_renderers.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berinhard/pyp5js/HEAD/setup.py --------------------------------------------------------------------------------