Skip to main content

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

  1. Install djbraintree from PyPI:

    $ pip install djbraintree
  2. 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 = '..'
  3. 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

djbraintree-0.1.0.tar.gz (2.5 kB view details)

Uploaded Source

File details

Details for the file djbraintree-0.1.0.tar.gz.

File metadata

File hashes

Hashes for djbraintree-0.1.0.tar.gz
Algorithm Hash digest
SHA256 c95e0b5f0f1b326d3d7cc3e789c4d172a3457aae389875527274328b6f590af6
MD5 33af6d114196e3da88aa45a7521f4f33
BLAKE2b-256 d272c8ee4b104f499b7d4ece01248fada161ed1a3ef93db3025253e09022525a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page