dpdtrack/README.md

27 lines
No EOL
505 B
Markdown

# GLS REST API Python Client
This is a Python client for the GLS (https://gls-group.eu) REST API. It allows you to track your shipments.
It currently only supports package tracking, not any other API endpoints.
## Installation
```bash
pip install glsapi
```
## Usage
```python
from glsapi import GLSAPI
api = GLSAPI()
# Realtime tracking
tracking = api.tracking("YOUR_SHIPMENT_NUMBER")
```
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.