Library for retrieving Wrocław public transportation geolocation data
Project description
mpyk
Simple Python 3 library for retrieving Wrocław MPK trams and buses real-time location
installation
pip install mpyk
usage
from typing import Any, Dict, List
from mpyk import MpykClient, MpykTransLoc
client = MpykClient()
all_positions: List[MpykTransLoc] = client.get_all_positions()
print(all_positions[0])
# MpykTransLoc(kind='bus', line='131', course=16949195, timestamp=datetime.datetime(2021, 1, 2, 16, 31, 32), lat=51.115585, lon=17.074024)
raw_positions: List[Dict[str, Any]] = client.get_all_positions_raw()
print(raw_positions[0])
# {'name': '131', 'type': 'bus', 'y': 17.078085, 'x': 51.123753, 'k': 16949195}
timestamp
is UTC time of the moment of making request to MPK API, with precision down to seconds
development
- see
Makefile
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mpyk-0.0.4.tar.gz
(3.5 kB
view details)
File details
Details for the file mpyk-0.0.4.tar.gz
.
File metadata
- Download URL: mpyk-0.0.4.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b2d947aca5325495a33ea7a3b2adc35bd031287b02da17cd17ad496658553b2 |
|
MD5 | 9b13a7c78c47bf5fc7f99a716e4557e0 |
|
BLAKE2b-256 | 799919e9753be822dc80e10cd137ea7b7b21f8f6c1995011e3a0719c08992f9a |