I need authorize.net integration for subscription payments, likely using CIM. The requirements are simple - recurring monthly payments, with a few different price points. Custom
I realize this is a bit late, but hopefully it helps others.
I recently came across Py-Authorize
which has some great documentation, compared to the other packages available. You can install it via:
pip install Py-Authorize
It seems to install a dependency (colondar
) which when installed via pip
is outdated so you can get the latest (at the time of this writing) by doing the following:
pip install git+git://github.com/Pylons/colander.git@1.0b1
The docs are here: http://vcatalano.github.io/py-authorize/index.html
Works great in my experience, however for the project I am using it on I only needed AuthCapture and not ARB or anything...give it a try. Best package I've found so far.