-
-
Save maccman/3299715 to your computer and use it in GitHub Desktop.
import os | |
from flask import Flask, render_template, request | |
import stripe | |
stripe_keys = { | |
'secret_key': os.environ['SECRET_KEY'], | |
'publishable_key': os.environ['PUBLISHABLE_KEY'] | |
} | |
stripe.api_key = stripe_keys['secret_key'] | |
app = Flask(__name__) | |
@app.route('/') | |
def index(): | |
return render_template('index.html', key=stripe_keys['publishable_key']) | |
@app.route('/charge', methods=['POST']) | |
def charge(): | |
amount = 500 | |
customer = stripe.Customer.create( | |
email='[email protected]', | |
card=request.form['stripeToken'] | |
) | |
charge = stripe.Charge.create( | |
customer=customer.id, | |
amount=amount, | |
currency='usd', | |
description='Flask Charge' | |
) | |
return render_template('charge.html', amount=amount) | |
if __name__ == '__main__': | |
app.run(debug=True) |
{% extends "layout.html" %} | |
{% block content %} | |
<h2>Thanks, you payed <strong>$5.00</strong>!</h2> | |
{% endblock %} |
{% extends "layout.html" %} | |
{% block content %} | |
<form action="/charge" method="post"> | |
<article> | |
<label>Amount: $5.00</label> | |
</article> | |
<script src="https://checkout.stripe.com/v2/checkout.js" class="stripe-button" data-key="{{ key }}"></script> | |
</form> | |
{% endblock %} |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Stripe</title> | |
<style type="text/css" media="screen"> | |
form article label { | |
display: block; | |
margin: 5px; | |
} | |
form .submit { | |
margin: 15px 0; | |
} | |
</style> | |
</head> | |
<body> | |
{% block content %}{% endblock %} | |
</body> | |
</html> |
To use the amount in the charge template, you'll want to use the format
filter: https://gist.github.com/octaflop/5860862
<h2>Thanks, you payed <strong>$
{{ '%(amt).2f'|format(amt=amount/100) }}
</strong>!</h2>
Line #22 ~ #23 indention error. There should be 2 spaces in the front of each line.
If anyone is getting a TemplateNotFound
exception with this example, just make a directory called templates and put the templates in that directory, and it'll work. This is because Flask looks for templates in the templates
directory.
I've noticed that the email address entered on the checkout ends up as the “card holders name” and the hard-coded address is the customer's email address. Any way to fix that?
Why
customer = stripe.Customer.create( email='[email protected]', card=request.form['stripeToken'] )
instead of
customer = stripe.Customer.create( email=request.form['stripeEmail'], card=request.form['stripeToken'] )
?
What about writing unit tests for all of this?
How will you pass values dynamically from the script form using the POST request? For example:
amount = request.form['amount']
description = request.form['description']
Then you can use them in the charge object thus avoiding the hard coded values like:
charge = stripe.Charge.create(
customer = customer.id,
amount = amount,
currency = 'usd',
description = description
)
Cool It worked just as I expected. Thanks !!!
Indentation is off (slightly overindented) in app.py on lines 22-25 and 27-32.