Python client to a public and undocumented UrbanTZ API https://pypi.org/project/pyurbantz
This repository has been archived on 2022-08-04. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Lucidiot 799175ad01
Try with another Docker image
2018-10-20 22:33:07 +02:00
urbantz Add a frequency setting on the tracker 2018-10-20 19:05:45 +02:00
.gitignore First commit 2018-10-20 18:56:26 +02:00
.gitlab-ci.yml Try with another Docker image 2018-10-20 22:33:07 +02:00
LICENSE First commit 2018-10-20 18:56:26 +02:00
README.md Fixes 2018-10-20 20:11:47 +02:00
requirements-dev.txt Fixes 2018-10-20 20:11:47 +02:00
requirements.txt Prepare for Python package 2018-10-20 18:57:44 +02:00
setup.py Prepare for Python package 2018-10-20 18:57:44 +02:00

README.md

pyurbantz

A Python package to help with an undocumented API of UrbanTZ.

The UrbanTZ company provides a delivery management platform of the same name for other companies. To provide delivery tracking to their customers, those companies can send links to a tracking page on UrbanTZ's website, which uses a unique delivery ID in the URL to show tracking information.

Those tracking pages perform requests to an undocumented API endpoint with this tracking ID. The endpoint provides much more information than what is actually used in the pages; this package aims to provide a Python interface to help creating better tracking interfaces.

Requirements

This package just needs requests. That's it.

Scripts

This package provides a simple tracker script, urbantz.tracker, that can be invoked like this:

python -m urbantz.tracker <ID> [-f|--frequency <seconds>]

The script will perform a request every 10 seconds (by default) to the UrbanTZ API, then print the current date, time, and distance between the delivery truck and the destination.

Development

Setup

Sample setup using virtualenvwrapper:

mkvirtualenv pyurbantz -a .
pip install -e .[dev]

Linting

The source code follows the PEP 8 code style and performs CI checks using the flake8 tool. To perform the same checks locally, run flake8 on the root directory of this repository.