1
0
package-tracking/package_tracking/__init__.py
Jon Michael Aanes 8d75b6a645
Some checks failed
Verify Python project can be installed, loaded and have version checked / Test (push) Waiting to run
Run Python tests (through Pytest) / Test (push) Has been cancelled
Documentation
2025-01-22 22:43:31 +01:00

20 lines
569 B
Python

"""# Package-tracking.
Small alternative frontend for tracking packages and parcels.
Use the excellent [Parcels App API](https://parcelsapp.com/), and thus requires
an API key.
This was written specifically for embedding as an iframe into homepage
applications like [Homepage](https://gethomepage.dev/) or [Dashy](https://dashy.to/).
Once run, it exposes the following endpoints:
- `/`: Base view, including a form for adding new parcels.
- `/noninteraction`: Smaller view for embedding as iframe.
"""
__all__ = ['__version__']
from ._version import __version__