[Django]-What is the Simplest Possible Payment Gateway to Implement? (using Django)

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?

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.

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.

👤emesik

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

👤jb.

Leave a comment