Metadata-Version: 2.1
Name: stripe
Version: 2.29.3
Summary: Python bindings for the Stripe API
Home-page: https://github.com/stripe/stripe-python
License: MIT
Keywords: stripe,api,payments
Author: Stripe
Author-email: support@stripe.com
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 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
Requires-Dist: requests (>=2.20,<3.0); python_version >= "3.4" and python_version < "4.0"
Requires-Dist: requests[security] (>=2.20,<3.0); python_version >= "2.7" and python_version < "2.8"
Requires-Dist: toml (>=0.9,<0.10)
Project-URL: Documentation, https://stripe.com/docs/api?lang=python
Project-URL: Repository, https://github.com/stripe/stripe-python
Description-Content-Type: text/x-rst

Official Stripe Bindings for Python
===================================

A Python library for Stripe's API.


Setup
-----

You can install this package by using the pip tool and installing:

    $ pip install stripe
    
Or:

    $ easy_install stripe
    

Setting up a Stripe Account
---------------------------

Sign up for Stripe at https://dashboard.stripe.com/register.

Using the Stripe API
--------------------

Documentation for the python bindings can be found alongside Stripe's other bindings here:

- https://stripe.com/docs
- https://stripe.com/docs/api/python

In the standard documentation (the first link), most of the reference pages will have examples in Stripe's official bindings (including Python). Just click on the Python tab to get the relevant documentation.

In the full API reference for python (the second link), the right half of the page will provide example requests and responses for various API calls.

