Python/Django: Which authorize.net library should I use?

前端 未结 6 868
滥情空心
滥情空心 2021-01-30 04:29

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

6条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-30 05:13

    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.

提交回复
热议问题