{ "info": { "author": "Vantiv eCommerce", "author_email": "SDKSupport@vantiv.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Office/Business :: Financial", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "Vantiv eCommerce Python SDK\n=============================\n\n.. _`Vantiv eCommerce`: https://developer.vantiv.com/community/ecommerce\n\nAbout Vantiv eCommerce\n----------------------\n`Vantiv eCommerce`_ 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 SDKt is a Python implementation of the `Vantiv eCommerce`_ 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., 11.0.x supports Vantiv eCommerce XML v11.0). 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 Python2 version 2.7.9 and later, Python3 version 3.4 and later, 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/Vantiv/vantiv-sdk-for-python\n\nExamples can be found here https://github.com/Vantiv/vantiv-sdk-for-python/tree/master/samples\n\nDetail documents can be found here http://vantivecommercepythonsdk.readthedocs.io/en/latest/\n\nPlease contact `Vantiv eCommerce`_ 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\nDependencies\n------------\n* pyxb v1.2.5 : http://pyxb.sourceforge.net/\n* paramiko v1.14.0: http://www.paramiko.org/\n* requests v2.13.0: http://docs.python-requests.org/en/master/\n* six v1.10.0: https://github.com/benjaminp/six\n* xmltodict 0.10.2: https://github.com/martinblech/xmltodict\n\nSetup\n-----\n* Run vantiv_python_sdk_setup and answer the questions.\n\n.. code:: bash\n\n vantiv_python_sdk_setup\n\nEXAMPLE\n-------\nUsing dict\n..........\n.. code-block:: python\n\n #Example for SDK\n from __future__ import print_function, unicode_literals\n\n from vantivsdk import *\n\n # Initial Configuration object. If you have saved configuration in '.vantiv_python_sdk.conf' at system environment\n # variable: VANTIV_SDK_CONFIG or user home directory, the saved configuration will be automatically load.\n conf = utils.Configuration()\n\n # Configuration need following attributes for online request:\n # attributes = default value\n # user = ''\n # password = ''\n # merchantId = ''\n # reportGroup = 'Default Report Group'\n # url = 'https://www.testlitle.com/sandbox/communicator/online'\n # proxy = ''\n # print_xml = False\n\n # Transaction presented by dict\n txn_dict ={\n 'authorization':{\n 'orderId': '1',\n 'amount': 10010,\n 'orderSource': 'ecommerce',\n 'id': 'ThisIsRequiredby11',\n 'billToAddress': {\n 'name': 'John & Mary Smith',\n 'addressLine1': '1 Main St.',\n 'city': 'Burlington',\n 'state': 'MA',\n 'zip': '01803-3747',\n 'country': 'USA'\n },\n 'card': {\n 'number': '4100000000000000',\n 'expDate': '1215',\n 'cardValidationNum' : '349',\n 'type': 'VI'\n },\n 'enhancedData':{\n 'detailTax': [\n {'taxAmount':100},\n {'taxAmount':200},\n ],\n }\n }\n }\n\n # Send request to server and get response as dict\n response = online.request(txn_dict, conf)\n\n print('Message: %s' % response['authorizationResponse']['message'])\n print('CNPTransaction ID: %s' % response['authorizationResponse']['cnpTxnId'])\n\n # Configuration need following attributes for batch request:\n # attributes = default value\n # sftp_username = ''\n # sftp_password = ''\n # sftp_url = ''\n # batch_requests_path = '/tmp/vantiv_sdk_batch_request'\n # batch_response_path = '/tmp/vantiv_sdk_batch_response'\n # fast_url = ''\n # fast_ssl = True\n # fast_port = ''\n # id = ''\n\n # Initial batch transactions container class\n transactions = batch.Transactions()\n\n # Add transaction to batch transactions container\n transactions.add(txn_dict)\n\n # Sent batch to server via socket and get response as dict\n response = batch.stream(transactions, conf)\n\n print('Message: %s' % response['batchResponse']['authorizationResponse']['message'])\n print('CNPTransaction ID: %s' % response['batchResponse']['authorizationResponse']['cnpTxnId'])\n\nUsing object\n............\n.. code-block:: python\n\n #Example for SDK\n from __future__ import print_function, unicode_literals\n\n from vantivsdk import *\n\n # Initial Configuration object. If you have saved configuration in '.vantiv_python_sdk.conf' at system environment\n # variable: VANTIV_SDK_CONFIG or user home directory, the saved configuration will be automatically load.\n conf = utils.Configuration()\n\n # Configuration need following attributes for online request:\n # attributes = default value\n # user = ''\n # password = ''\n # merchantId = ''\n # reportGroup = 'Default Report Group'\n # url = 'https://www.testlitle.com/sandbox/communicator/online'\n # proxy = ''\n # print_xml = False\n\n # Initial Transaction.\n transaction = fields.authorization()\n transaction.orderId = '1'\n transaction.amount = 10010\n transaction.orderSource = 'ecommerce'\n transaction.id = 'ThisIsRequiredby11'\n\n # Create contact object\n contact = fields.contact()\n contact.name = 'John & Mary Smith'\n contact.addressLine1 = '1 Main St.'\n contact.city = 'Burlington'\n contact.state = 'MA'\n contact.zip = '01803-3747'\n contact.country = 'USA'\n # The type of billToAddress is contact\n transaction.billToAddress = contact\n\n # Create cardType object\n card = fields.cardType()\n card.number = '4100000000000000'\n card.expDate = '1215'\n card.cardValidationNum = '349'\n card.type = 'VI'\n # The type of card is cardType\n transaction.card = card\n\n # detail tax\n detailTaxList = list()\n\n detailTax = fields.detailTax()\n detailTax.taxAmount = 100\n detailTaxList.append(detailTax)\n\n detailTax2 = fields.detailTax()\n detailTax2.taxAmount = 200\n detailTaxList.append(detailTax2)\n\n enhancedData = fields.enhancedData()\n enhancedData.detailTax = detailTaxList\n\n # Send request to server and get response as dict\n response = online.request(transaction, conf)\n\n print('Message: %s' % response['authorizationResponse']['message'])\n print('CNPTransaction ID: %s' % response['authorizationResponse']['cnpTxnId'])\n\n # Configuration need following attributes for batch request:\n # attributes = default value\n # sftp_username = ''\n # sftp_password = ''\n # sftp_url = ''\n # batch_requests_path = '/tmp/vantiv_sdk_batch_request'\n # batch_response_path = '/tmp/vantiv_sdk_batch_response'\n # fast_url = ''\n # fast_ssl = True\n # fast_port = ''\n # id = ''\n\n # Initial batch transactions container class\n transactions = batch.Transactions()\n\n # Add transaction to batch transactions container\n transactions.add(transaction)\n\n # Sent batch to server via socket and get response as dict\n response = batch.stream(transactions, conf)\n\n print('Message: %s' % response['batchResponse']['authorizationResponse']['message'])\n print('CNPTransaction ID: %s' % response['batchResponse']['authorizationResponse']['cnpTxnId'])\n\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://developer.vantiv.com/community/ecommerce", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "VantiveCommerceSDK", "package_url": "https://pypi.org/project/VantiveCommerceSDK/", "platform": "", "project_url": "https://pypi.org/project/VantiveCommerceSDK/", "project_urls": { "Homepage": "https://developer.vantiv.com/community/ecommerce" }, "release_url": "https://pypi.org/project/VantiveCommerceSDK/12.7.0/", "requires_dist": [ "PyXB (==1.2.6)", "paramiko (>=1.14.0)", "requests (>=2.13.0)", "six (>=1.10.0)", "xmltodict (>=0.10.2)" ], "requires_python": "", "summary": "Vantiv eCommerce Python SDK", "version": "12.7.0" }, "last_serial": 4694684, "releases": { "11.0.0": [ { "comment_text": "", "digests": { "md5": "092ddbde4ceeefb734f9718828b0910b", "sha256": "7d6b3474c0f48b4f04a16df4aff479adf3b5724ff57650c8bdb3b43970e782ad" }, "downloads": -1, "filename": "VantiveCommerceSDK-11.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "092ddbde4ceeefb734f9718828b0910b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 147512, "upload_time": "2017-06-23T15:03:40", "url": "https://files.pythonhosted.org/packages/9d/bd/4ed0e752ac74f5bbfc267e43e7168277497ccbeff0cda693b1d6fdabe1b9/VantiveCommerceSDK-11.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d3c36e68358a5af60da088119ba6c150", "sha256": "e19a1a8de0e712800571a7e341d61dcccf5134f7a385840e82d7f6d22794f395" }, "downloads": -1, "filename": "VantiveCommerceSDK-11.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d3c36e68358a5af60da088119ba6c150", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 147508, "upload_time": "2017-06-23T15:03:42", "url": "https://files.pythonhosted.org/packages/1b/bf/6f05ba33dafad4ce4a666bb9eb767a48a877bf90b73a6e21f62695888cc5/VantiveCommerceSDK-11.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a3b260d77c6ccf80a484e392e693e32d", "sha256": "5643efe609af43f6bfe61111f0e27a87539289fe5b3ab1b6d7acf599a3c9e3a8" }, "downloads": -1, "filename": "VantiveCommerceSDK-11.0.0.tar.gz", "has_sig": false, "md5_digest": "a3b260d77c6ccf80a484e392e693e32d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 131991, "upload_time": "2017-06-23T15:03:43", "url": "https://files.pythonhosted.org/packages/d8/dc/d34fca07f6af9582c2d52cb6f6d614310a11419a6677fe864c53de38d81b/VantiveCommerceSDK-11.0.0.tar.gz" } ], "11.0.1": [ { "comment_text": "", "digests": { "md5": "62e8f16f7b56eee12f1d8cbb23c8334c", "sha256": "14c65e72c65e2add0218aacf35726b1695dfbe200d9ea9f4c83cf83d959b8aba" }, "downloads": -1, "filename": "VantiveCommerceSDK-11.0.1c.tar.gz", "has_sig": false, "md5_digest": "62e8f16f7b56eee12f1d8cbb23c8334c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 134044, "upload_time": "2017-07-03T13:19:03", "url": "https://files.pythonhosted.org/packages/c0/46/479a77cff86a7d4f3ae102f58e84cc1e9783a4887588be62b9736b3bebf9/VantiveCommerceSDK-11.0.1c.tar.gz" } ], "11.0.2": [ { "comment_text": "", "digests": { "md5": "fb1a2a20f724462e6e99e701d0a18f7a", "sha256": "941793d070dd38274831023ec9c769cb7863e03039d003fb96b8b09f41cebb99" }, "downloads": -1, "filename": "VantiveCommerceSDK-11.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fb1a2a20f724462e6e99e701d0a18f7a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 147692, "upload_time": "2017-07-19T20:54:35", "url": "https://files.pythonhosted.org/packages/39/48/ced854abf46d26cfcb5a8eed878bab68d6776aff11ded42bd65f26515354/VantiveCommerceSDK-11.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b776007565d818eb1a8d91f6edbad463", "sha256": "9717ba272d1ef1508a893764cf9d048d5cf338744e1292f64ada05edb4d76a21" }, "downloads": -1, "filename": "VantiveCommerceSDK-11.0.2.tar.gz", "has_sig": false, "md5_digest": "b776007565d818eb1a8d91f6edbad463", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 134194, "upload_time": "2017-07-19T20:56:41", "url": "https://files.pythonhosted.org/packages/47/30/c2d5c202a3486b40fdee3f62fc09c78499f93f7e89e685fa397bd19d48c4/VantiveCommerceSDK-11.0.2.tar.gz" } ], "11.1.0": [ { "comment_text": "", "digests": { "md5": "ff4c334239ef5f810e137112fc2077bd", "sha256": "28cba00187b8dddd64314cca8b57c9a437a593931ed6c02d1d0b77df1f74fde7" }, "downloads": -1, "filename": "VantiveCommerceSDK-11.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ff4c334239ef5f810e137112fc2077bd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 148238, "upload_time": "2017-08-23T14:23:10", "url": "https://files.pythonhosted.org/packages/9c/c1/6d4e9b0ee95dba86ea0d5b38d7cfd3360fa917f9070488412d61eb0be5e1/VantiveCommerceSDK-11.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8dc0f45ee5dad38840c4b8d45dbe6924", "sha256": "7f7ff0cb4d0d06490215193e98ee395e1f434067e943da0d08149edb181ded59" }, "downloads": -1, "filename": "VantiveCommerceSDK-11.1.0.tar.gz", "has_sig": false, "md5_digest": "8dc0f45ee5dad38840c4b8d45dbe6924", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 134754, "upload_time": "2017-08-23T14:23:13", "url": "https://files.pythonhosted.org/packages/b5/ff/0ebfcfe88f78905e8ad46a88d8616315fc2e1734280574ea3c58da864309/VantiveCommerceSDK-11.1.0.tar.gz" } ], "11.4.0": [ { "comment_text": "", "digests": { "md5": "8c342bbd553d224ff15aca697b00b395", "sha256": "068e7c403a2c678bd0802678b22daffd8396066fd792e261608caf6a21cc4f52" }, "downloads": -1, "filename": "VantiveCommerceSDK-11.4.0-py2.7.egg", "has_sig": false, "md5_digest": "8c342bbd553d224ff15aca697b00b395", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 305468, "upload_time": "2018-04-05T15:19:11", "url": "https://files.pythonhosted.org/packages/18/26/13dfa0a66501700214a13016de37295ad03344404290b66022df20d5bccc/VantiveCommerceSDK-11.4.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "497d02dfe0b4aeaf3907f85e1864b389", "sha256": "550c3f9e3d617a8b0fcfb8eddf66bde78d1937424a950fe486a8c664bb4db683" }, "downloads": -1, "filename": "VantiveCommerceSDK-11.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "497d02dfe0b4aeaf3907f85e1864b389", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 151161, "upload_time": "2018-04-05T15:19:09", "url": "https://files.pythonhosted.org/packages/7c/6d/e4891f314a40c62057124964a0b049d9fe87ec13770561f516d72dbf67e8/VantiveCommerceSDK-11.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "684b1215b25b8b2dffd55e9feff890d5", "sha256": "edb7189ac8150c382bcd472338ff9f6456d279f4141eba93d7823869b98f7da3" }, "downloads": -1, "filename": "VantiveCommerceSDK-11.4.0.tar.gz", "has_sig": false, "md5_digest": "684b1215b25b8b2dffd55e9feff890d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 138540, "upload_time": "2018-04-05T15:19:12", "url": "https://files.pythonhosted.org/packages/58/2e/67438c66e967d1575fba79cc9e95f3c9c188248a4de1889b023ba1e62c2b/VantiveCommerceSDK-11.4.0.tar.gz" } ], "12.1.0": [ { "comment_text": "", "digests": { "md5": "d2f52339e097e60d1fc0ab2c8971a75a", "sha256": "05e744a4cc374cfc16f041bf062d0e11291c661755c2e8ae2a1639cbea18df7b" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.1.0-py2.7.egg", "has_sig": false, "md5_digest": "d2f52339e097e60d1fc0ab2c8971a75a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 296696, "upload_time": "2018-04-05T15:22:25", "url": "https://files.pythonhosted.org/packages/44/a2/975587b5e1ff2fa801095db36dd5e6b38aadf4908b044d919c7dee466027/VantiveCommerceSDK-12.1.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "fe348bfa81085f27e289d0a11328b77b", "sha256": "1569351b4c60eb2c8949aeb18c6f2b1aa84021e538b4eaf435d9609d8a101d61" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fe348bfa81085f27e289d0a11328b77b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 146474, "upload_time": "2018-04-05T15:22:23", "url": "https://files.pythonhosted.org/packages/da/4b/5bf8887d7aa701c1baffced2726ec6a88ecc67ef068f5ab84c6ab58be571/VantiveCommerceSDK-12.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "81e5bdb460afd86c09ea76496c97ecc6", "sha256": "ab043a8403eb401c191ea937bbc78bfce9c83a80be33ca1e6eba163bb4bab04d" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.1.0-py3.6.egg", "has_sig": false, "md5_digest": "81e5bdb460afd86c09ea76496c97ecc6", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 283644, "upload_time": "2018-05-22T14:08:49", "url": "https://files.pythonhosted.org/packages/15/f5/c536f490beec66d0d616fe0f56810f1b28d346c69bd8443a31c1f3508700/VantiveCommerceSDK-12.1.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "963aee28c50528020d4f50ae8ab3aca8", "sha256": "119a4b857b96f5cbddfacf11d482693f6dd214176bd6cb540317a63bd1520499" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.1.0.tar.gz", "has_sig": false, "md5_digest": "963aee28c50528020d4f50ae8ab3aca8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133978, "upload_time": "2018-04-05T15:22:27", "url": "https://files.pythonhosted.org/packages/a5/b0/b6abbb81ebccc590dd6c76a066cbe49a1997e353e9bb909bb23488ac448c/VantiveCommerceSDK-12.1.0.tar.gz" } ], "12.3.0": [ { "comment_text": "", "digests": { "md5": "d9a3a8101cc8ec62a527c72a54c7456d", "sha256": "e0aab1fdaf5edc39aa9734c2caea8e995ff491ae2652e787394d468884abb220" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d9a3a8101cc8ec62a527c72a54c7456d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 152032, "upload_time": "2018-05-22T14:11:13", "url": "https://files.pythonhosted.org/packages/56/50/6f250f196f7701e702206799dc3450ec3bd39a38363183c779f89a7d4e6f/VantiveCommerceSDK-12.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5d7e549cfdba123f9e4c4dd07773d662", "sha256": "6f1854e099d56d244385cb36241785eea19684dfe3cccc001fa60187d4388c38" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.3.0-py3.6.egg", "has_sig": false, "md5_digest": "5d7e549cfdba123f9e4c4dd07773d662", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 294517, "upload_time": "2018-05-22T14:11:14", "url": "https://files.pythonhosted.org/packages/f6/9f/97ddc810a757c023ad8e9bd55122a79fd3a9ffd2ee5ecf6a81b31c9b62e1/VantiveCommerceSDK-12.3.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "345cd129dadcf2a82431309e070d1928", "sha256": "c0f9122e040d22f488e21d7eaaf334ec47c17664d8994f3b1f0eeb4568609266" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.3.0.tar.gz", "has_sig": false, "md5_digest": "345cd129dadcf2a82431309e070d1928", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139191, "upload_time": "2018-05-22T14:11:16", "url": "https://files.pythonhosted.org/packages/3d/a1/6feb349e425678a7c5fdd0586347f2174d0a2bd869444d5ab28facfb6b33/VantiveCommerceSDK-12.3.0.tar.gz" } ], "12.5.0": [ { "comment_text": "", "digests": { "md5": "949f3e22123c60b1c17daf02a9e2b40c", "sha256": "619c0ef1cb503c67dd286cd633257e24524ce43dfbd1b340e8d86e37a18fe6b7" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "949f3e22123c60b1c17daf02a9e2b40c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 152902, "upload_time": "2018-10-19T20:30:32", "url": "https://files.pythonhosted.org/packages/77/b7/44ccb25ef6be86d6f16479011aa3e229802e3aaabe40323721681bf4e4ad/VantiveCommerceSDK-12.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2d296f79341ca854e4ede8e812f770b0", "sha256": "72660fa089b9eb91c1deadded242d51434ffe8250aa1eb7c9bb439dbc815db7a" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.5.0-py3.6.egg", "has_sig": false, "md5_digest": "2d296f79341ca854e4ede8e812f770b0", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 296262, "upload_time": "2018-10-19T20:30:34", "url": "https://files.pythonhosted.org/packages/dd/cb/0aa20b9fbc6b410a1f69c3f0ff415e2fc5c7b007e7c38722cc2f399c704d/VantiveCommerceSDK-12.5.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "790a762f9bca0f52e3bdfc9ce5d265e7", "sha256": "31687183b291c9be5e3e60bde4f4daa822ac754699503f1b6392fa7b7d49044c" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.5.0.tar.gz", "has_sig": false, "md5_digest": "790a762f9bca0f52e3bdfc9ce5d265e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139958, "upload_time": "2018-10-19T20:30:36", "url": "https://files.pythonhosted.org/packages/b0/84/6e81cb9403a50b6b8d3a6bec61f8a2730677dae3e0edeb4ee9413223c3ff/VantiveCommerceSDK-12.5.0.tar.gz" } ], "12.7.0": [ { "comment_text": "", "digests": { "md5": "6c01f509ea4cca23b022d3a9d9521937", "sha256": "f0a6bb851a15e16c5dfa7c70b12deb19541c94f8c9703244e3ddb255b2167ed9" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.7.0-py2.7.egg", "has_sig": false, "md5_digest": "6c01f509ea4cca23b022d3a9d9521937", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 320272, "upload_time": "2019-01-14T15:32:02", "url": "https://files.pythonhosted.org/packages/5b/c2/1e422fa40afb510d1ed3d8a64ad6b826eadb85eb9aff8d22cbf8eb0acb91/VantiveCommerceSDK-12.7.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6a44df7a802695a273fb91fb5c4dfdb4", "sha256": "7c3e3ea9505fcc67ad49e36e1302285fd2d26dab2037214600203be7fb4ee039" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a44df7a802695a273fb91fb5c4dfdb4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 157350, "upload_time": "2019-01-14T15:31:59", "url": "https://files.pythonhosted.org/packages/b5/23/f8f8fe1abe7bb672bf5e2338f3b7ce6f47868cdd32610f93ef7f0c07b6a6/VantiveCommerceSDK-12.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c070f1142f236cd2dc1b1f8e0c786b60", "sha256": "31360b08a290050b4ef50270805cffaa8430a5749de886ba1d6f00022fcca9bc" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.7.0.tar.gz", "has_sig": false, "md5_digest": "c070f1142f236cd2dc1b1f8e0c786b60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 143757, "upload_time": "2019-01-14T15:32:04", "url": "https://files.pythonhosted.org/packages/95/f9/e939e4fe6fc6330ad73e1a0571da36082477ce5a384b16a5dfc26b119045/VantiveCommerceSDK-12.7.0.tar.gz" } ], "8.31.0": [ { "comment_text": "", "digests": { "md5": "b2a6a816da4a447cda737c8df4b2ba89", "sha256": "2b3f695bec14a48e26efe3adc48fc9ad6417641e20bd5198f93bff04b952dff4" }, "downloads": -1, "filename": "VantiveCommerceSDK-8.31.0-py2.7.egg", "has_sig": false, "md5_digest": "b2a6a816da4a447cda737c8df4b2ba89", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 279164, "upload_time": "2018-04-05T18:48:23", "url": "https://files.pythonhosted.org/packages/b3/aa/1b3c0e1dd9885ffc70767aff004c7164b253249aa036534889f620e2a2a6/VantiveCommerceSDK-8.31.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "2b0b72bdc380804535d08afec118c568", "sha256": "6f564f56eb20ae8a773c8f00a1d8684866f002abbd76e9af88c10f171dbbc580" }, "downloads": -1, "filename": "VantiveCommerceSDK-8.31.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2b0b72bdc380804535d08afec118c568", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 139803, "upload_time": "2018-04-05T18:48:21", "url": "https://files.pythonhosted.org/packages/2d/b8/bb502157db16844127e595d39235bd867dd7f56e7564b72e978bdae0f6bd/VantiveCommerceSDK-8.31.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "587c1e6ca21acc80bb6e36ef640f3f7a", "sha256": "abdbd82bab6f56b26304e89581ba0f108d92350fb715e6d717d7e729a57e6ce9" }, "downloads": -1, "filename": "VantiveCommerceSDK-8.31.0.tar.gz", "has_sig": false, "md5_digest": "587c1e6ca21acc80bb6e36ef640f3f7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127609, "upload_time": "2018-04-05T18:48:24", "url": "https://files.pythonhosted.org/packages/87/3f/2b204f4827add24744f85e2f93615d16e603ed41b3e2737c1e1c06794616/VantiveCommerceSDK-8.31.0.tar.gz" } ], "9.12.0": [ { "comment_text": "", "digests": { "md5": "90ccd63315750f7c96bf0320291dc0b4", "sha256": "217d32c96d7a8474e58c0ea525298ae2de639a9d3f7b5bdcde39e1742dc5e9bd" }, "downloads": -1, "filename": "VantiveCommerceSDK-9.12.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "90ccd63315750f7c96bf0320291dc0b4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 138451, "upload_time": "2017-06-26T16:19:40", "url": "https://files.pythonhosted.org/packages/9c/8a/9bab23dd325ba493d96cbe827a12f50c15d597c6f6bb1c767161d017b1b6/VantiveCommerceSDK-9.12.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b71a9112a5d6f49a3772ad4d33df208", "sha256": "556e3590cadc67d42bc0fff263dfd4275c00de21450cd40ce560dda257654a4d" }, "downloads": -1, "filename": "VantiveCommerceSDK-9.12.0.tar.gz", "has_sig": false, "md5_digest": "4b71a9112a5d6f49a3772ad4d33df208", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123625, "upload_time": "2017-06-26T16:19:41", "url": "https://files.pythonhosted.org/packages/b1/f3/94276583ea805d6bf0c01afc3f226c88b5af46d76a4d626b2e9c452005a3/VantiveCommerceSDK-9.12.0.tar.gz" } ], "9.12.1": [ { "comment_text": "", "digests": { "md5": "21fff7c23db00f2110c1df225cb9a6f5", "sha256": "c877d09c01ba897b13f2d29fa5f721366479a136597324f66731ecc6d3e09258" }, "downloads": -1, "filename": "VantiveCommerceSDK-9.12.1.tar.gz", "has_sig": false, "md5_digest": "21fff7c23db00f2110c1df225cb9a6f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 125709, "upload_time": "2017-07-03T13:24:52", "url": "https://files.pythonhosted.org/packages/fb/f0/4594f00f73509d1dfd0573946760c4e8e5d5ed8bafbb219955a382b083d4/VantiveCommerceSDK-9.12.1.tar.gz" } ], "9.12.2": [ { "comment_text": "", "digests": { "md5": "27201a571517247f45e1c295772bdbe8", "sha256": "adbf7aefecabe2fd4ad0e91359d8683b477447747033ea5f6f52ccd889bb1635" }, "downloads": -1, "filename": "VantiveCommerceSDK-9.12.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "27201a571517247f45e1c295772bdbe8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 138627, "upload_time": "2017-07-19T20:54:37", "url": "https://files.pythonhosted.org/packages/7d/8c/8d94114d793355199c17827a70b848dda899e4a390c1f175ad96e3f9da24/VantiveCommerceSDK-9.12.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "182a3255dcdf422c2ae2894b56ada8c0", "sha256": "621bd1cddfd5a3005eb6bff8c2ccddae1f7f36a3a9f6301d12f804e1c8675eca" }, "downloads": -1, "filename": "VantiveCommerceSDK-9.12.2-py3-none-any.whl", "has_sig": false, "md5_digest": "182a3255dcdf422c2ae2894b56ada8c0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 138622, "upload_time": "2017-07-19T20:54:40", "url": "https://files.pythonhosted.org/packages/d3/a7/fa5c46d0ad43a0109932f95d2d7b88ec8be9f55abc1365389a891f6698fc/VantiveCommerceSDK-9.12.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "78ec8d9bc88777562ae970e0b2928508", "sha256": "b9d003fb68e837900f738daf7e923a8c324905cacdbaf695e36ba0b283425db7" }, "downloads": -1, "filename": "VantiveCommerceSDK-9.12.2.tar.gz", "has_sig": false, "md5_digest": "78ec8d9bc88777562ae970e0b2928508", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 125915, "upload_time": "2017-07-19T20:57:23", "url": "https://files.pythonhosted.org/packages/6d/ef/eef13efdef2fa41e41efb240e670e5ebfd9dbcd9dc6d006c3ea0de7672b1/VantiveCommerceSDK-9.12.2.tar.gz" } ], "9.14.0": [ { "comment_text": "", "digests": { "md5": "fd2bc5a29064d954cedaf1e92b04a186", "sha256": "a90c1715ae34ab2abbfcc1fc352342ed09571d58f016b582803633a54a1ecb09" }, "downloads": -1, "filename": "VantiveCommerceSDK-9.14.0-py2.7.egg", "has_sig": false, "md5_digest": "fd2bc5a29064d954cedaf1e92b04a186", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 279858, "upload_time": "2018-04-05T15:12:13", "url": "https://files.pythonhosted.org/packages/30/6d/7517697f5cf109b0e56fca6a3a4072cb5e403bdd87d5ee02a5c822f86809/VantiveCommerceSDK-9.14.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "ccc154eb6da8bb9be6fb3a4f03c5da2c", "sha256": "257a025c8588f96d6e89984846e871b84c1e481a1ef81eeaf1edd3ba468c0c0a" }, "downloads": -1, "filename": "VantiveCommerceSDK-9.14.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ccc154eb6da8bb9be6fb3a4f03c5da2c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 140195, "upload_time": "2018-04-05T15:12:11", "url": "https://files.pythonhosted.org/packages/2b/4c/a9a98c80d1d17cbb16b21ab3a22c3940418bb7cd5b4fb4378a021b43e5ae/VantiveCommerceSDK-9.14.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "393dd19cb71987549cfcb9e64e33673b", "sha256": "60938ca73cd60ebcb819d255776bbe335ca2a1e5b63473e33326c9011032cf92" }, "downloads": -1, "filename": "VantiveCommerceSDK-9.14.0.tar.gz", "has_sig": false, "md5_digest": "393dd19cb71987549cfcb9e64e33673b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127997, "upload_time": "2018-04-05T15:12:14", "url": "https://files.pythonhosted.org/packages/47/33/5f37f7b306e93fe63dec8e48fb51e2f12c04aa399dc89acf5e3065622fc2/VantiveCommerceSDK-9.14.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6c01f509ea4cca23b022d3a9d9521937", "sha256": "f0a6bb851a15e16c5dfa7c70b12deb19541c94f8c9703244e3ddb255b2167ed9" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.7.0-py2.7.egg", "has_sig": false, "md5_digest": "6c01f509ea4cca23b022d3a9d9521937", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 320272, "upload_time": "2019-01-14T15:32:02", "url": "https://files.pythonhosted.org/packages/5b/c2/1e422fa40afb510d1ed3d8a64ad6b826eadb85eb9aff8d22cbf8eb0acb91/VantiveCommerceSDK-12.7.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6a44df7a802695a273fb91fb5c4dfdb4", "sha256": "7c3e3ea9505fcc67ad49e36e1302285fd2d26dab2037214600203be7fb4ee039" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a44df7a802695a273fb91fb5c4dfdb4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 157350, "upload_time": "2019-01-14T15:31:59", "url": "https://files.pythonhosted.org/packages/b5/23/f8f8fe1abe7bb672bf5e2338f3b7ce6f47868cdd32610f93ef7f0c07b6a6/VantiveCommerceSDK-12.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c070f1142f236cd2dc1b1f8e0c786b60", "sha256": "31360b08a290050b4ef50270805cffaa8430a5749de886ba1d6f00022fcca9bc" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.7.0.tar.gz", "has_sig": false, "md5_digest": "c070f1142f236cd2dc1b1f8e0c786b60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 143757, "upload_time": "2019-01-14T15:32:04", "url": "https://files.pythonhosted.org/packages/95/f9/e939e4fe6fc6330ad73e1a0571da36082477ce5a384b16a5dfc26b119045/VantiveCommerceSDK-12.7.0.tar.gz" } ] }