Library containing the core modules for the kingdom-python-server.
See the changelog to see all the features supported.
Use the package manager pip to install kingdom-sdk
.
pip install kingdom-sdk
You can use poetry as well.
poetry add kingdom-sdk
from kingdom_sdk.utils import files
orm_files = files.find("orm.py", "/")
To test the database package, you need do it manually, running a migration. Make sure the database is configured before.
cd tests/poc/
alembic revision --autogenerate
alembic upgrade head
The rest, run pytest
.
Don't commit the generated revision.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.