Metadata-Version: 1.0
Name: python-realtimecongress
Version: 0.1.1
Summary: A library for interacting with the Real Time Congress API
Home-page: http://github.com/sunlightlabs/python-realtimecongress
Author: Dan Drinkard <dan.drinkard@gmail.com>
Author-email: dan.drinkard@gmail.com
License: BSD
Description: Real Time Congress
        ==================
        
        A python library for interacting with the Real Time Congress API.
        
        Usage:
        ------
        Fetching the first page of bills co-sponsored by John Lewis:
        
            >>>from realtimecongress import RTC
            >>>RTC.apikey = 'mykey'
            >>>RTC.getBills(cosponsor_ids='L000287')
            [RTCResponse(...),]
        
        Getting data about the last request:
        
            >>>RTC.meta
            {'count': 838, 'page': {'count': 20, 'per_page': 20, 'page': 1}}
        
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
