{ "info": { "author": "Aleksander Sukharev", "author_email": "sambademon@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Environment :: Web Environment", "Intended Audience :: Information Technology", "License :: OSI Approved :: MIT License", "Operating System :: Microsoft", "Operating System :: POSIX", "Operating System :: Unix", "Programming Language :: Python", "Topic :: Office/Business :: Financial", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "litle-sdk-for-python\n====================\n\nAbout Vantiv eCommerce\n------------\n[Vantiv eCommerce](http://www.vantiv.com) powers the payment processing engines for leading companies that sell directly to consumers through internet retail, direct response marketing (TV, radio and telephone), and online services. Vantiv eCommerce is the leading authority in card-not-present (CNP) commerce, transaction processing and merchant services.\n\n\nAbout this SDK\n--------------\nThe Vantiv eCommerce Python SDK is a Python implementation of the [Vantiv eCommerce](http://www.vantiv.com/developers) XML API. This SDK was created to make it as easy as possible to connect to and process payments through Vantiv eCommerce. This SDK utilizes the HTTPS protocol to securely connect to Vantiv eCommerce. Using the SDK requires coordination with the Vantiv eCommerce team to obtain credentials for accessing our systems.\n\nEach Python SDK release supports all of the functionality present in the associated Vantiv eCommerce XML version (e.g., SDK v9.3.2 supports Vantiv eCommerce XML v9.3). Please see the online copy of our XSD for Vantiv eCommerce XML to get more details on what the Vantiv eCommerce payments engine supports .\n\nThis SDK was implemented to support the Python programming language and was created by Vantiv eCommerce Its intended use is for online transaction processing utilizing your account on the Vantiv eCommerce payments engine.\n\nSee LICENSE file for details on using this software.\n\nSource Code available from : https://github.com/LitleCo/litle-sdk-for-Python\n\nPlease contact [Vantiv eCommerce](http://www.vantiv.com/developers) to receive valid merchant credentials and determine which version of the SDK is right for your business requirements or if you require assistance in any other way. You can reach us at sdksupport@Vantiv.com\n\nSDK Python Dependencies\n----------------------\npyxb : available at http://pyxb.sourceforge.net/overview_how.html\n\nmock(only for running tests): available at http://pypi.python.org/pypi/mock\n\nSetup\n-----\n1) To download and install:\n\nUsing pip \n\n>pip install LitleSdkPython\n\nWithout Pip\n\n>wget http://pypi.python.org/packages/source/L/LitleSdkPython/LitleSdkPython-8.13.0.tar.gz#md5=30c83ed753f37482ce5f04e84836a74d\n\n>tar xf LitleSdkPython-VERSION.tar.gz\n\n>cd LitleSdkPython-VERSION\n\n>python setup.py install\n\n2) To run tests see [SDK Testing Info](https://github.com/LitleCo/litle-sdk-for-python/wiki/Testing)\n\n3) Create a python file similar to:\n\n```python\nfrom litleSdkPython.litleOnlineRequest import *\n\nconfig = Configuration()\nconfig.setUser(\"User\")\nconfig.setPassword(\"Pass\")\nconfig.setMerchantId(\"123\")\nconfig.setUrl(\"Sandbox\")\nconfig.setProxy(\"\")\n\n# sale\nsale = litleXmlFields.sale()\nsale.orderId = '1'\nsale.amount = 10010\nsale.orderSource = 'ecommerce'\ncontact = litleXmlFields.contact();\ncontact.name=\"John Smith\"\ncontact.addressLine1=\"1 Main St.\"\ncontact.city=\"Burlington\"\ncontact.state=\"MA\"\ncontact.zip=\"01803-3747\"\ncontact.country=\"USA\"\nsale.billToAddress = contact\ncard = litleXmlFields.cardType()\ncard.number = \"4457010000000009\"\ncard.expDate = \"0112\"\ncard.cardValidationNum = \"349\"\ncard.type = 'VI'\nsale.card = card\n\nlitleXml = litleOnlineRequest(config)\nresponse = litleXml.sendRequest(sale)\n\n# display results\nprint \"Message: \" + response.message\nprint \"LitleTransaction ID: \" + str(response.transactionResponse.litleTxnId)\n```\nNOTE: you may need to edit the proxy to to work for your system\n\n4) Next run this file. You should see the following result.\n\n Message: Valid Format\n Litle Transaction ID: \n \nFor information on configuration settings go to: [SDK Config Info](https://github.com/LitleCo/litle-sdk-for-python/wiki/Config-Settings).\n\nMore examples can be found here [Python Gists](https://gist.github.com/gists/search?q=Litle+Python+SDK&page=1)\n\nPlease contact Vantiv eCommerce with any further questions. You can reach us at SDKSupport@Vantiv.com\n", "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/SambaDemon/litle-sdk-for-python", "keywords": null, "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "LitleSdkPython3", "package_url": "https://pypi.org/project/LitleSdkPython3/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/LitleSdkPython3/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/SambaDemon/litle-sdk-for-python" }, "release_url": "https://pypi.org/project/LitleSdkPython3/9.3.1b0/", "requires_dist": null, "requires_python": null, "summary": "Vantiv eCommerce SDK for Python", "version": "9.3.1b0" }, "last_serial": 2261869, "releases": { "9.3.1b0": [ { "comment_text": "", "digests": { "md5": "6c6608d78dd5f8ba17c5e5ee39e6c9a0", "sha256": "e2f131a8e8788a808c2591b4f120afa7962a6cee49fa3df00154df0e82f0e4c6" }, "downloads": -1, "filename": "LitleSdkPython3-9.3.1b0.tar.gz", "has_sig": false, "md5_digest": "6c6608d78dd5f8ba17c5e5ee39e6c9a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197633, "upload_time": "2016-08-04T12:54:18", "url": "https://files.pythonhosted.org/packages/83/90/0b2028598a2853a6b3f75dd44412c8bd17cfeb6d4a0d3fe406f8a54265b7/LitleSdkPython3-9.3.1b0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6c6608d78dd5f8ba17c5e5ee39e6c9a0", "sha256": "e2f131a8e8788a808c2591b4f120afa7962a6cee49fa3df00154df0e82f0e4c6" }, "downloads": -1, "filename": "LitleSdkPython3-9.3.1b0.tar.gz", "has_sig": false, "md5_digest": "6c6608d78dd5f8ba17c5e5ee39e6c9a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197633, "upload_time": "2016-08-04T12:54:18", "url": "https://files.pythonhosted.org/packages/83/90/0b2028598a2853a6b3f75dd44412c8bd17cfeb6d4a0d3fe406f8a54265b7/LitleSdkPython3-9.3.1b0.tar.gz" } ] }