{ "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": null, "project_url": "https://pypi.org/project/VantiveCommerceSDK/", "project_urls": { "Homepage": "https://developer.vantiv.com/community/ecommerce" }, "release_url": "https://pypi.org/project/VantiveCommerceSDK/12.24.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.24.0", "yanked": false, "yanked_reason": null }, "last_serial": 13413663, "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", "upload_time_iso_8601": "2017-06-23T15:03:40.074365Z", "url": "https://files.pythonhosted.org/packages/9d/bd/4ed0e752ac74f5bbfc267e43e7168277497ccbeff0cda693b1d6fdabe1b9/VantiveCommerceSDK-11.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2017-06-23T15:03:42.100946Z", "url": "https://files.pythonhosted.org/packages/1b/bf/6f05ba33dafad4ce4a666bb9eb767a48a877bf90b73a6e21f62695888cc5/VantiveCommerceSDK-11.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2017-06-23T15:03:43.626089Z", "url": "https://files.pythonhosted.org/packages/d8/dc/d34fca07f6af9582c2d52cb6f6d614310a11419a6677fe864c53de38d81b/VantiveCommerceSDK-11.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "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", "upload_time_iso_8601": "2017-07-03T13:19:03.979804Z", "url": "https://files.pythonhosted.org/packages/c0/46/479a77cff86a7d4f3ae102f58e84cc1e9783a4887588be62b9736b3bebf9/VantiveCommerceSDK-11.0.1c.tar.gz", "yanked": false, "yanked_reason": null } ], "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", "upload_time_iso_8601": "2017-07-19T20:54:35.391337Z", "url": "https://files.pythonhosted.org/packages/39/48/ced854abf46d26cfcb5a8eed878bab68d6776aff11ded42bd65f26515354/VantiveCommerceSDK-11.0.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2017-07-19T20:56:41.468652Z", "url": "https://files.pythonhosted.org/packages/47/30/c2d5c202a3486b40fdee3f62fc09c78499f93f7e89e685fa397bd19d48c4/VantiveCommerceSDK-11.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "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", "upload_time_iso_8601": "2017-08-23T14:23:10.232865Z", "url": "https://files.pythonhosted.org/packages/9c/c1/6d4e9b0ee95dba86ea0d5b38d7cfd3360fa917f9070488412d61eb0be5e1/VantiveCommerceSDK-11.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2017-08-23T14:23:13.283027Z", "url": "https://files.pythonhosted.org/packages/b5/ff/0ebfcfe88f78905e8ad46a88d8616315fc2e1734280574ea3c58da864309/VantiveCommerceSDK-11.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "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", "upload_time_iso_8601": "2018-04-05T15:19:11.441454Z", "url": "https://files.pythonhosted.org/packages/18/26/13dfa0a66501700214a13016de37295ad03344404290b66022df20d5bccc/VantiveCommerceSDK-11.4.0-py2.7.egg", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2018-04-05T15:19:09.725122Z", "url": "https://files.pythonhosted.org/packages/7c/6d/e4891f314a40c62057124964a0b049d9fe87ec13770561f516d72dbf67e8/VantiveCommerceSDK-11.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2018-04-05T15:19:12.884700Z", "url": "https://files.pythonhosted.org/packages/58/2e/67438c66e967d1575fba79cc9e95f3c9c188248a4de1889b023ba1e62c2b/VantiveCommerceSDK-11.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "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", "upload_time_iso_8601": "2018-04-05T15:22:25.608635Z", "url": "https://files.pythonhosted.org/packages/44/a2/975587b5e1ff2fa801095db36dd5e6b38aadf4908b044d919c7dee466027/VantiveCommerceSDK-12.1.0-py2.7.egg", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2018-04-05T15:22:23.421346Z", "url": "https://files.pythonhosted.org/packages/da/4b/5bf8887d7aa701c1baffced2726ec6a88ecc67ef068f5ab84c6ab58be571/VantiveCommerceSDK-12.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2018-05-22T14:08:49.132119Z", "url": "https://files.pythonhosted.org/packages/15/f5/c536f490beec66d0d616fe0f56810f1b28d346c69bd8443a31c1f3508700/VantiveCommerceSDK-12.1.0-py3.6.egg", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2018-04-05T15:22:27.458029Z", "url": "https://files.pythonhosted.org/packages/a5/b0/b6abbb81ebccc590dd6c76a066cbe49a1997e353e9bb909bb23488ac448c/VantiveCommerceSDK-12.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "12.10.0": [ { "comment_text": "", "digests": { "md5": "5575ab5f877e01d8ba51077090a8c436", "sha256": "a4ccf7fc35316f95f90574df8a3f0d75aefb121fb7af64efe8a2f95f03e550f8" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5575ab5f877e01d8ba51077090a8c436", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 160814, "upload_time": "2019-11-04T16:30:00", "upload_time_iso_8601": "2019-11-04T16:30:00.728569Z", "url": "https://files.pythonhosted.org/packages/4b/00/11870402cbd1e3acc3094c8e76720e150782f25df4afb0fdf9e934f0ab27/VantiveCommerceSDK-12.10.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e7e69efad94039ca35d19bf99a259ddb", "sha256": "397d0b57acffd7d164e163eacdba3a4ce9d947662e48440e3bc5dada044658f3" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.10.0-py3.6.egg", "has_sig": false, "md5_digest": "e7e69efad94039ca35d19bf99a259ddb", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 313315, "upload_time": "2019-11-04T16:30:03", "upload_time_iso_8601": "2019-11-04T16:30:03.213099Z", "url": "https://files.pythonhosted.org/packages/70/5a/fe329f07a56546f808bbcb26e6a3bfd3ea2bdc8ffb60cc1c4c3a7c87f2b3/VantiveCommerceSDK-12.10.0-py3.6.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34186373e3d663bd89c16a89c07367b8", "sha256": "b16ba1883e471bf15065ae69a39e3c6378ce34e2ab233947a395f3c14c74e290" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.10.0.tar.gz", "has_sig": false, "md5_digest": "34186373e3d663bd89c16a89c07367b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147221, "upload_time": "2019-11-04T16:30:05", "upload_time_iso_8601": "2019-11-04T16:30:05.615834Z", "url": "https://files.pythonhosted.org/packages/52/96/4b09dcfac30734b5583983975921ee6e0640debc5211a21e626e020bbe70/VantiveCommerceSDK-12.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "12.10.1": [ { "comment_text": "", "digests": { "md5": "9ac69579adc08000ef82468d35ef200e", "sha256": "3af36159709dd10bf05163df0565f6ffe2a82c06fe640af22802d13ee03cabde" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.10.1-py2.7.egg", "has_sig": false, "md5_digest": "9ac69579adc08000ef82468d35ef200e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 327389, "upload_time": "2019-12-10T15:47:10", "upload_time_iso_8601": "2019-12-10T15:47:10.338336Z", "url": "https://files.pythonhosted.org/packages/2b/f4/f035260c7b7df1bfce6cca0364e917ef198ffae505ea43149dd8acbe653e/VantiveCommerceSDK-12.10.1-py2.7.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e898340598fe3692d032dba6c9f1dacd", "sha256": "da14e232ca5629b1cc0baf39501bea082c5861ded2cb7f151aca525f3c3c4408" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.10.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e898340598fe3692d032dba6c9f1dacd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 160853, "upload_time": "2019-12-10T15:47:08", "upload_time_iso_8601": "2019-12-10T15:47:08.435148Z", "url": "https://files.pythonhosted.org/packages/03/84/36f9b43bcd28cd65dee26378c4e9e7da18e4cc0b9f887a63563a9dbf1e14/VantiveCommerceSDK-12.10.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "046f8fdf0eb9a308ec0c1d4597069a9f", "sha256": "f03f3c35832025e3da2c919aace50b7a35a33a8d704ab3f987d10b14fb2077eb" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.10.1.tar.gz", "has_sig": false, "md5_digest": "046f8fdf0eb9a308ec0c1d4597069a9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147264, "upload_time": "2019-12-10T15:47:12", "upload_time_iso_8601": "2019-12-10T15:47:12.607404Z", "url": "https://files.pythonhosted.org/packages/f2/ef/e9f6c61a0eafafc68642211f7b0b542e1cfcff0cde7d04083be11249d3dd/VantiveCommerceSDK-12.10.1.tar.gz", "yanked": false, "yanked_reason": null } ], "12.11.0": [ { "comment_text": "", "digests": { "md5": "7d38560717799a9d852ac5f7a420dbe5", "sha256": "4bc5f3fd9a26f0cbdcaee5722f500323024344f77c4971facaafd1b0743fc48d" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.11.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7d38560717799a9d852ac5f7a420dbe5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 162324, "upload_time": "2020-01-30T17:25:33", "upload_time_iso_8601": "2020-01-30T17:25:33.716476Z", "url": "https://files.pythonhosted.org/packages/88/9b/95ab97ab47790e951c30251e69c06912eab2d77e3121426b27e4fc3a0b97/VantiveCommerceSDK-12.11.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ffb73598bdeddd41446488f6a09e88af", "sha256": "a65b57cb9127974b40a94fcc20692245f31b63be6d1a21431d62a740d99d53b2" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.11.0-py3.6.egg", "has_sig": false, "md5_digest": "ffb73598bdeddd41446488f6a09e88af", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 316283, "upload_time": "2020-01-30T17:25:35", "upload_time_iso_8601": "2020-01-30T17:25:35.949725Z", "url": "https://files.pythonhosted.org/packages/29/82/57236ec25eb91c88a2a0c7b5b3465f13917cc560c84025ddb63ed3409708/VantiveCommerceSDK-12.11.0-py3.6.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3bcfc04c8fe9692163499463dbb29dcb", "sha256": "3706ce1ef316795f9d7b1433be717effc43bc3ce290cb013480bdf8663d016cb" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.11.0.tar.gz", "has_sig": false, "md5_digest": "3bcfc04c8fe9692163499463dbb29dcb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 149032, "upload_time": "2020-01-30T17:25:38", "upload_time_iso_8601": "2020-01-30T17:25:38.271775Z", "url": "https://files.pythonhosted.org/packages/36/42/66474bfc0b575df9b9c3e7be49649c55a42f25adb475d9a7664639d90b2e/VantiveCommerceSDK-12.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "12.13.0": [ { "comment_text": "", "digests": { "md5": "cec75897668a777b469a64d8c23e2255", "sha256": "ae7699831246c6cd625bee3ba104dae11d654e1a9a9dc612ef076a58f09aeda7" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.13.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cec75897668a777b469a64d8c23e2255", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 165411, "upload_time": "2020-06-24T00:07:47", "upload_time_iso_8601": "2020-06-24T00:07:47.786521Z", "url": "https://files.pythonhosted.org/packages/d6/2b/05b19cdb35ae100280f5442e29d8bfeefafafcf835ff13f6bb985aa10b54/VantiveCommerceSDK-12.13.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d27ec8e45464965e1843c62979b95cf3", "sha256": "c051be155324cf43b565bec087169d8b943bf952bf70b48f1e1d79b8c7d1bee8" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.13.0-py3.6.egg", "has_sig": false, "md5_digest": "d27ec8e45464965e1843c62979b95cf3", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 322525, "upload_time": "2020-06-24T00:07:49", "upload_time_iso_8601": "2020-06-24T00:07:49.629765Z", "url": "https://files.pythonhosted.org/packages/09/80/3d8a3f4ea60e64aba8216506d27fc0f439cebee2b2dc6b5f07b0f1d74513/VantiveCommerceSDK-12.13.0-py3.6.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7b4427b1756b0f42b595edfab6b55fc1", "sha256": "e737ab506bc4d84637207adf81498d2971026d0ed3c208994cc93a7a84e38bd9" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.13.0.tar.gz", "has_sig": false, "md5_digest": "7b4427b1756b0f42b595edfab6b55fc1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 151999, "upload_time": "2020-06-24T00:07:51", "upload_time_iso_8601": "2020-06-24T00:07:51.085229Z", "url": "https://files.pythonhosted.org/packages/66/0f/4381def5d9e5a43fc8a5b15c0ded8128758a809b5b9d9096b97c52766173/VantiveCommerceSDK-12.13.0.tar.gz", "yanked": false, "yanked_reason": null } ], "12.14.0": [ { "comment_text": "", "digests": { "md5": "37771c855b77d2217ec2edbee3744301", "sha256": "1b1f5c17906bc50ed03e444c32c9106e830ef2ffec36b973f87d2e6e02dcce8d" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.14.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "37771c855b77d2217ec2edbee3744301", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 176680, "upload_time": "2020-08-03T21:26:21", "upload_time_iso_8601": "2020-08-03T21:26:21.846543Z", "url": "https://files.pythonhosted.org/packages/e3/b1/a657218e338b34f8abcf41da6c3e3ea7642293b65023a18fe39fecde6ff5/VantiveCommerceSDK-12.14.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ffe2a0f547ab10f009380a834b2e916d", "sha256": "725b434655bd0feacf9d991e5861650921e4a6d9d0f84543d4f2f5a28f0ac1f0" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.14.0-py3.6.egg", "has_sig": false, "md5_digest": "ffe2a0f547ab10f009380a834b2e916d", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 336164, "upload_time": "2020-08-03T21:26:23", "upload_time_iso_8601": "2020-08-03T21:26:23.637050Z", "url": "https://files.pythonhosted.org/packages/4f/79/4f45b54aac803a30054e0efd46667705efd9054c58c51b98f1cab10160ac/VantiveCommerceSDK-12.14.0-py3.6.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e8e7c573d55047ceb0b3a7f4b477145", "sha256": "119cd7c6c7e7fdf11f8173b323902aaf88cce8d00c4612eaa262fb28a84357f1" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.14.0.tar.gz", "has_sig": false, "md5_digest": "0e8e7c573d55047ceb0b3a7f4b477145", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162229, "upload_time": "2020-08-03T21:26:25", "upload_time_iso_8601": "2020-08-03T21:26:25.224754Z", "url": "https://files.pythonhosted.org/packages/86/0a/bd54314fc03977dfc076ea8a3743c92150804663d9189a3b3a5e86a52117/VantiveCommerceSDK-12.14.0.tar.gz", "yanked": false, "yanked_reason": null } ], "12.15.0": [ { "comment_text": "", "digests": { "md5": "24e8a405dc1e03f00c1acfbc89148413", "sha256": "b4fadfa7fdf23085d319d1a131db172c83bbedc8587d183443e95ee443fe7303" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.15.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "24e8a405dc1e03f00c1acfbc89148413", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 163772, "upload_time": "2020-10-09T17:53:12", "upload_time_iso_8601": "2020-10-09T17:53:12.106301Z", "url": "https://files.pythonhosted.org/packages/b9/12/b03dedf4185e9c6853d21b53a6b93003efbfcfccf456b12cb4fd688c5415/VantiveCommerceSDK-12.15.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "079a48bc6326ede98d47f5f0e69e3b72", "sha256": "d7198429a528e36b1cad6b5cfe7decc0531b51c9267a5fe560610ee15f521649" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.15.0-py3.6.egg", "has_sig": false, "md5_digest": "079a48bc6326ede98d47f5f0e69e3b72", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 324600, "upload_time": "2020-10-09T17:53:13", "upload_time_iso_8601": "2020-10-09T17:53:13.462868Z", "url": "https://files.pythonhosted.org/packages/dc/be/5de3fdd9065f855becb5d20e00cc49ea60a6c5ad07cbbe8a414821b5fa2b/VantiveCommerceSDK-12.15.0-py3.6.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "01fa2a0692e6e2f9fb6e0465e6e2be4a", "sha256": "d38b38f45011030e97f14a1f43d1a307f2416e2f1947e1a62ec8442c56b31774" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.15.0.tar.gz", "has_sig": false, "md5_digest": "01fa2a0692e6e2f9fb6e0465e6e2be4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 153024, "upload_time": "2020-10-09T17:53:15", "upload_time_iso_8601": "2020-10-09T17:53:15.050858Z", "url": "https://files.pythonhosted.org/packages/cf/e1/b473cbf6a9c1ee217dea64fe9c3f4d7b662ad5e7d37dd7496307c08e3d2c/VantiveCommerceSDK-12.15.0.tar.gz", "yanked": false, "yanked_reason": null } ], "12.16.0": [ { "comment_text": "", "digests": { "md5": "9076e98d112697853de23e04716ed767", "sha256": "cec31596c4230766dd776d0224673e40057483b96ef7a16b08065bcdb296d639" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.16.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9076e98d112697853de23e04716ed767", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 166005, "upload_time": "2020-10-15T15:07:58", "upload_time_iso_8601": "2020-10-15T15:07:58.877141Z", "url": "https://files.pythonhosted.org/packages/05/f8/ab845eb2f55caae0e9334429611598f5b32d80ada39feb222351fd3e6bc8/VantiveCommerceSDK-12.16.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a49b82db2342a5084057988a535fba7", "sha256": "0fe09cd5e33b0756820b185d7f9148ce266d2c0c1a6ede0cc50d6f51e22cc3a0" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.16.0-py3.6.egg", "has_sig": false, "md5_digest": "4a49b82db2342a5084057988a535fba7", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 328439, "upload_time": "2020-10-15T15:08:00", "upload_time_iso_8601": "2020-10-15T15:08:00.409121Z", "url": "https://files.pythonhosted.org/packages/e6/e3/9764651f6107f744868e1e41ffaab4c0b0a08d9cb36faa05920a0973b5f5/VantiveCommerceSDK-12.16.0-py3.6.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3e7450b4a80e2c126d17fd0b52ebc9e", "sha256": "7cc19b6a0d3d463854cfb910680dbe6d0cdc4cec2380362f74bdaa3f45dd8494" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.16.0.tar.gz", "has_sig": false, "md5_digest": "c3e7450b4a80e2c126d17fd0b52ebc9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155380, "upload_time": "2020-10-15T15:08:02", "upload_time_iso_8601": "2020-10-15T15:08:02.198974Z", "url": "https://files.pythonhosted.org/packages/43/76/3c53cf7ff88b6a851aced4f00de2ad8ebc516af174883973b11637310461/VantiveCommerceSDK-12.16.0.tar.gz", "yanked": false, "yanked_reason": null } ], "12.17.0": [ { "comment_text": "", "digests": { "md5": "ba6fb5db6d83497dc169d09f6c03d31f", "sha256": "c0689ccba29d11096de43e94573e745a1f8990ee97c2b59da41f127a44112bee" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.17.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ba6fb5db6d83497dc169d09f6c03d31f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 166985, "upload_time": "2020-10-27T20:49:10", "upload_time_iso_8601": "2020-10-27T20:49:10.948337Z", "url": "https://files.pythonhosted.org/packages/38/31/1b8b54465a211f7fe48af2da0785f9da28bafdc83af55583a78a9768ee34/VantiveCommerceSDK-12.17.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e464fc134d387d2b19283bc053b64d36", "sha256": "adb7a4942df83e29ace6bb3ea3c126988c66d3eb84eb7298c2ea721da445c902" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.17.0-py3.6.egg", "has_sig": false, "md5_digest": "e464fc134d387d2b19283bc053b64d36", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 329992, "upload_time": "2020-10-27T20:49:12", "upload_time_iso_8601": "2020-10-27T20:49:12.711393Z", "url": "https://files.pythonhosted.org/packages/66/cf/ce3d2264798d0b4320f157f0e6b192df580232d02409ab62b4cfd617a719/VantiveCommerceSDK-12.17.0-py3.6.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff0e07efe6bb007b4508389ab608207e", "sha256": "173e48b9686743480f2083df3f7ccb0d380b1fff3c706ba45ef2d60a24f1992e" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.17.0.tar.gz", "has_sig": false, "md5_digest": "ff0e07efe6bb007b4508389ab608207e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 156221, "upload_time": "2020-10-27T20:49:14", "upload_time_iso_8601": "2020-10-27T20:49:14.026556Z", "url": "https://files.pythonhosted.org/packages/0b/d1/7afb14071ccae1fa1f7e26591638e217d86bc4da29204df2cd7f78fb3e63/VantiveCommerceSDK-12.17.0.tar.gz", "yanked": false, "yanked_reason": null } ], "12.22.0": [ { "comment_text": "", "digests": { "md5": "6160d8324af25c75f3ecdb3393b18b7d", "sha256": "f329d7e19d322fed7aba4e6cfb3189408c6cc0e5fff0c79abc05a1730e96b90b" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.22.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6160d8324af25c75f3ecdb3393b18b7d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 169581, "upload_time": "2022-03-28T16:07:33", "upload_time_iso_8601": "2022-03-28T16:07:33.412652Z", "url": "https://files.pythonhosted.org/packages/60/f1/848f812f49f1a92fea50031f9f47821e1f3f534352e5efdb43901c3a4aaf/VantiveCommerceSDK-12.22.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04a9a0b2b8b393ee8a9f833215246dba", "sha256": "426978d2422fc1e787c1abecdf40cad72f47fec9f4df954bc65928ce09919bcc" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.22.0-py3.6.egg", "has_sig": false, "md5_digest": "04a9a0b2b8b393ee8a9f833215246dba", "packagetype": "bdist_egg", "python_version": "12.22.0", "requires_python": null, "size": 168007, "upload_time": "2022-03-28T16:07:35", "upload_time_iso_8601": "2022-03-28T16:07:35.060363Z", "url": "https://files.pythonhosted.org/packages/6a/9b/f2c3fb4b8032aea0b69b1167842ce8c2a4ad376c91d456334377d68f215a/VantiveCommerceSDK-12.22.0-py3.6.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb5e0daa8c28ea6acd21e323a0d271f5", "sha256": "ec40248d59693dff70393e2bf8887e16740d50c6c99648933dba42759f87d692" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.22.0.tar.gz", "has_sig": false, "md5_digest": "cb5e0daa8c28ea6acd21e323a0d271f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158165, "upload_time": "2022-03-28T16:07:36", "upload_time_iso_8601": "2022-03-28T16:07:36.966096Z", "url": "https://files.pythonhosted.org/packages/1e/33/deedc2fd4636f9d6d326e68fbbb7f3be152a91abc518e099769a88830ce1/VantiveCommerceSDK-12.22.0.tar.gz", "yanked": false, "yanked_reason": null } ], "12.24.0": [ { "comment_text": "", "digests": { "md5": "c88a0e3e8d52f20b9badbb5c00aed92f", "sha256": "8a04483270636428352b9d375bd9d451e6f78b486bcd71616ffc8d0ca2a018df" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.24.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c88a0e3e8d52f20b9badbb5c00aed92f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 177117, "upload_time": "2022-04-05T12:25:18", "upload_time_iso_8601": "2022-04-05T12:25:18.774444Z", "url": "https://files.pythonhosted.org/packages/e0/4f/28fc0ee75e92297b9d64b42ac3e1725ca740aacfe8ea19721c34d2773b85/VantiveCommerceSDK-12.24.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cdfb98ce0ec3a6c1caad466f72fe5b41", "sha256": "0f6b660bb840498ef80ee83a6379d21e5aa046a5e68db28f2b1e9471d01ed348" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.24.0-py3.6.egg", "has_sig": false, "md5_digest": "cdfb98ce0ec3a6c1caad466f72fe5b41", "packagetype": "bdist_egg", "python_version": "12.24.0", "requires_python": null, "size": 175622, "upload_time": "2022-04-05T12:25:20", "upload_time_iso_8601": "2022-04-05T12:25:20.477716Z", "url": "https://files.pythonhosted.org/packages/d1/02/5e345c734a8ee5345bc8519d04d87e13d946b50956544e3f63dcc1ffd022/VantiveCommerceSDK-12.24.0-py3.6.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f3032f6fe2e83053c58f5f774c52f775", "sha256": "a0b3d9efc41320acd9c0cd5282cce83cae075e30d7daa45ff1ce7128553acef9" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.24.0.tar.gz", "has_sig": false, "md5_digest": "f3032f6fe2e83053c58f5f774c52f775", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 164617, "upload_time": "2022-04-05T12:25:22", "upload_time_iso_8601": "2022-04-05T12:25:22.009653Z", "url": "https://files.pythonhosted.org/packages/76/8c/d254e3db572f04a15533264d432e764f4937bfbbf0c83653f37bfe0730f7/VantiveCommerceSDK-12.24.0.tar.gz", "yanked": false, "yanked_reason": null } ], "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", "upload_time_iso_8601": "2018-05-22T14:11:13.269668Z", "url": "https://files.pythonhosted.org/packages/56/50/6f250f196f7701e702206799dc3450ec3bd39a38363183c779f89a7d4e6f/VantiveCommerceSDK-12.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2018-05-22T14:11:14.872911Z", "url": "https://files.pythonhosted.org/packages/f6/9f/97ddc810a757c023ad8e9bd55122a79fd3a9ffd2ee5ecf6a81b31c9b62e1/VantiveCommerceSDK-12.3.0-py3.6.egg", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2018-05-22T14:11:16.508819Z", "url": "https://files.pythonhosted.org/packages/3d/a1/6feb349e425678a7c5fdd0586347f2174d0a2bd869444d5ab28facfb6b33/VantiveCommerceSDK-12.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "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", "upload_time_iso_8601": "2018-10-19T20:30:32.554082Z", "url": "https://files.pythonhosted.org/packages/77/b7/44ccb25ef6be86d6f16479011aa3e229802e3aaabe40323721681bf4e4ad/VantiveCommerceSDK-12.5.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2018-10-19T20:30:34.585436Z", "url": "https://files.pythonhosted.org/packages/dd/cb/0aa20b9fbc6b410a1f69c3f0ff415e2fc5c7b007e7c38722cc2f399c704d/VantiveCommerceSDK-12.5.0-py3.6.egg", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2018-10-19T20:30:36.273314Z", "url": "https://files.pythonhosted.org/packages/b0/84/6e81cb9403a50b6b8d3a6bec61f8a2730677dae3e0edeb4ee9413223c3ff/VantiveCommerceSDK-12.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "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", "upload_time_iso_8601": "2019-01-14T15:32:02.029781Z", "url": "https://files.pythonhosted.org/packages/5b/c2/1e422fa40afb510d1ed3d8a64ad6b826eadb85eb9aff8d22cbf8eb0acb91/VantiveCommerceSDK-12.7.0-py2.7.egg", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2019-01-14T15:31:59.820177Z", "url": "https://files.pythonhosted.org/packages/b5/23/f8f8fe1abe7bb672bf5e2338f3b7ce6f47868cdd32610f93ef7f0c07b6a6/VantiveCommerceSDK-12.7.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2019-01-14T15:32:04.042062Z", "url": "https://files.pythonhosted.org/packages/95/f9/e939e4fe6fc6330ad73e1a0571da36082477ce5a384b16a5dfc26b119045/VantiveCommerceSDK-12.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "12.8.0": [ { "comment_text": "", "digests": { "md5": "4db94873ef4f3812a7e6dc8f950a334e", "sha256": "65f54fd7ace05b77b14d850a458b169ba4147ddf2d1db1cdda0c551ec7bc1d0a" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.8.0-py2.7.egg", "has_sig": false, "md5_digest": "4db94873ef4f3812a7e6dc8f950a334e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 321053, "upload_time": "2019-10-29T15:21:30", "upload_time_iso_8601": "2019-10-29T15:21:30.444785Z", "url": "https://files.pythonhosted.org/packages/b6/9b/69ae8a17d46e8db414cf6d8af95ee2f0ec7f5469425717b5a710c4240340/VantiveCommerceSDK-12.8.0-py2.7.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b7767f07cc3e746778e857571e4a0a8", "sha256": "5fdca8c0e3b6a95a730cbc33a396e8cfa71c207b6ee5c1ad522b294c5e3b7922" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5b7767f07cc3e746778e857571e4a0a8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 157649, "upload_time": "2019-10-29T15:21:28", "upload_time_iso_8601": "2019-10-29T15:21:28.349318Z", "url": "https://files.pythonhosted.org/packages/63/cf/82a2bba50db553f08d7db60eb8d3fa863d8164908b999c393a862d9a0274/VantiveCommerceSDK-12.8.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71f0d636a6b3813825039a343fe7cdb5", "sha256": "4487aa22b27a4e6b1b1f130758e3bac0ff616622ac104f13d11def816be50e16" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.8.0.tar.gz", "has_sig": false, "md5_digest": "71f0d636a6b3813825039a343fe7cdb5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 144064, "upload_time": "2019-10-29T15:21:32", "upload_time_iso_8601": "2019-10-29T15:21:32.430781Z", "url": "https://files.pythonhosted.org/packages/13/6f/7ab4b6b9d7e1a4bb3482cce7628de70d3bb7b2fe6d6546c7c949ee980662/VantiveCommerceSDK-12.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "12.9.0": [ { "comment_text": "", "digests": { "md5": "832f950c06ca534cc159f40a06b0a862", "sha256": "b6033016026d922bd06146cac458ebe61ff138d6a4362adef0b056adf91fab83" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.9.0-py2.7.egg", "has_sig": false, "md5_digest": "832f950c06ca534cc159f40a06b0a862", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 331695, "upload_time": "2019-10-29T15:36:04", "upload_time_iso_8601": "2019-10-29T15:36:04.820933Z", "url": "https://files.pythonhosted.org/packages/1b/47/789b30ca048753adae6f4dc919eeed70aa5fde1b7c25200d3cca7c9b580d/VantiveCommerceSDK-12.9.0-py2.7.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "57f5370aa71a0710dd634705fc773b2c", "sha256": "754534e1911ccf3b5efdab8fced338f02dc1af71b851d12ccff36d5cd5613cad" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "57f5370aa71a0710dd634705fc773b2c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 162909, "upload_time": "2019-10-29T15:36:02", "upload_time_iso_8601": "2019-10-29T15:36:02.904280Z", "url": "https://files.pythonhosted.org/packages/a5/4f/f95df8fa6bd9017b78053acf67b116c582443ea5c0d94b9f537d272e8dee/VantiveCommerceSDK-12.9.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ca0e5dbd200b330205809caad1fa152", "sha256": "7c12252d3f4f43c9a9bbda38069457c69f9a9ab53252aca6353fcfa81eadb982" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.9.0.tar.gz", "has_sig": false, "md5_digest": "6ca0e5dbd200b330205809caad1fa152", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 149460, "upload_time": "2019-10-29T15:36:06", "upload_time_iso_8601": "2019-10-29T15:36:06.992473Z", "url": "https://files.pythonhosted.org/packages/30/a7/83760451aea1cd77cd0521fc65db3f8a79a5120067bd9a1849ba7a644079/VantiveCommerceSDK-12.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "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", "upload_time_iso_8601": "2018-04-05T18:48:23.049201Z", "url": "https://files.pythonhosted.org/packages/b3/aa/1b3c0e1dd9885ffc70767aff004c7164b253249aa036534889f620e2a2a6/VantiveCommerceSDK-8.31.0-py2.7.egg", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2018-04-05T18:48:21.451019Z", "url": "https://files.pythonhosted.org/packages/2d/b8/bb502157db16844127e595d39235bd867dd7f56e7564b72e978bdae0f6bd/VantiveCommerceSDK-8.31.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2018-04-05T18:48:24.533272Z", "url": "https://files.pythonhosted.org/packages/87/3f/2b204f4827add24744f85e2f93615d16e603ed41b3e2737c1e1c06794616/VantiveCommerceSDK-8.31.0.tar.gz", "yanked": false, "yanked_reason": null } ], "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", "upload_time_iso_8601": "2017-06-26T16:19:40.492612Z", "url": "https://files.pythonhosted.org/packages/9c/8a/9bab23dd325ba493d96cbe827a12f50c15d597c6f6bb1c767161d017b1b6/VantiveCommerceSDK-9.12.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2017-06-26T16:19:41.997951Z", "url": "https://files.pythonhosted.org/packages/b1/f3/94276583ea805d6bf0c01afc3f226c88b5af46d76a4d626b2e9c452005a3/VantiveCommerceSDK-9.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "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", "upload_time_iso_8601": "2017-07-03T13:24:52.416471Z", "url": "https://files.pythonhosted.org/packages/fb/f0/4594f00f73509d1dfd0573946760c4e8e5d5ed8bafbb219955a382b083d4/VantiveCommerceSDK-9.12.1.tar.gz", "yanked": false, "yanked_reason": null } ], "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", "upload_time_iso_8601": "2017-07-19T20:54:37.218465Z", "url": "https://files.pythonhosted.org/packages/7d/8c/8d94114d793355199c17827a70b848dda899e4a390c1f175ad96e3f9da24/VantiveCommerceSDK-9.12.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2017-07-19T20:54:40.683084Z", "url": "https://files.pythonhosted.org/packages/d3/a7/fa5c46d0ad43a0109932f95d2d7b88ec8be9f55abc1365389a891f6698fc/VantiveCommerceSDK-9.12.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2017-07-19T20:57:23.212894Z", "url": "https://files.pythonhosted.org/packages/6d/ef/eef13efdef2fa41e41efb240e670e5ebfd9dbcd9dc6d006c3ea0de7672b1/VantiveCommerceSDK-9.12.2.tar.gz", "yanked": false, "yanked_reason": null } ], "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", "upload_time_iso_8601": "2018-04-05T15:12:13.354568Z", "url": "https://files.pythonhosted.org/packages/30/6d/7517697f5cf109b0e56fca6a3a4072cb5e403bdd87d5ee02a5c822f86809/VantiveCommerceSDK-9.14.0-py2.7.egg", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2018-04-05T15:12:11.704694Z", "url": "https://files.pythonhosted.org/packages/2b/4c/a9a98c80d1d17cbb16b21ab3a22c3940418bb7cd5b4fb4378a021b43e5ae/VantiveCommerceSDK-9.14.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "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", "upload_time_iso_8601": "2018-04-05T15:12:14.887942Z", "url": "https://files.pythonhosted.org/packages/47/33/5f37f7b306e93fe63dec8e48fb51e2f12c04aa399dc89acf5e3065622fc2/VantiveCommerceSDK-9.14.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c88a0e3e8d52f20b9badbb5c00aed92f", "sha256": "8a04483270636428352b9d375bd9d451e6f78b486bcd71616ffc8d0ca2a018df" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.24.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c88a0e3e8d52f20b9badbb5c00aed92f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 177117, "upload_time": "2022-04-05T12:25:18", "upload_time_iso_8601": "2022-04-05T12:25:18.774444Z", "url": "https://files.pythonhosted.org/packages/e0/4f/28fc0ee75e92297b9d64b42ac3e1725ca740aacfe8ea19721c34d2773b85/VantiveCommerceSDK-12.24.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cdfb98ce0ec3a6c1caad466f72fe5b41", "sha256": "0f6b660bb840498ef80ee83a6379d21e5aa046a5e68db28f2b1e9471d01ed348" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.24.0-py3.6.egg", "has_sig": false, "md5_digest": "cdfb98ce0ec3a6c1caad466f72fe5b41", "packagetype": "bdist_egg", "python_version": "12.24.0", "requires_python": null, "size": 175622, "upload_time": "2022-04-05T12:25:20", "upload_time_iso_8601": "2022-04-05T12:25:20.477716Z", "url": "https://files.pythonhosted.org/packages/d1/02/5e345c734a8ee5345bc8519d04d87e13d946b50956544e3f63dcc1ffd022/VantiveCommerceSDK-12.24.0-py3.6.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f3032f6fe2e83053c58f5f774c52f775", "sha256": "a0b3d9efc41320acd9c0cd5282cce83cae075e30d7daa45ff1ce7128553acef9" }, "downloads": -1, "filename": "VantiveCommerceSDK-12.24.0.tar.gz", "has_sig": false, "md5_digest": "f3032f6fe2e83053c58f5f774c52f775", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 164617, "upload_time": "2022-04-05T12:25:22", "upload_time_iso_8601": "2022-04-05T12:25:22.009653Z", "url": "https://files.pythonhosted.org/packages/76/8c/d254e3db572f04a15533264d432e764f4937bfbbf0c83653f37bfe0730f7/VantiveCommerceSDK-12.24.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }