Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 339 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 339 Bytes

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