Retreive values from public API at the Swedish Transport Administration (Trafikverket).
Project description
pytrafikverket
python module for communicating with the swedish trafikverket api
Development and testing done with 3.11
Code example
from pytrafikverket import TrafikverketTrain, StationInfo
import aiohttp
import asyncio
from datetime import datetime
async def main(loop):
async with aiohttp.ClientSession(loop=loop) as session:
train_api = TrafikverketTrain(session, "api_key_here")
stations = await train_api.async_search_train_stations("kristianstad")
for station in stations:
print(station.name + " " + station.signature)
from_station = await train_api.async_get_train_station("Sölvesborg")
to_station = await train_api.async_get_train_station("Kristianstad C")
product_description = "SJ Regional" # Optional search field
print("from_station_signature: " + from_station.signature)
print("to_station_signature: " + to_station.signature)
train_stop = await train_api.async_get_train_stop(from_station, to_station, datetime(2022, 4, 11, 12, 57), product_description);
print(train_stop.get_state())
loop = asyncio.get_event_loop()
loop.run_until_complete(main(loop))
CLI example
$ py pytrafikverket.py -key <api_key> -method search-for-station -station "Kristianstad"
$ py pytrafikverket.py -key <api_key> -method get-next-train-stop -from-station "Kristianstad C" -to-station "Sölvesborg"
$ py pytrafikverket.py -key <api_key> -method get-next-train-stop -from-station "Kristianstad C" -to-station "Sölvesborg" -train-product "SJ Regional"
$ py pytrafikverket.py -key <api_key> -method get-train-stop -from-station "Kristianstad C" -to-station "Sölvesborg" -date-time "2017-05-19T16:38:00"
$ py pytrafikverket.py -key <api_key> -method get-weather -station "Nöbbele"
$ py pytrafikverket.py -key <api_key> -method search-for-ferry-route -route "sund"
$ py pytrafikverket.py -key <api_key> -method get-ferry-route -route "Adelsöleden"
$ py pytrafikverket.py -key <api_key> -method get-next-ferry-stop -from-harbor "Ekerö"
$ py pytrafikverket.py -key <api_key> -method get-next-ferry-stop -from-harbor "Furusund" -date-time "2019-12-24T00:00:00"
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
pytrafikverket-0.3.10.tar.gz
(14.2 kB
view details)
Built Distribution
File details
Details for the file pytrafikverket-0.3.10.tar.gz
.
File metadata
- Download URL: pytrafikverket-0.3.10.tar.gz
- Upload date:
- Size: 14.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0772bdc03163eee4a0b3a06c2549c3eabd8955c1fbbbb52b6d55d44cc1aa9901 |
|
MD5 | 3a4a72b79d2b9faf192d8c66e24b1afe |
|
BLAKE2b-256 | dfadfba1119843361564907d22be8342febebff97a486451a27a248fac7b25e9 |
File details
Details for the file pytrafikverket-0.3.10-py3-none-any.whl
.
File metadata
- Download URL: pytrafikverket-0.3.10-py3-none-any.whl
- Upload date:
- Size: 17.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42230c669c037dea1a7ccde1076b8e63a3d04bf8be0dbd874113546d1a5f17d9 |
|
MD5 | b1680127a6acf257477147cc5d2fa816 |
|
BLAKE2b-256 | c714f825e856a509218491727a2a261d4d7acfbb3ab5a0a95110c08fc555ad2b |