This is a personal educational archive, but suggestions and fixes are welcome.
- Keep examples self-contained and educational.
- Prefer clean rewrites over raw pastes of old scripts.
- Do not add examples that require API keys, credentials, or paid services to run.
- New modules should include a
main()entry point andif __name__ == "__main__"block. - Use optional dependency groups in
pyproject.tomlfor heavy or specialized packages (e.g.arch,pyspark).
make install # base dependencies
make install-all # all optional extras
make check # verify all files compile