4

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?

Community
  • 1
  • 1
Buck
  • 731
  • 1
  • 11
  • 23

1 Answers1

6

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

ndpu
  • 22,225
  • 6
  • 54
  • 69
  • 1
    The only other one that looks promising is django-payments at https://github.com/mirumee/django-payments which seems to have quite a few backends also. I have not tried either but would like to know if anyone has used both and has a preference and if so why. – tahoe Jul 25 '17 at 22:52