Metadata-Version: 2.1
Name: django-silly-stripe
Version: 0.0.1
Summary: Wrapper package for python stripe with Django and/or DRF
Home-page: https://github.com/byoso/django_silly_stripe
Author: Vincent Fabre
Author-email: peigne.plume@gmail.com
License: MIT
Keywords: django stripe
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.md

# Django Silly Stipe

It is a wrapper based on the use of python's stripe API. The aim is
to make it as simple as possible to use.

## Installation

`pip install django-silly-stripe``

**settings.py**
```python
INSTALLED_APPS = [
    # ...
    'django_silly_stripe',
]

SILLY_STRIPE = {
    'config_name': 'test' # or whatever name your config is
}

```

**urls.py**
```python

urlpatterns = [
    # ...
    path('stripe/', include('django_silly_stripe.urls')),
]
```


