Python Notes and Examples

Drawing, Graphics, Games

Raylib

For simple drawing and animating of shapes, check out raylib, which has bindings on the Cheeseshop: https://pypi.org/project/raylib/.

I wrote up some notes on using Raylib+Python.

Arcade

If you want to make a 2D game, you might try Arcade. It’s high-level, built upon Pyglet and PyOpenGL.

Install: python3 -m pip install --user arcade

See also: