Braintree for Django
Project description
djbraintree easily integrates the official Braintree Python client library into your Django applications by allowing easy configuration from your Django settings.
Quick start
Install djbraintree from PyPI:
$ pip install djbraintree
Update your project’s settings.py:
INSTALLED_APPS = ( .. 'django_barintree', ) TEMPLATE_CONTEXT_PROCESSORS = ( .. 'djbraintree.context_processsors.braintree_client_side_encryption_key', ) import braintree BRAINTREE_ENVIRONMENT = braintree.Environment.Sandbox BRAINTREE_CLIENT_SIDE_ENCRYPTION_KEY = '..' BRAINTREE_MERCHANT_ID = '..' BRAINTREE_PUBLIC_KEY = '..' BRAINTREE_PRIVATE_KEY = '..'
Start using the Braintree Python client library in your code:
import braintree result = braintree.Transaction.sale({ "amount": "1000.00", "credit_card": { "number": "4111111111111111", "expiration_date": "05/2012" } })
Configuration options
- BRAINTREE_ENVIRONMENT
Braintree environment. Refer to the Braintree Python client library documentation for more details.
- BRAINTREE_CLIENT_SIDE_ENCRYPTION_KEY
Optional client side encryption key. Will be exposed using the braintree_client_side_encryption_key context processor as BRAINTREE_CLIENT_SIDE_ENCRYPTION_KEY in your templates if set.
- BRAINTREE_MERCHANT_ID
Merchant ID.
- BRAINTREE_PUBLIC_KEY
Public key.
- BRAINTREE_PRIVATE_KEY
Private key.
- BRAINTREE_USE_UNSAFE_SSL
Allow unsafe SSL connections. Default False and highly discouraged.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file djbraintree-0.1.0.tar.gz
.
File metadata
- Download URL: djbraintree-0.1.0.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c95e0b5f0f1b326d3d7cc3e789c4d172a3457aae389875527274328b6f590af6 |
|
MD5 | 33af6d114196e3da88aa45a7521f4f33 |
|
BLAKE2b-256 | d272c8ee4b104f499b7d4ece01248fada161ed1a3ef93db3025253e09022525a |