Thanks for your interest! This is a small focused library — contributions that add clear value are very welcome.
- New utility module in
utils/(bring your own test file intests/) - Bug fix with a regression test
- Documentation improvement
- Modules that require external dependencies (this is a zero-dep library)
- Utilities already covered by the standard library with minimal wrapping
- Fork the repo
- Create a branch:
git checkout -b fix/my-fixorfeat/my-module - Add your code in
utils/ - Add tests in
tests/test_<module>.py - Run tests:
pytest - Open a PR with a clear description of what you changed and why
pip install pytest pytest-asyncio
pytest- Type hints on all public functions
- Docstring with a one-line summary and
Args/Returnswhere helpful - Pure Python — no external runtime dependencies