GetPaid authorize.net payment processor functionality
Project description
This package provides authorizedotnet payment processor functionality for the getpaid framework.
CHANGES
0.3.1 (2009-03-13)
added M2Crypto in the setup.py dependencies [lucielejard]
0.3 (2008-08-29)
Added buildout files and general text documents to project root.
Removed setup.cfg
0.2 (2008-08-21)
Eggified package
Detailed Documentation
GetPaid Authorize.Net Payment Processor
Store Specific Processor Setting Tests
First let’s create a store class to work with:
>>> from getpaid.core import interfaces >>> from zope.app.annotations import IAttributeAnnotatable >>> from zope.interface import implements >>> class Store: ... implements( interfaces.IStore, IAttributeAnnotatable ) >>> store = Store()
And configure our payment processor:
>>> interfaces.I >>
Now let’s create an order to process:
>>> from getpaid.core import order, item, cart >>> order1 = order.Order() >>> my_cart = cart.ShoppingCart() >>> my_cart['abc'] = abc = item.LineItem() >>> abc.cost = 22.20; abc.name = 'abc'; abc.quantity = 3 >>> str(order1.getTotalPrice()) '22.20'
Capturing/Charing an Order
Refunding an Order
Voiding an Order
Download
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Close
Hashes for getpaid.authorizedotnet-0.3.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f347c518a57513f701bd95c27fc12cdf25f541f1c71698a1314df8dfdd14f81b |
|
MD5 | c5d6efb9b34bb790a1dae54fc1758d6a |
|
BLAKE2b-256 | eaddd155fb5320fcda6c80a6f42e8f9a6215a2201bc0c56d93b82c104e34943e |