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 hashes)

Uploaded Source

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