{ "info": { "author": "Bigcommerce Engineering", "author_email": "api@bigcommerce.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Topic :: Internet :: WWW/HTTP", "Topic :: Office/Business", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "Bigcommerce API Python Client\n==================================\n\n|Build Status| |Package Version|\n\nWrapper over the ``requests`` library for communicating with the Bigcommerce v2 API.\n\nInstall with ``pip install bigcommerce`` or ``easy_install bigcommerce``. Tested with\npython 2.7.7+ and 3.4, and only requires ``requests`` and ``pyjwt``.\n\nUsage\n-----\n\nConnecting\n~~~~~~~~~~\n\n.. code:: python\n\n import bigcommerce\n\n # Public apps (OAuth)\n # Access_token is optional, if you don't have one you can use oauth_fetch_token (see below)\n api = bigcommerce.api.BigcommerceApi(client_id='', store_hash='', access_token='')\n\n # Private apps (Basic Auth)\n api = bigcommerce.api.BigcommerceApi(host='store.mybigcommerce.com', basic_auth=('username', 'api token'))\n\n``BigcommerceApi`` also provides two helper methods for connection with OAuth2:\n\n- ``api.oauth_fetch_token(client_secret, code, context, scope, redirect_uri)``\n -- fetches and returns an access token for your application. As a\n side effect, configures ``api`` to be ready for use.\n\n- ``BigcommerceApi.oauth_verify_payload(signed_payload, client_secret)``\n -- Returns user data from a signed payload.\n\nAccessing and objects\n~~~~~~~~~~~~~~~~~~~~~\n\nThe ``api`` object provides access to each API resource, each of which\nprovides CRUD operations, depending on capabilities of the resource:\n\n.. code:: python\n\n api.Products.all() # GET /products (returns only a single page of products as a list)\n api.Products.iterall() # GET /products (autopaging generator that yields all\n # products from all pages product by product.)\n api.Products.get(1) # GET /products/1\n api.Products.create(name='', type='', ...) # POST /products\n api.Products.get(1).update(price='199.90') # PUT /products/1\n api.Products.delete_all() # DELETE /products\n api.Products.get(1).delete() # DELETE /products/1\n api.Products.count() # GET /products/count\n\nThe client provides full access to subresources, both as independent\nresources:\n\n::\n\n api.ProductOptions.get(1) # GET /products/1/options\n api.ProductOptions.get(1, 2) # GET /products/1/options/2\n\nAnd as helper methods on the parent resource:\n\n::\n\n api.Products.get(1).options() # GET /products/1/options\n api.Products.get(1).options(1) # GET /products/1/options/1\n\nThese subresources implement CRUD methods in exactly the same way as\nregular resources:\n\n::\n\n api.Products.get(1).options(1).delete()\n\nFilters\n~~~~~~~\n\nFilters can be applied to ``all`` methods as keyword arguments:\n\n.. code:: python\n\n customer = api.Customers.all(first_name='John', last_name='Smith')[0]\n orders = api.Orders.all(customer_id=customer.id)\n\nError handling\n~~~~~~~~~~~~~~\n\nMinimal validation of data is performed by the client, instead deferring\nthis to the server. A ``HttpException`` will be raised for any unusual\nstatus code:\n\n- 3xx status code: ``RedirectionException``\n- 4xx status code: ``ClientRequestException``\n- 5xx status code: ``ServerException``\n\nThe low level API\n~~~~~~~~~~~~~~~~~\n\nThe high level API provided by ``bigcommerce.api.BigcommerceApi`` is a\nwrapper around a lower level api in ``bigcommerce.connection``. This can\nbe accessed through ``api.connection``, and provides helper methods for\nget/post/put/delete operations.\n\nManaging OAuth Rate Limits\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nYou can optionally pass a ``rate_limiting_management`` object into ``bigcommerce.api.BigcommerceApi`` or ``bigcommerce.connection.OAuthConnection`` for automatic rate limiting management, ex:\n\n.. code:: python\n\n import bigcommerce\n\n api = bigcommerce.api.BigcommerceApi(client_id='', store_hash='', access_token=''\n rate_limiting_management= {'min_requests_remaining':2,\n 'wait':True,\n 'callback_function':None})\n\n``min_requests_remaining`` will determine the number of requests remaining in the rate limiting window which will invoke the management function\n\n``wait`` determines whether or not we should automatically sleep until the end of the window\n\n``callback_function`` is a function to run when the rate limiting management function fires. It will be invoked *after* the wait, if enabled.\n\n``callback_args`` is an optional parameter which is a dictionary passed as an argument to the callback function.\n\nFor simple applications which run API requests in serial (and aren't interacting with many different stores, or use a separate worker for each store) the simple sleep function may work well enough for most purposes. For more complex applications that may be parallelizing API requests on a given store, it's adviseable to write your own callback function for handling the rate limiting, use a ``min_requests_remaining`` higher than your concurrency, and not use the default wait function.\n\nFurther documentation\n---------------------\n\nFull documentation of the API is available on the Bigcommerce\n`Developer Portal `__\n\nTo do\n-----\n\n- Automatic enumeration of multiple page responses for subresources.\n\n.. |Build Status| image:: https://api.travis-ci.org/bigcommerce/bigcommerce-api-python.svg?branch=master\n :target: https://travis-ci.org/bigcommerce/bigcommerce-api-python\n.. |Package Version| image:: https://badge.fury.io/py/bigcommerce.svg\n :target: https://pypi.python.org/pypi/bigcommerce\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "https://pypi.python.org/packages/source/b/bigcommerce/bigcommerce-0.20.1.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/bigcommerce/bigcommerce-api-python", "keywords": "bigcommerce,api,v2,client", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "bigcommerce", "package_url": "https://pypi.org/project/bigcommerce/", "platform": "", "project_url": "https://pypi.org/project/bigcommerce/", "project_urls": { "Download": "https://pypi.python.org/packages/source/b/bigcommerce/bigcommerce-0.20.1.tar.gz", "Homepage": "https://github.com/bigcommerce/bigcommerce-api-python" }, "release_url": "https://pypi.org/project/bigcommerce/0.20.1/", "requires_dist": [ "requests (>=2.1.0)", "pyjwt (>=1.4.0)" ], "requires_python": "", "summary": "Connect Python applications with the Bigcommerce API", "version": "0.20.1" }, "last_serial": 4757445, "releases": { "0.0.1": [], "0.10.2": [ { "comment_text": "", "digests": { "md5": "7e4f295454beb0bfaa078a10b4f815f0", "sha256": "cd77e700b739a29aaa027abc6786d1a94bf1c2f56b78b61cc87416eb2159b2c7" }, "downloads": -1, "filename": "bigcommerce-0.10.2.tar.gz", "has_sig": false, "md5_digest": "7e4f295454beb0bfaa078a10b4f815f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12356, "upload_time": "2014-02-10T23:49:03", "url": "https://files.pythonhosted.org/packages/9e/b6/d0098b7ce3c2c94033170bfdee999efde859d5ac502a4986bcaab7bb567a/bigcommerce-0.10.2.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "8cc475a80f2615cf98c89b05fb669308", "sha256": "e1f5a0122ce15ea3181a3e36b71f6ff33b5f9af985677069232ab8a947fbce19" }, "downloads": -1, "filename": "bigcommerce-0.11.0.tar.gz", "has_sig": false, "md5_digest": "8cc475a80f2615cf98c89b05fb669308", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14419, "upload_time": "2015-03-13T21:01:36", "url": "https://files.pythonhosted.org/packages/ec/cf/ef442dc998cdd076ffecd04648af80eb7f3507201826eafb7914cb55dda0/bigcommerce-0.11.0.tar.gz" } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "3215ba167689092dbfd10576745b1153", "sha256": "baa8e23f299affb873cf8fbb5ac627fd2ad164c0c719679af13255fc83a1710e" }, "downloads": -1, "filename": "BIGCOMMERCE-0.13.0.tar.gz", "has_sig": false, "md5_digest": "3215ba167689092dbfd10576745b1153", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14648, "upload_time": "2015-10-28T22:57:53", "url": "https://files.pythonhosted.org/packages/9b/2e/ce22007058d46e8c5b1feb602c9f0e6e754d07b23b2d8fc134b9401cdbdb/BIGCOMMERCE-0.13.0.tar.gz" } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "ce44346a58a135ef288caabd0a1ef406", "sha256": "e65da7e20ffdd0562065df297f31ab3643533de7a05318d72ae5a5e76ccd8f81" }, "downloads": -1, "filename": "bigcommerce-0.14.0-py2-none-any.whl", "has_sig": false, "md5_digest": "ce44346a58a135ef288caabd0a1ef406", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24014, "upload_time": "2016-02-22T00:34:15", "url": "https://files.pythonhosted.org/packages/69/1b/6fcda23a6ccb5c2ef6d3fc093a7eb169ed0207d01cbe454acc782c895970/bigcommerce-0.14.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5d1434228352d3e182d51665f80743e9", "sha256": "bfeb39e1a5e0e1e86dfe3b958e17a02fb4b3279a115cdeeed1e4b834095c1fcf" }, "downloads": -1, "filename": "bigcommerce-0.14.0.tar.gz", "has_sig": false, "md5_digest": "5d1434228352d3e182d51665f80743e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14693, "upload_time": "2016-02-22T00:33:58", "url": "https://files.pythonhosted.org/packages/6e/17/465feb2a8c05e13ad8baeef218882b398d8a909c81c19791284e8b47efd0/bigcommerce-0.14.0.tar.gz" } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "d7de4c1ff404ddd468a6313864e66bd0", "sha256": "d3bde61170fa3a2f5424b102455845db18ae8512bf2143145f227d0e41619ebf" }, "downloads": -1, "filename": "bigcommerce-0.15.0.tar.gz", "has_sig": false, "md5_digest": "d7de4c1ff404ddd468a6313864e66bd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15349, "upload_time": "2016-07-07T13:12:39", "url": "https://files.pythonhosted.org/packages/6b/98/0e07eab7e2fb7703f2f9586b038ee3b3e5d6eaf5dddd28c5ee63abdd8d42/bigcommerce-0.15.0.tar.gz" } ], "0.16.0": [ { "comment_text": "", "digests": { "md5": "92760aeab2faf67a87625f0a44bb203a", "sha256": "d8fdd365e72001e96ef913c92b353ef414aad02255afaaafc032cdce6314c562" }, "downloads": -1, "filename": "bigcommerce-0.16.0-py2-none-any.whl", "has_sig": false, "md5_digest": "92760aeab2faf67a87625f0a44bb203a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 25296, "upload_time": "2016-08-15T15:31:22", "url": "https://files.pythonhosted.org/packages/f8/f7/113f3d83fdd12e2689e5d51ce0b54982e1cfa5ed587b80bd5ab002619b57/bigcommerce-0.16.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cecd9e628d0734b9cb55c09f96e92b22", "sha256": "b7a1c49b187bde59b343b0ac9a05d27264d567b8d8c3d149e54ea5c8c83db21e" }, "downloads": -1, "filename": "bigcommerce-0.16.0.tar.gz", "has_sig": false, "md5_digest": "cecd9e628d0734b9cb55c09f96e92b22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15482, "upload_time": "2016-08-15T15:31:07", "url": "https://files.pythonhosted.org/packages/cc/32/8f74dc60f8eb0fd999e0a31a88a8702680ab1d1eb0346360292cd31ed8e7/bigcommerce-0.16.0.tar.gz" } ], "0.17.0": [ { "comment_text": "", "digests": { "md5": "4f6c4341ea5975cbdc8736ab7dfa0b85", "sha256": "e0db1ec6294399c35a5c6c3fc6f87991606b711a79c6b3b555f82e2ff6702aa7" }, "downloads": -1, "filename": "bigcommerce-0.17.0.tar.gz", "has_sig": false, "md5_digest": "4f6c4341ea5975cbdc8736ab7dfa0b85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15535, "upload_time": "2016-10-05T04:58:59", "url": "https://files.pythonhosted.org/packages/9f/cd/8d971c021ee7bb0a34f341a46246d34072452817627265d80ec252373a0e/bigcommerce-0.17.0.tar.gz" } ], "0.17.1": [ { "comment_text": "", "digests": { "md5": "c44c28d1637bd3863b64aabd98c7ba3e", "sha256": "ae404933c7da332f48e7f00f4486e628e5a4d347bd5924a91cee84b4bca4e687" }, "downloads": -1, "filename": "bigcommerce-0.17.1-py2-none-any.whl", "has_sig": false, "md5_digest": "c44c28d1637bd3863b64aabd98c7ba3e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 25477, "upload_time": "2016-12-21T19:33:59", "url": "https://files.pythonhosted.org/packages/d2/84/a71a972490ed6e0242e1cfb04c6e29477cd5a72d8eea134ea0342730d3b3/bigcommerce-0.17.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "783f54a9d5a463a380a9a9ee5c3a0ebe", "sha256": "c41723cda021e6e38a4835f55dfddacccebe8ed9f3c63626d6017d4956f48a5b" }, "downloads": -1, "filename": "bigcommerce-0.17.1.tar.gz", "has_sig": false, "md5_digest": "783f54a9d5a463a380a9a9ee5c3a0ebe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15707, "upload_time": "2016-12-21T19:33:55", "url": "https://files.pythonhosted.org/packages/e7/76/154a65e919dbbf116054a78cf30073d5a8bbed740750b2e2fe71ed32d937/bigcommerce-0.17.1.tar.gz" } ], "0.17.2": [ { "comment_text": "", "digests": { "md5": "3c1424bbc1fb615e2694d5f9fb7dfaf2", "sha256": "db8fee9d1c14e348ee38c01324d3056262ad93e564177a73f22aa49a7c874d85" }, "downloads": -1, "filename": "bigcommerce-0.17.2.tar.gz", "has_sig": false, "md5_digest": "3c1424bbc1fb615e2694d5f9fb7dfaf2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16630, "upload_time": "2017-04-01T21:14:38", "url": "https://files.pythonhosted.org/packages/18/17/c5dac557bf2a129b6882e061da6645aad318ead8ef748d195ec5a8f2fead/bigcommerce-0.17.2.tar.gz" } ], "0.17.3": [ { "comment_text": "", "digests": { "md5": "a1f38bd468de2189708eb356d7d9bd98", "sha256": "5715e2ae793d382e9d94ba97f92b7b58d65fdfc9cc9c87268f24565414791fe7" }, "downloads": -1, "filename": "bigcommerce-0.17.3-py3-none-any.whl", "has_sig": false, "md5_digest": "a1f38bd468de2189708eb356d7d9bd98", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25671, "upload_time": "2017-07-20T17:04:06", "url": "https://files.pythonhosted.org/packages/c2/68/d133d4416574d736bac184704717816342e3b817cf1f0c07ab231f32666b/bigcommerce-0.17.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "52a0e32aaa897cbb318fccb2e96d216b", "sha256": "ca906c0bcb6fdaec84242e18adf962995366e25b0818680b7e03249dad0ac6ef" }, "downloads": -1, "filename": "bigcommerce-0.17.3.tar.gz", "has_sig": false, "md5_digest": "52a0e32aaa897cbb318fccb2e96d216b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16704, "upload_time": "2017-07-20T17:04:08", "url": "https://files.pythonhosted.org/packages/b0/6f/225f87bc87fdd132bc943aca8bc80b0f1604d1538d1c7629ded0ee9c827d/bigcommerce-0.17.3.tar.gz" } ], "0.18.0": [ { "comment_text": "", "digests": { "md5": "969456a3ea7b793f1d8fd39e0b1fc0c9", "sha256": "05caed476986275d0eadfeb896e5b2b0c6dfcdc76a2f8525e198ebb378ec8b19" }, "downloads": -1, "filename": "bigcommerce-0.18.0.tar.gz", "has_sig": false, "md5_digest": "969456a3ea7b793f1d8fd39e0b1fc0c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18883, "upload_time": "2018-03-21T14:56:23", "url": "https://files.pythonhosted.org/packages/e9/62/93773be735a81cef0bac75b46c811b83ddb56e22a378a8fb8a8c5a888bc4/bigcommerce-0.18.0.tar.gz" } ], "0.18.1": [ { "comment_text": "", "digests": { "md5": "32424717e584874dd290d873a1ab2d60", "sha256": "787ae844e780cfcd3260d781787013ee0863dc01ec212378be4e355654baa402" }, "downloads": -1, "filename": "bigcommerce-0.18.1.tar.gz", "has_sig": false, "md5_digest": "32424717e584874dd290d873a1ab2d60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18978, "upload_time": "2018-07-08T03:26:40", "url": "https://files.pythonhosted.org/packages/a7/c6/7bc69aa1a2a51841fb32b22ded379b8b89b1070b8e3048b7627ffb85fde2/bigcommerce-0.18.1.tar.gz" } ], "0.18.2": [ { "comment_text": "", "digests": { "md5": "9cfec7316606859fd12232b17f365aa3", "sha256": "679ca7f3b734c03226d69f96bf0f892cb0529454c89ebacd78edf38cc8ad7c81" }, "downloads": -1, "filename": "bigcommerce-0.18.2.tar.gz", "has_sig": false, "md5_digest": "9cfec7316606859fd12232b17f365aa3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19062, "upload_time": "2018-07-13T14:29:25", "url": "https://files.pythonhosted.org/packages/3e/bd/a955489b0712dd288a246430a72e7d42140ef3fcf350c4f32f86b393c742/bigcommerce-0.18.2.tar.gz" } ], "0.19.0": [ { "comment_text": "", "digests": { "md5": "82d1c2126d84a2c846d4b89fabc00d37", "sha256": "7efdfd4800cb0873505956d2230937dfbb4930bea5b962cd5b5051159a730475" }, "downloads": -1, "filename": "bigcommerce-0.19.0.tar.gz", "has_sig": false, "md5_digest": "82d1c2126d84a2c846d4b89fabc00d37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19130, "upload_time": "2018-10-25T01:22:11", "url": "https://files.pythonhosted.org/packages/fb/07/7c67140ead4073a70ab752cb4b4f631e530725a7d02168e8456de6169002/bigcommerce-0.19.0.tar.gz" } ], "0.19.1": [ { "comment_text": "", "digests": { "md5": "21c9c6a0740bee4a55b4f32a39f97749", "sha256": "486257e0654daf31a7eef0d1c2a210a95891f5359916c919b14e1172222f403c" }, "downloads": -1, "filename": "bigcommerce-0.19.1-py3-none-any.whl", "has_sig": false, "md5_digest": "21c9c6a0740bee4a55b4f32a39f97749", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26506, "upload_time": "2018-10-30T17:57:10", "url": "https://files.pythonhosted.org/packages/f4/fe/53328fe8ea417b52d28af1d61f00bc44345f603a364f36cf6b4ba97a3df0/bigcommerce-0.19.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3e803ac5132c6e7464fe1a651c04920f", "sha256": "3f4c51ddec35fe040f42ccf6b34133cdb7ccc5a7aad715763e3edeccc02156ff" }, "downloads": -1, "filename": "bigcommerce-0.19.1.tar.gz", "has_sig": false, "md5_digest": "3e803ac5132c6e7464fe1a651c04920f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19134, "upload_time": "2018-10-30T17:57:12", "url": "https://files.pythonhosted.org/packages/fe/42/f0491fc26279b2a2f2a5995c0e7b2296bc0b93b5de7cc60fc958f526c9aa/bigcommerce-0.19.1.tar.gz" } ], "0.20.0": [ { "comment_text": "", "digests": { "md5": "ba69c27ceeb5354cedbdd75d36d20fdf", "sha256": "cc7a5d67a76755520745ef0040292633fb3362d5715f697ebb9c402a5c2f4cef" }, "downloads": -1, "filename": "bigcommerce-0.20.0.tar.gz", "has_sig": false, "md5_digest": "ba69c27ceeb5354cedbdd75d36d20fdf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20438, "upload_time": "2018-12-14T21:12:57", "url": "https://files.pythonhosted.org/packages/5c/cd/4f30f01461263df0201379aa155e011c945bd83934b49060baab07d01949/bigcommerce-0.20.0.tar.gz" } ], "0.20.1": [ { "comment_text": "", "digests": { "md5": "c3c91f634c9c0916c6341374059b3496", "sha256": "407cc0a47dc32e40479de6985e3519cd133068e0028fe2eb92f4648e401e114f" }, "downloads": -1, "filename": "bigcommerce-0.20.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c3c91f634c9c0916c6341374059b3496", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27833, "upload_time": "2019-01-30T01:15:57", "url": "https://files.pythonhosted.org/packages/e7/d9/3afabbbd62a375df485e3c97dd79d1ecbad99ae2e4aefaf802e524b90d85/bigcommerce-0.20.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1b0458143309a18673e3547433678c54", "sha256": "93788768e54e8f9083922827ec5f2a96568e674b0421c409957663f9efc9ade3" }, "downloads": -1, "filename": "bigcommerce-0.20.1.tar.gz", "has_sig": false, "md5_digest": "1b0458143309a18673e3547433678c54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20478, "upload_time": "2019-01-30T01:15:59", "url": "https://files.pythonhosted.org/packages/65/95/eb0e3c4f2f2790d75b7c1306584d9ebaa02935704519904d8d669af0ca10/bigcommerce-0.20.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c3c91f634c9c0916c6341374059b3496", "sha256": "407cc0a47dc32e40479de6985e3519cd133068e0028fe2eb92f4648e401e114f" }, "downloads": -1, "filename": "bigcommerce-0.20.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c3c91f634c9c0916c6341374059b3496", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27833, "upload_time": "2019-01-30T01:15:57", "url": "https://files.pythonhosted.org/packages/e7/d9/3afabbbd62a375df485e3c97dd79d1ecbad99ae2e4aefaf802e524b90d85/bigcommerce-0.20.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1b0458143309a18673e3547433678c54", "sha256": "93788768e54e8f9083922827ec5f2a96568e674b0421c409957663f9efc9ade3" }, "downloads": -1, "filename": "bigcommerce-0.20.1.tar.gz", "has_sig": false, "md5_digest": "1b0458143309a18673e3547433678c54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20478, "upload_time": "2019-01-30T01:15:59", "url": "https://files.pythonhosted.org/packages/65/95/eb0e3c4f2f2790d75b7c1306584d9ebaa02935704519904d8d669af0ca10/bigcommerce-0.20.1.tar.gz" } ] }