pysubs2 is an open-source project - your feedback and contributions are welcome!
Please open an issue at GitHub Issues page.
For more substantial patches, please open a GitHub Issue to discuss your proposed changes to make sure we're on the same page and that your patch is a good fit for the library.
To contribute code, first create a GitHub fork of tkarabela/pysubs2,
add your commits in a feature branch, and open a pull request against the master
branch.
If relevant, do not hesitate to add tests demonstrating your feature. Your branch should pass all tests with no errors or warnings:
pip install -r requirements-dev.txt
pytest
Your branch should also pass Ruff and strict MyPy checks with no errors:
mypy --strict
ruff check
You can run all checks via make test
.