Metadata-Version: 1.0
Name: bongo
Version: 0.1
Summary: An API wrapper for Iowa City's bus data
Home-page: UNKNOWN
Author: Zach Williams
Author-email: hey@zachwill.com
License: MIT
Description: Bongo
        =====
        
        A simple API wrapper for the [Iowa City bus data
        API](http://www.ebongo.org/api/) -- mainly to use as an example for an
        upcoming blog post.
        
        
        Installation
        ------------
        
        You can install the API wrapper using [`pip`](http://pypi.python.org/pypi/pip).
        
            pip install bongo
        
        
        Usage
        -----
        
        ```python
        >>> from bongo import Bongo
        >>> b = Bongo()
        
        >>> # List of all Bongo routes.
        >>> b.routes()
        {"routes": [1234, 5678, 9999]}
        
        >>> # Info for a specific route and agency.
        >>> b.route('lantern', 'coralville')
        {"coralville's": {"lantern": "route"}}
        
        >>> # List of all stops.
        >>> b.stops()
        {"stops": [1234, 5678, 9999]}
        
        >>> # Information for a specific stop.
        >>> b.stop(8350)
        {"stop": {"8350": "information"}}
        
        >>> # Predict the arrival times at a specific stop.
        >>> b.predict(8350)
        {"stop": {"8350": "predictions"}}
        
        >>> # Bongo can also be used to return XML data.
        >>> Bongo('xml').routes()
        <ohai><xml><data></data></xml></ohai>
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
