├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── requirements.txt ├── static └── main.js └── templates ├── base.html ├── cancelled.html ├── index.html └── success.html /.gitignore: -------------------------------------------------------------------------------- 1 | env 2 | __pycache__ 3 | *.sqlite3 4 | 5 | .idea/ 6 | venv/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-stripe-checkout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-stripe-checkout/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-stripe-checkout/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==3.0.3 2 | stripe==9.7.0 3 | -------------------------------------------------------------------------------- /static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-stripe-checkout/HEAD/static/main.js -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-stripe-checkout/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/cancelled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-stripe-checkout/HEAD/templates/cancelled.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-stripe-checkout/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-stripe-checkout/HEAD/templates/success.html --------------------------------------------------------------------------------