Metadata-Version: 2.0
Name: tortilla
Version: 0.1.0.dev2
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
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: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet
Requires-Dist: lunch
Requires-Dist: colorclass
Requires-Dist: requests

Tortilla
========

A tiny Python library for creating wrappers around external APIs.

Installation::

    pip install --pre tortilla

Usage::

    >>> import tortilla
    >>> github = tortilla.wrap('https://api.github.com')
    >>> redodo = github.users.get('redodo')
    >>> redodo.id
    2227416

*This package is still in development*


