Metadata-Version: 2.1
Name: tapioca-stripe
Version: 0.2
Summary: Stripe API wrapper using tapioca
Home-page: https://github.com/humrochagf/tapioca-stripe
Author: Humberto Rocha
Author-email: humrochagf@gmail.com
License: MIT
Description: # 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()
        ```
        
        ### Stripe file creation endpoint
        
        This endpoint has a special base `api_root`.
        
        If you want to use this endpoint make sure your **tapioca-wrapper** version
        is higher than **1.5.1** that has support to [resource aware get_api_root](https://github.com/vintasoftware/tapioca-wrapper/issues/156).
        
        - Learn how Tapioca works [here](http://tapioca-wrapper.readthedocs.org/en/stable/quickstart.html)
        - Explore this package using iPython
        - Have fun!
        
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
