This is the code from the SQLAlchemy Quick Start guide, posted here for personal notes usage.
To get this up and running using Docker
$ docker run -d -v /path/to/this/git/repo:/src -t python:bullseye
$ docker exec -it <container_name> /bin/bash
# apt-get update && apt-get -y upgrade
# pip install pip
# pip install SQLAlchemy
# python3 /src/quick_start.py
All the code is the original work of the SQLAlchemy team. No LICENSE
is included in this repository for that reason.