1
0

🤖 Repository layout updated to latest version

This commit was automatically generated by a script: https://gitfub.space/Jmaa/repo-manager
This commit is contained in:
Takunomi Automaticus, The 2nd 2025-01-22 22:43:39 +01:00
parent 8d75b6a645
commit 649e40cae9
2 changed files with 23 additions and 5 deletions

View File

@ -8,9 +8,18 @@
![Test program/library](https://gitfub.space/Jmaa/package-tracking/actions/workflows/python-test.yml/badge.svg)
Sample package tracking website.
Small alternative frontend for tracking packages and parcels.
Use the [Parcels API](https://parcelsapp.com/).
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.
## Dependencies

View File

@ -13,13 +13,22 @@ PACKAGE_NAME = 'package_tracking'
PACKAGE_DESCRIPTION = """
# Package-tracking.
Sample package tracking website.
Small alternative frontend for tracking packages and parcels.
Use the [Parcels API](https://parcelsapp.com/).
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.
""".strip()
PACKAGE_DESCRIPTION_SHORT = """
Sample package tracking website.""".strip()
Small alternative frontend for tracking packages and parcels.""".strip()
def parse_version_file(text: str) -> str: