Skip to main content

Define module-level imports.

Project description

PyRMVtransport :bus:

Python library to make use of transport information from opendata.rmv.de.

CircleCI PyPi PyPi PyPi codecov Maintainability Downloads

Installation

$ pip install PyRMVtransport

Usage

import asyncio
import aiohttp
from RMVtransport import RMVtransport

async def main():
    """The main part of the example script."""
    async with aiohttp.ClientSession() as session:
        rmv = RMVtransport(session)

        # 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
            await rmv.output()
        except TypeError:
            pass

loop = asyncio.get_event_loop()
loop.run_until_complete(main())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PyRMVtransport-0.2.7.tar.gz (12.6 kB view hashes)

Uploaded Source

Built Distribution

PyRMVtransport-0.2.7-py3-none-any.whl (15.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page