A Python library for accessing the Auction iPay API
Project description
pyipay
======
A Python library for accessing the Auction's iPay API
Installation
------------
pip install pyipay
Usage
-----
import pyipay
# Creates the API instance
ipay = pyipay.IpayAPI("Your iPay ID", "Your iPay Key")
# Creates an item
item = ipay.create_item(
"Test Item", "Test order", price=10, qty=2, option="Test option",
item_url="http://localhost/item/", thumbnail_url="http://localhost/thumb",
cancellable=True
)
items = (item, )
# Creates an order
order = ipay.create_order(
payment_rule=0, total=20, shipping_price=0, shipping_type=1,
back_url="http://localhost/back", service_url="http://localhost/service",
redirect_url="http://localhost/redirect", address_required=False,
redirection_enabled=True
)
# Places the order
result = ipay.place_order(order, items)
print result
======
A Python library for accessing the Auction's iPay API
Installation
------------
pip install pyipay
Usage
-----
import pyipay
# Creates the API instance
ipay = pyipay.IpayAPI("Your iPay ID", "Your iPay Key")
# Creates an item
item = ipay.create_item(
"Test Item", "Test order", price=10, qty=2, option="Test option",
item_url="http://localhost/item/", thumbnail_url="http://localhost/thumb",
cancellable=True
)
items = (item, )
# Creates an order
order = ipay.create_order(
payment_rule=0, total=20, shipping_price=0, shipping_type=1,
back_url="http://localhost/back", service_url="http://localhost/service",
redirect_url="http://localhost/redirect", address_required=False,
redirection_enabled=True
)
# Places the order
result = ipay.place_order(order, items)
print result
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
pyipay-0.1.1.tar.gz
(3.4 kB
view details)
File details
Details for the file pyipay-0.1.1.tar.gz.
File metadata
- Download URL: pyipay-0.1.1.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a2f8d4bebc608aaff6766c907ab9ddb1a568eb29db2a6687c0b0297fd12ef67
|
|
| MD5 |
16d1540fcd9964c783f9c8eafa90995e
|
|
| BLAKE2b-256 |
d3f98a637d7b25f17dfe3bd7d1af15c0b770591e36d63d40b5ebf16913780df8
|