Skip to content

Commit bee8120

Browse files
committed
Doc: Improve the format of the tutorial
1 parent 8b01bc3 commit bee8120

File tree

1 file changed

+52
-37
lines changed

1 file changed

+52
-37
lines changed

how_to_use_stripe_for_payment.md

+52-37
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# Stripe For Payment using Python and Flask
1+
# Integrate Stripe in Your Flask Application
22

33
Stripe currently has 3 payment strategies for accepting one-time payments:
44

55
1. [Charges API](https://stripe.com/docs/payments/charges-api) (legacy)
66
2. [Stripe Checkout](https://stripe.com/payments/checkout) (We will focus on this)
77
3. [Payments Intents API](https://stripe.com/docs/payments/payment-intents)
88

9-
###### Which strategy should you use?
9+
## Which strategy should you use?
1010

1111
* Use _Stripe Checkout_ if you want to get up and running fast. It provides a number of powerful features out-of-the-box, supports multiple languages, and can even be used for [recurring payments](https://stripe.com/docs/billing/subscriptions/fixed-price). Most importantly, Checkout manages the entire payment process for you, so you can begin accepting payments without even having to add a single form!
1212
* Use the Payment Intents API (along with Elements) if you want to customize the payment experience for your end users.
1313

14-
###### Workflow
14+
## Workflow
1515

1616
1. Create a project structure to hold all your project resources
1717
2. Create a virtual environment and install `flask`
@@ -23,7 +23,9 @@ Stripe currently has 3 payment strategies for accepting one-time payments:
2323
8. Redirect the user appropriately when they have checked out
2424
9. Confirm payment with Stripe Webhooks
2525

26-
#### Initial SetUp
26+
_This project's code can be located in [this GitHub repository](https://github.com/GitauHarrison/integrating-stripe-payment-in-flask)._
27+
28+
## Initial SetUp
2729

2830
You need to create your project directory and move into it. It is important that you activate your [virtual environment](https://docs.python.org/3/tutorial/venv.html) before installing `Flask`.
2931

@@ -39,7 +41,7 @@ $ python3 -m venv tutorial-env
3941

4042
If you wish to use a virtualenvironment wrapper to create your virtual environment, learn how to [configure Python Environment with Virtualenvwrapper here](/virtualenvwrapper_setup.md).
4143

42-
Install `flask`
44+
Install `flask`:
4345
```python
4446
$ pip3 install flask
4547
```
@@ -49,23 +51,13 @@ $ touch requirements.txt # this will create an empyty file
4951
$ pip3 freeze > requirements.txt
5052
```
5153

52-
###### Simple Flask App Structure
54+
## Simple Flask App Structure
5355

54-
So far, we already have our project folder created and it holds the `requirements.txt` file. We will add the following empty files to complete the structure for our simple app.
56+
So far, we already have our project folder created and it holds the `requirements.txt` file. Add the remaining empty files to complete the structure for our simple app.
5557

5658
![Python Project Structure](images/stripe_project_structure.svg)
5759

58-
```python
59-
(stripe-project)$ mkdir app
60-
(stripe-project)$ touch app/__init__.py # This is where the application is initialized
61-
(stripe-project)$ touch app/routes.py # All our views will be here
62-
(stripe-project)$ touch app.py # this allows for our app to run
63-
(stripe-project)$ touch config # all our configuration variables will be stored here
64-
(stripe-project)$ touch .flaskenv # stores all your environment variables
65-
(stripe-project)$ mkdir app/templates # create a templates subfolder to hold all our template files
66-
(stripe-project)$ touch app/templates/base.html # base structure of the app will be here
67-
(stripe-project)$ touch app/templates/index.html # this is the primary template
68-
```
60+
6961
Add the following contents to the appropriate files:
7062

7163
`app/__init__.py`
@@ -76,6 +68,7 @@ app = Flask(__name__)
7668

7769
from app import routes
7870
```
71+
This creates an instance of the application and registers the `routes` module. To test that the app is working, we will display the classic 'Hello, world' message as seen below.
7972

8073
`app/routes.py`
8174
```python
@@ -86,28 +79,32 @@ from app import app
8679
def index():
8780
return "Hello, world!"
8881
```
82+
Before we can run our app, we will need to create an entry point to our flask application. This will be done in the file called `app.py`.
8983

9084
`app.py`
9185
```python
9286
from app import app
9387
```
94-
###### Fire Up Your Server
88+
## Start Your Flask Server
9589

96-
**Method #1:**
90+
### Method #1
9791

98-
Our app is set up and we need to fire our server to display _Hello, world!_. Let us set up `FLASK_APP` environment variable to import our flask app:
92+
Our app is set up and we need to fire up our server to display _Hello, world!_. Let us set up `FLASK_APP` environment variable in the terminal to import our flask app:
9993

10094
```python
10195
(stripe-project)$ export FLASK_APP=app.py
10296
(stripe-project)$ flask run
10397

10498
# This is what you will see:
99+
105100
* Serving Flask app "app"
106101
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
107-
# click on the link (or copy this http address and paste it in your browser URL bar). You should see Hello, World!
102+
103+
# Click on the link (or copy this http address and paste it
104+
# in your browser URL bar). You should see Hello, World!
108105
```
109106

110-
**Method #2:**
107+
### Method #2
111108

112109
Since environment variables such as the one created above (I mean `FLASK_APP`) aren't remembered across terminal sessions, you may find it tedious to always have to set the `FLASK_APP` environment variable when you open a new terminal windor.
113110

@@ -125,26 +122,32 @@ FLASK_APP=app.py
125122
```
126123
Now, all you need to do as run `flask run` and you will be able to see the output in your browser.
127124

128-
#### Adding Stripe
125+
## Adding Stripe
129126

130-
Start by installing `stripe`:
127+
Start by installing `stripe` in your virtual environment:
131128

132129
```python
133130
(stripe-project)$ pip3 install stripe
134131
```
135132

133+
### Register For A Stripe Account
134+
136135
[Register](https://dashboard.stripe.com/register) for a stripe account. Once you are in the dashboard, navigate to the _Developers_ menu on the left sidebar. Click on it to reveal _API Keys_.
137136

138137
![Stripe Developer](images/stripe-developer.png)
139138

140139
Click on _API Keys_.
141140

141+
### Stripe API Keys
142+
142143
Each Stripe account has four [API keys](https://stripe.com/docs/keys): two keys for testing and two for production. Each pair has a "secret key" and a "publishable key". Do not reveal the secret key to anyone; the publishable key will be embedded in the JavaScript on the page that anyone can see.
143144

144145
![Stripe API Keys](images/stripe_API_Keys.png)
145146

146147
Currently the toggle for "Viewing test data" in the left sidebar indicates that we're using the test keys now. That's what we want.
147148

149+
### Configure Stripe Keys in the Application
150+
148151
Now that we know where to find our API keys, we need to store them in system-wide variables within the top-level `config.py` file.
149152

150153
`config.py`
@@ -192,7 +195,7 @@ Finally, you will need to add an account name. Click on the top-left sidebar whe
192195

193196
![Account name](images/account_name.png)
194197

195-
#### Create a Product
198+
### Create a Product
196199

197200
We need to create a product to sell. Click _Products_ on the left sidebar in your dashboard and _+Add Product_
198201

@@ -202,19 +205,26 @@ Add a product name, enter your price and select _One time_, then click on _Save
202205

203206
![New Product](images/new_product.png)
204207

205-
#### Get Publishable Key
208+
### Get Publishable Key
206209

207210
We will use _Javascript_. We will all a static folder which will hold our `.js` files.
208211

209212
```python
210-
(stripe-project)$ mkdir app/static && mkdir app/static/js # this will create a js sub-folder in static
211-
(stripe-project)$ touch app/static/js/main.js # empty js file
213+
(stripe-project)$ mkdir app/static && mkdir app/static/js
214+
# This will create a js sub-folder in static
215+
216+
(stripe-project)$ touch app/static/js/main.js
217+
# Add an empty js file
212218
```
219+
As a test, add the following contents to the `main.js` file:
220+
213221
`app/static/js/main.js`
214222
```js
215223
console.log("Sanity check!") // this is just a printout
216224
```
217225

226+
## Working with Templates
227+
218228
In your `app/routes.py`, modify the file to now render your `index.html` file. We will use the `index.html` file to display a simple _Purchase_ button:
219229

220230
`app/routes.py`
@@ -276,17 +286,20 @@ We have linked our `main.js` file with the base template. Your actual content wi
276286
</section>
277287
{% endblock %}
278288
```
289+
### Run the Application
279290

280291
Run the development server:
281292

282293
```python
283294
(stripe-project)$ flask run
284295
```
285296

286-
Navigate to _http://localhost:5000_, and open up the JavaScript console (ctrl +shift + I). You should see the _sanity check_:
297+
Navigate to http://localhost:5000, and open up the JavaScript console (ctrl +shift + I). You should see the _sanity check_:
287298

288299
![Sanity Check](images/sanity_check.png)
289300

301+
## Handling AJAX
302+
290303
Let us add a new route to handle the [AJAX](https://www.w3schools.com/js/js_ajax_intro.asp) request:
291304

292305
`app/routes.py`
@@ -300,7 +313,7 @@ def get_publishable_key():
300313
return jsonify(stripe_config)
301314
```
302315

303-
##### Create an AJAX request
316+
### Create an AJAX request
304317

305318
We will use the [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) to make an AJAX request to the new route `/config` endpoint.
306319

@@ -322,7 +335,7 @@ A reposnse from a `fetch` request is a [ReadableStream](https://developer.mozill
322335

323336
Now, after the page load, a call will be made to `/config`, which will respond with the Stripe publishable key. We'll then use this key to create a new instance of Stripe.js.
324337

325-
#### Create Checkout Session
338+
### Create Checkout Session
326339

327340
We need to attach an event handler to the button's click event which will send another AJAX request to the server to generate a new Checkout session ID.
328341

@@ -411,6 +424,8 @@ Navigate to http://localhost:5000. Click the button and you should be redirected
411424

412425
_My form is slightly modified and branded to have the orange-ish color. You can achive this through [Brand Setting](https://dashboard.stripe.com/settings/branding)._
413426

427+
### Test the Checkout Session
428+
414429
Stripe provides us with several [test card numbers](https://stripe.com/docs/testing#cards). Pick one, depending on your region and fill in the form:
415430

416431
* Provide a valid email address
@@ -422,7 +437,7 @@ Stripe provides us with several [test card numbers](https://stripe.com/docs/test
422437

423438
If all goes well, the payment should be processed. Nothing will happen after a successful process because we have not set a `/success` redirect yet. So, below that is what we will do.
424439

425-
#### Redirecting User Appropriately
440+
### Redirecting A User Appropriately
426441

427442
We will now add routes for successful payment processing or any cancellation.
428443

@@ -480,7 +495,7 @@ You can test out `/cancel` by clicking on the back arrow in the Stripe payment f
480495

481496
![Stripe Payment Form](images/stripe_payment_form.png)
482497

483-
#### Configure Payments with Stripe Webhooks
498+
## Configure Payments with Stripe Webhooks
484499

485500
Our app works well at this point, but we still can't programmatically confirm payments and perhaps run some code if a payment was successful. We already redirected the user to the success page after they check out, but we can't rely on that page alone since payment confirmation happens asynchronously.
486501

@@ -494,7 +509,7 @@ We need to do three things in order to use webhooks:
494509
2. Test the endpoint using the [Stripe CLI](https://stripe.com/docs/stripe-cli)
495510
3. Register the endpoint with Stripe
496511

497-
###### Endpoint
512+
### Endpoint
498513

499514
Whenever a payment goes through successfully, we will print a message.
500515

@@ -531,7 +546,7 @@ def stripe_webhook():
531546

532547
`stripe_webhook` function now serves our webhook endpoint. Here, we are only looking for `checkout.session.completed` events which are called whenever a checkout is successful. You can use the same pattern for other [Stripe Events](https://stripe.com/docs/api/events).
533548

534-
###### Test Your Webhook
549+
### Test Your Webhook
535550

536551
We will use the Stripe CLI to test our webhook. First, install the Stripe CLI:
537552

@@ -593,7 +608,7 @@ Stripe will now forward events to our endpoint. Once again, test for a successfu
593608

594609
At this point, you can stop the `stripe listen --forward-to localhost:5000/webhook` process.
595610

596-
##### Register Your Endpoint
611+
### Register Your Endpoint
597612

598613
After deploying your app, you can register your endpoint in the stripe dashboard under _Developer > Webhooks_. Click on the button _Add Enpoint_.
599614

0 commit comments

Comments
 (0)