Metadata-Version: 2.1
Name: pydublinbus
Version: 0.0.2
Summary: Python library to get the real-time transport information (RTPI) for Dublin Bus
Home-page: https://pypi.org/project/pydublinbus/0.0.1/
Author: Alex Iepuras
Author-email: iepuras.alex@gmail.com
License: MIT
Download-URL: https://pypi.org/project/pydublinbus/0.0.1/#files
Description: PyDublinBus
        ========================================
        
        Python Interface for the Dublin Bus RTPI API.
        
        
        Example basic usage
        -------------------
        #### Time table:
        ```
        >>> from pydublinbus import DublinBusRTPI
        >>> mybus=DublinBusRTPI(stopid='312')
        >>> from pprint import pprint
        >>> pprint(mybus.bus_timetable())
        [{'due_in': '6', 'route': '26'},
         {'due_in': '8', 'route': '25B'},
         {'due_in': '15', 'route': '67'},
         {'due_in': '22', 'route': '66B'},
         {'due_in': '23', 'route': '25A'},
         {'due_in': '31', 'route': '66A'},
         {'due_in': '38', 'route': '25B'},
         {'due_in': '39', 'route': '66'},
         {'due_in': '41', 'route': '26'},
         {'due_in': '41', 'route': '25'},
         {'due_in': '45', 'route': '67'},
         {'due_in': '46', 'route': '25A'}]
        ```
        
        #### Raw json data:
        ```
        >>> from pydublinbus import DublinBusRTPI
        >>> mybus=DublinBusRTPI(stopid='312')
        >>> mybus.get_rtpi_data()
        ```
Keywords: dublin bus RTPI
Platform: any
Requires-Python: >=3.6
Description-Content-Type: text/markdown
