A retro game engine for Python, designed for creating pixel-art games. Latest version: 2.9.5. Release cadence: irregular, major updates every few months.
pip install pyxelNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Minimal Pyxel app with a window, update loop, and quit on Q.
Rewrite to use new API: `pyxel.init()` instead of `pyxel.init(width, height, caption)`, `pyxel.run()` instead of `pyxel.App().run()`, `pyxel.btnp()` instead of `pyxel.btn()` for press detection.
Grant Accessibility permission to the terminal (System Preferences → Security & Privacy → Privacy → Accessibility → add your terminal app).
Use `pyxel.colors.from_list(pyxel.COLORS_16)` to restore old palette, or adjust colors.
Install with `pip install pyxel` and ensure Python >=3.10.
Remove the caption argument: `pyxel.init(160, 120)` instead of `pyxel.init(160, 120, "My Game")`.
Use `pyxel.run(update, draw)` inside a class or functions. See quickstart.
No dependency data recorded yet.