Python library to make use of transport information from opendata.rmv.de.
$ pip install PyRMVtransport
import asyncio
import aiohttp
from RMVtransport import RMVtransport
async def main():
"""The main part of the example script."""
async with aiohttp.ClientSession():
rmv = RMVtransport()
# Get the data
try:
# Departures for station 3006907 (Wiesbaden Hauptbahnhof)
# max. 5 results
# only specified products (S-Bahn, U-Bahn, Tram)
data = await rmv.get_departures(
station_id="3006907", products=["S", "U-Bahn", "Tram"], max_journeys=5
)
# Use the JSON output
print(data)
# or pretty print
rmv.print()
except TypeError:
pass
loop = asyncio.get_event_loop()
loop.run_until_complete(main())