Any contribution is welcomed, don't be ashamed to send them!
If you see any undesired behaviour, mismatches with the OpenSubsonic API Spec or any sort of bug, please report them at the issue tracker.
To start making development contribution you will need the just
command (installation info at its manual) and Python 3.11.0 (you can set it with pyenv).
Then you should be able to spin up the development environment:
just setup
You can now run the test suit, check if you will the pass the CI check (and fix everything that can be done automatically) and spin up a docs instance with ease:
just test
just check
just docs
A git pre-commit hook that will run just check
at every commit and block it if something is wrong can be installed with:
just install-hook
You can uninstall it with:
just uninstall-hook
See more recipes with:
just help
The project works around the OpenSubsonic API Spec, with models (at src/knuckles/_models
) that tries to match the different responses request can make.
The user access the API with the Subsonic
object inside of it there are objects that acts as categories that roughly resembles the categories in the spec.
Everything should be private using the leading underscore convention and exposed the public parts of the package with the __init__.py
file using the __all__
variable.
!!! Warning
Making exceptions, methods or extra behaviour to support functionalities or bugs caused by non compliant server is not planned, nonetheless new generic systems to catch and avoid crashing in this situations are welcomed to be contributed.
Technical notes about unconventional decisions in the project:
- Some parts of the CI with GitHub Actions uses the
24.04
version of Ubuntu instead of thelatest
tag (currently at22.04
), this is due to thejust
command only being available in this version onwards. This is also the reason why this jobs uses Python 3.11.9 as it has a more limited range of installable version with theactions/setup-python
action. - Unfortunately due to limitations with
mkdocstrings-python
, when documenting the attributes of a class (like with all the models) the times can be determined at runtime and needs to be retyped in the docstring.