/flask-stripe-example

Stripe Flask Example

Primary LanguageHTMLMIT LicenseMIT

Stripe Flask Example

This is a simple example how to integrate stripe payment system into a flask app

Install:

pip install -r requirements.txt

Update stripe keys

Provide these values in app.py

STRIPE_SECRET_KEY = ''
PUBLISHABLE_SECRET_KEY = ''
CURRENCY = 'usd' # Change it if you need 

Run:

python app.py