postat/README.md

36 lines
799 B
Markdown
Raw Permalink Normal View History

2023-08-24 06:44:21 +00:00
# Python wrapper for Austrian Post web services
This is a Python wrapper for web services provided by [Austrian Post](https://www.post.at/).
Currently, it only supports looking up shipment details by tracking number.
Groundwork for services requiring authentication is laid out, but not working
yet. If you want to contribute, please feel free to do so.
## Installation
```bash
pip install postat
2023-08-24 06:44:21 +00:00
```
## Usage
```python
from postat.classes.api import PostAPI
api = PostAPI()
# Get shipment details
shipment_details = api.get_shipment_details("123456789012345678901234567890")
shipment = shipment["data"]["einzelsendung"]
# Get latest event
latest_event = shipment["sendungsEvents"][-1]
```
## License
This project is licensed under the MIT License. See [LICENSE](LICENSE) for details.