https://github.com/tivix/satchmo-braintree
Payment module for Satchmo that integrates with the Braintree Payment Solutions gateway.
https://github.com/tivix/satchmo-braintree
Last synced: 6 months ago
JSON representation
Payment module for Satchmo that integrates with the Braintree Payment Solutions gateway.
- Host: GitHub
- URL: https://github.com/tivix/satchmo-braintree
- Owner: Tivix
- License: mit
- Created: 2011-04-21T01:44:44.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-01-11T20:16:12.000Z (over 13 years ago)
- Last Synced: 2025-04-12T04:13:16.471Z (6 months ago)
- Language: Python
- Homepage: http://tivix.com/
- Size: 137 KB
- Stars: 9
- Watchers: 73
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
=================
satchmo-braintree
=================Satchmo is a pretty solid open-source application for building Django powered eCommerce applications. It comes out of the box with support for Authorize.net.
Braintree Payment Solutions ( http://www.braintreepaymentsolutions.com/ ) is an alternative to it, and has amazing customer service, online interface and most importantly a very solid (and well documented) API. Braintree also has a well maintained Python wrapper ( https://github.com/braintree/braintree_python ) which makes it a breeze to integrate with it.
Installation
------------- Install satchmo_braintree (ideally in your virtualenv!) using pip or simply getting a copy of the code and putting it in a directory in your codebase.
- Add ``satchmo_braintree`` to your Django settings ``INSTALLED_APPS``::
INSTALLED_APPS = [
# ...
"satchmo_braintree",
]- You can edit the Merchant ID, Public/Private key values from Braintree within the Satchmo settings screen at http://your-site.com/settings/
This opensource app is brought to you by Tivix, Inc. ( http://tivix.com/ )
========
Versions
========0.1 - First merge
0.2 - Configuration group naming fixes + others (in urls.py for example) that use "satchmo_braintree" everywhere rather than just "braintree"