12👍
Braintree has a Python client library that could give you the quick integration that you’re looking for. Here is the link to the Braintree developer documentation for the Python SDK: https://developers.braintreepayments.com/guides/transactions/python.
2👍
Authorize.net is pretty simple, this question suggested a few Django apps that are at least started: Python/Django: Which authorize.net library should I use?
- [Django]-How to access Enum types in Django templates
- [Django]-How to test auto_now_add in django
- [Django]-Equivalent of PHP "echo something; exit();" with Python/Django?
2👍
I’ve done successful integrations for both Google Checkout and PayPal ExpressCheckout in Django. Both services have stable, well-developed APIs, and neither one was too difficult to implement. There are good Python libraries already written to do the heavy lifting for you, too.
- [Django]-How to implement followers/following in Django
- [Django]-How to make an auto-filled and auto-incrementing field in django admin
- [Django]-How to deal with "SubfieldBase has been deprecated. Use Field.from_db_value instead."
0👍
You may check Django payments app Mamona which I started not so long time ago. It currently handles PayPal only. It doesn’t support refunds and recurring payments yet, but is very simple and can be attached to any other application without changing it’s code.
- [Django]-Is there a way to loop over two lists simultaneously in django?
- [Django]-How does the get_or_create function in Django return two values?
- [Django]-Separating form input and model validation in Django?
0👍
Consider enabling more than one payment gateways. If you add only one, and this gateway fails for some reason you’ll start losing money (actually happened to one of the persons I know).
- [Django]-How to resize an ImageField image before saving it in python Django model
- [Django]-Django.db.utils.ProgrammingError: relation "bot_trade" does not exist
- [Django]-How to force Django models to be released from memory