Metadata-Version: 1.1
Name: tortilla
Version: 0.1.0.dev1
Summary: A tiny library for creating wrappers around external APIs
Home-page: https://github.com/redodo/tortilla
Author: Hidde Bultsma
Author-email: dodo@gododo.co
License: MIT
Description: Tortilla
        ========
        
        A tiny Python library for creating wrappers around external APIs.
        
        Usage::
        
            >>> import tortilla
            >>> github = tortilla.wrap('https://api.github.com')
            >>> redodo = github.users.get('redodo')
            >>> redodo.id
            2227416
        
Keywords: api wrapper
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet
