Metadata-Version: 1.1
Name: beanbag
Version: 1.9.2
Summary: A helper module for accessing REST APIs
Home-page: https://github.com/ajtowns/beanbag
Author: Anthony Towns
Author-email: aj@erisian.com.au
License: MIT
Description: 
        BeanBag
        =======
        
        BeanBag is a simple module that lets you access REST APIs in an easy
        way. For example:
        
           >>> import beanbag
           >>> github = beanbag.BeanBag("https://api.github.com")
           >>> watchers = github.repos.ajtowns.beanbag.watchers()
           >>> for w in watchers:
           ...     print(w["login"])
        
        See `http://beanbag.readthedocs.org/` for more information.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
