Metadata-Version: 1.1
Name: datapackage
Version: 0.5.4
Summary: Manage and load dataprotocols.org Data Packages
Home-page: https://github.com/trickvi/datapackage
Author: Tryggvi Björgvinsson
Author-email: tryggvi.bjorgvinsson@okfn.org
License: GPLv3
Description: datapackage
        ===========
        
        
        **datapackage** provides means to work with DataPackages as defined on
        `dataprotocols.org <http://dataprotocols.org/data-packages/>`__.
        
        ::
        
            >> import datapackage
            >>
            >> # Note trailing slash is important for data.okfn.org
            >> datapkg = datapackage.DataPackage('http://data.okfn.org/data/cpi/')
            >>
            >> print datapkg.title
            Annual Consumer Price Index (CPI)
            >> print datapkg.description
            Annual Consumer Price Index (CPI) for most countries in the world. Reference year is 2005.
            >> # Weird example just to show how to work with data rows
            >> print sum([row['CPI'] for row in datapkg.data])
            668134.635662
        
        Python support
        --------------
        
        **datapackage** supports both Python 2 and 3.
        
        License
        -------
        
        datapackage is available under the GNU General Public License, version
        3. See LICENCE for more details.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
