1
0
package-tracking/package_tracking/__init__.py

20 lines
569 B
Python
Raw Permalink Normal View History

2025-01-22 16:30:50 +00:00
"""# Package-tracking.
2025-01-22 21:43:31 +00:00
Small alternative frontend for tracking packages and parcels.
2025-01-22 16:40:14 +00:00
2025-01-22 21:43:31 +00:00
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.
2025-01-22 16:30:50 +00:00
"""
2025-01-22 16:40:14 +00:00
__all__ = ['__version__']
2025-01-22 17:19:05 +00:00
from ._version import __version__