pygame wasm

pygbag comes with an interactive Python-like REPL that can be used for debugging.

to open

To open the REPL, visit http://localhost:8000/#debug instead of just http://localhost:8000.

To get debugger at runtime, open the javascript console and run debug() by typing in debug() followed by pressing enter.

to use

The REPL is a Python REPL that has loaded the project. This means if your pygbag main file includes a main() function, calling type(main) will return <class 'function'> instead of a NameError.

It also implements a variety of shell-like commands, defined in the shell class, that are reminiscent of shell languages common on Linux systems. These can be used in the REPL. For example,

>>> cat main.py

will dump the binary contents of main.py into the REPL, if main.py exists in your pygbag project directory.

Other helpful commands are available. For example,rx takes a list of files and downloads them from the browser’s filesystem to a user’s filesystem. For example,

>>> rx main.py assets/image.png assets/otherimage.png

will try to download the given three files.

Python versus browser logging

print statements will write to this REPL instead of the browser’s console.

To write to the browser’s console instead, use platform.console.log. For example,

import sys, platform
if sys.platform == "emscripten":
    platform.console.log("logged message")

edit this page