24

Can anyone suggest any good payment processing libraries for python/django?

Cœur
  • 37,241
  • 25
  • 195
  • 267
sleepyjames
  • 779
  • 5
  • 16

6 Answers6

19

The most developed Django solution is Satchmo with support for Authorize.Net, TrustCommerce, CyberSource, PayPal, Google Checkout, and Protx.

The new kid on the Django block is django-lfs which looks like only support for PayPal at the moment, and even that may not be complete.

For general Python the main player is getpaid

Patrick McElhaney
  • 57,901
  • 40
  • 134
  • 167
Van Gale
  • 43,536
  • 9
  • 71
  • 81
3

There is Django payments application called Mamona which currently supports only PayPal. It can be used with any existing application without changing it's code. Basically, it can use any exiting model as order.

emesik
  • 221
  • 1
  • 9
2

Perhaps you can find some usefull code hints/modules looking at Satchmo: Satchmo Homepage

Andrea Di Persio
  • 3,246
  • 2
  • 24
  • 23
2

Django paypal is very cool. I've used in on couple of my projects. It is relatively easy to integrate with an existing website. Satchmo is good, if you want a full internet store, but if you want to sell just couple items from your website, which is devoted to something else, you will find Satchmo to be very heavy (a lot of dependencies to install, really complicates your admin).

Andrew Kurinnyi
  • 767
  • 6
  • 7
  • +1 I've been experimenting with Django PayPal (http://github.com/johnboxall/django-paypal/tree) lately and I recommend it if you just need a payment library and are using PayPal. – Van Gale May 11 '09 at 23:30
0

I created Paython: https://github.com/abunsen/Paython

Supports a few different processors:

  1. Stripe
  2. Authorize.net
  3. First Data / Linkpoint
  4. Innovative Gateway (from intuit)
  5. Plugnpay
  6. Samurai
Auston
  • 480
  • 1
  • 6
  • 13
0

You may want to take a look at https://github.com/bkeating/python-payflowpro/ which isn't django-specific but works nicely with it or in plain ole python.

Ben Keating
  • 8,206
  • 9
  • 37
  • 37