{ "info": { "author": "Andrey Kolpakov", "author_email": "aakolpakov@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Operating System :: Unix", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: Implementation :: PyPy" ], "description": "Paynova API Python Client\n=========================\n\nThis is an overview of the Paynova API Python Client using `Paynova REST\nAPI `__ (Aero).\nMore in-depth information can be found in the\n`Wiki `__.\n\nFor Django, see\n`django-paynova `__ package\n\nInstallation\n============\n\n::\n\n pip install paynova-api-python-client\n\nPython 2.6, 2.7, 3.3, 3.4, PyPy are supported\n\nUsage\n=====\n\nCreate Paynova client:\n\n.. code:: python\n\n from paynova_api_python_client import Paynova\n client = Paynova('', '')\n\nCall service\n\n.. code:: python\n\n response = client.create_order({\n 'orderNumber': 'order-id-0001',\n 'currencyCode': 'EUR',\n 'totalAmount': 10\n })\n\nExamples\n~~~~~~~~\n\n- `Create simple order <./examples/create_simple_order.py>`__\n- `Create detailed order <./examples/create_detailed_order.py>`__\n- `Initital payment <./examples/initial_payment.py>`__\n\nFor live version\n~~~~~~~~~~~~~~~~\n\n.. code:: python\n\n client = Paynova('', '', live=True)\n\nErrors\n~~~~~~\n\nIf Paynova return an error, **PaynovaException** will be raised\n\n.. code:: python\n\n from paynova_api_python_client import PaynovaException\n\n try:\n response = client.create_order()\n except PaynovaException as e:\n # process exception\n # e.errorNumber, e.statusKey, e.statusMessage, e.errors\n pass\n\nTests\n=====\n\nAt first make sure that you are in virtualenv.\n\nInstall all dependencies:\n\n::\n\n make setup\n\nTo run tests:\n\n::\n\n make tests\n\nLicense\n=======\n\n`MIT licence <./LICENSE>`__", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/akolpakov/paynova-api-python-client", "keywords": "paynova API python client", "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "paynova-api-python-client", "package_url": "https://pypi.org/project/paynova-api-python-client/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/paynova-api-python-client/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/akolpakov/paynova-api-python-client" }, "release_url": "https://pypi.org/project/paynova-api-python-client/0.1.1/", "requires_dist": null, "requires_python": null, "summary": "Python client for Paynova's API", "version": "0.1.1" }, "last_serial": 1455736, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "4f01af9c9042a9ff46e56a9fb0572bd6", "sha256": "9c1c06a93b3d8066a2a2a35a96c88c0440afd743bd4cf525efe37581139926b1" }, "downloads": -1, "filename": "paynova-api-python-client-0.1.0.tar.gz", "has_sig": false, "md5_digest": "4f01af9c9042a9ff46e56a9fb0572bd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4767, "upload_time": "2015-02-25T16:56:13", "url": "https://files.pythonhosted.org/packages/fa/f0/9a3731d7ce6323c52da3598608b2b1ad74fd965f9482fabaaab82909e156/paynova-api-python-client-0.1.0.tar.gz" } ], "0.1.1": [] }, "urls": [] }