Skip to main content

Python client for Paynova's API.

Project description

Paynova API Python Client

This is an overview of the Paynova API Python Client using Paynova REST API (Aero). More in-depth information can be found in the Wiki.

Installation

pip install paynova-api-python-client

Python 2.7, Python 3.4, PyPy are supported

Usage

Create Paynova client:

from paynova_api_python_client import Paynova
client = Paynova('<MERCHANT ID>', '<API Password>')

Call service

response = client.create_order({
    'orderNumber': 'order-id-0001',
    'currencyCode': 'EUR',
    'totalAmount': 10
})

Examples

Paynova requester settings

  • live - If live = True live endpoint will be used

Errors

If Paynova return an error, PaynovaException will be raised

from paynova_api_python_client import PaynovaException

try:
    response = client.create_order()
except PaynovaException as e:
    # process exception
    # e.errorNumber, e.statusKey, e.statusMessage, e.errors
    pass

Tests

At first make sure that you are in virtualenv.

Install all dependencies:

make setup

To run tests:

make tests

License

MIT licence

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

paynova-api-python-client-0.1.0.tar.gz (4.8 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