Good solution for Payment Processing in Django

django, django-paypal, payment-processing, python

Solution

Try Django-Merchant https://github.com/agiliq/merchant

Django-Merchant is a django application that enables you to use multiple payment processors from a single API.

Gateways

Following gateways are supported:

Authorize.net Paypal Eway Braintree Payments (Server to Server) Stripe Paylane WePay Beanstream Chargebee Global Iris

Off-Site Processing

Paypal RBS WorldPay Google Checkout Amazon FPS Braintree Payments (Transparent Redirect) Stripe.js eWAY Authorize.net Direct Post Method Global Iris RealMPI

Other

Bitcoin

Problem

I am trying to pick a payment processing solution for my Django app and would like to know of some good general solutions. The following look rather promising: https://www.djangopackages.com/grids/g/payment-processing/ (General solution) https://github.com/johnboxall/django-paypal (paypal only) This is a link to a bit dated version of the question: Django payment proccessing Question: What is/are some secure and current Django app solutions for payment processing?

Original source

Related problems