Skip to main content

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

Project details


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 hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page