Metadata-Version: 2.1
Name: tapioca-stripe
Version: 0.1
Summary: Stripe API wrapper using tapioca
Home-page: https://github.com/humrochagf/tapioca-stripe
Author: Humberto Rocha
Author-email: humrochagf@gmail.com
License: MIT
Keywords: stripe api web tapioca
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: tapioca-wrapper (<2)

# Tapioca Stripe

## Installation

```
pip install tapioca-stripe
```

## Documentation

``` python
from tapioca_stripe import Stripe

client = Stripe(
    api_key='sk_test_4eC39HqLyjWDarjtT1zdp7dc',
)

client.charges_list().get()
```

- Learn how Tapioca works [here](http://tapioca-wrapper.readthedocs.org/en/stable/quickstart.html)
- Explore this package using iPython
- Have fun!


