{ "info": { "author": "HubSpot Dev Team, Jacobi Petrucciani", "author_email": "j@cobi.dev", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9" ], "description": "[![PyPI\nversion](https://badge.fury.io/py/hubspot3.svg)](https://badge.fury.io/py/hubspot3)\n[![Code style:\nblack](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)\n[![Documentation\nStatus](https://readthedocs.org/projects/hubspot3/badge/?version=latest)](https://hubspot3.readthedocs.io/en/latest/?badge=latest)\n[![Python 3.6+\nsupported](https://img.shields.io/badge/python-3.6+-blue.svg)](https://www.python.org/downloads/release/python-360/)\n\nA python wrapper around HubSpot's APIs, _for python 3.6+_.\n\nBuilt initially around hapipy, but heavily modified.\n\nCheck out the [documentation\nhere](https://hubspot3.readthedocs.io/en/latest/)\\! (thanks readthedocs)\n\n# Quick start\n\n## Installation\n\n```bash\n# install hubspot3\npip install hubspot3\n```\n\n## Basic Usage\n\n```python\nfrom hubspot3 import Hubspot3\n\nAPI_KEY = \"your-api-key\"\n\nclient = Hubspot3(api_key=API_KEY)\n\n# all of the clients are accessible as attributes of the main Hubspot3 Client\ncontact = client.contacts.get_contact_by_email('testingapis@hubspot.com')\ncontact_id = contact['vid']\n\nall_companies = client.companies.get_all()\n\n# new usage limit functionality - keep track of your API calls\nclient.usage_limits\n# \n\nclient.usage_limits.calls_remaining\n# 971063\n```\n\n## Individual Clients\n\n```python\nfrom hubspot3.companies import CompaniesClient\n\nAPI_KEY = \"your-api-key\"\n\nclient = CompaniesClient(api_key=API_KEY)\n\nfor company in client.get_all():\n print(company)\n```\n\n## Passing Params\n\n```python\nimport json\nfrom hubspot3.deals import DealsClient\n\ndeal_id = \"12345\"\nAPI_KEY = \"your_api_key\"\n\ndeals_client = DealsClient(api_key=API_KEY)\n\nparams = {\n \"includePropertyVersions\": \"true\"\n} # Note values are camelCase as they appear in the Hubspot Documentation!\n\ndeal_data = deals_client.get(deal_id, params=params)\nprint(json.dumps(deal_data))\n```\n\n## Command-line interface\n\nThere is also a command-line tool available. Install the extra\nrequirement for that tool via:\n\n```bash\npip install hubspot3[cli]\n```\n\nand you can use it as a command:\n\n```bash\nhubspot3 --help\n```\n\nSee the Sphinx documentation for more details and explanations.\n\n# Rate Limiting\n\nBe aware that this uses the HubSpot API directly, so you are subject to\nall of the [guidelines that HubSpot has in\nplace](https://developers.hubspot.com/apps/api_guidelines).\n\nat the time of writing, HubSpot has the following limits in place for\nAPI requests:\n\nFree & Starter:\n\n- 10 requests per second\n- 250,000 requests per day.\n\nProfessional & Enterprise:\n\n- 10 requests per second\n- 500,000 requests per day.\n\nThis daily limit resets at midnight based on the time zone setting of\nthe HubSpot account. There is also an additional addon you can purchase\nfor more requests.\n\n# Retrying API Calls\n\nBy default, hubspot3 will attempt to retry all API calls up to 2 times\nupon failure.\n\nIf you'd like to override this behavior, you can add a `number_retries`\nkeyword argument to any Client constructor, or to individual API calls.\n\n# Extending the BaseClient - thanks [@Guysoft](https://github.com/guysoft)\\!\n\nSome of the APIs are not yet complete\\! If you'd like to use an API that\nisn't yet in this repo, you can extend the BaseClient class\\!\n\n```python\nimport json\nfrom hubspot3.base import BaseClient\n\n\nPIPELINES_API_VERSION = \"1\"\n\n\nclass PipelineClient(BaseClient):\n \"\"\"\n Lets you extend to non-existing clients, this example extends pipelines\n \"\"\"\n\n def __init__(self, *args, **kwargs):\n super(PipelineClient, self).__init__(*args, **kwargs)\n\n def get_pipelines(self, **options):\n params = {}\n\n return self._call(\"pipelines\", method=\"GET\", params=params)\n\n def _get_path(self, subpath):\n return \"deals/v{}/{}\".format(\n self.options.get(\"version\") or PIPELINES_API_VERSION, subpath\n )\n\n\nif __name__ == \"__main__\":\n API_KEY = \"your_api_key\"\n a = PipelineClient(api_key=API_KEY)\n print(json.dumps(a.get_pipelines()))\n```\n\n# Advanced oauth2 token storage - thanks [@sangaline](https://github.com/sangaline)\\!\n\nThis is an example of how you can use the `oauth2_token_getter` and `oauth2_token_setter` kwargs on the client to use custom storage (in this case redis) so that multiple clients can share the same access/refresh tokens generated by the oauth2 requests.\n\n```python\nimport aioredis\nfrom hubspot3 import Hubspot3\n\n\nredis_client = await aioredis.create_redis_pool(url, db=db, encoding='utf-8', timeout=10)\n\ndef oauth2_token_getter(token_type: str, client_id: str) -> str:\n loop = asyncio.get_event_loop()\n key = f'hubspot-oauth2-tokens:{token_type}:{client_id}'\n return loop.run_until_complete(redis_client.get(key))\n\ndef oauth2_token_setter(token_type: str, client_id: str, token: str) -> None:\n loop = asyncio.get_event_loop()\n key = f'hubspot-oauth2-tokens:{token_type}:{client_id}'\n # Token expiration is six hours, so match that when we store the tokens.\n # See: https://developers.hubspot.com/docs/methods/oauth2/refresh-access-token\n expire_in_seconds = 6 * 60 * 60\n loop.run_until_complete(redis_client.set(key, token, expire=expire_in_seconds))\n\n# This client will share oauth2 credentials with other clients configured in the same way.\nhubspot3_client = Hubspot3(\n access_token=access_token,\n client_id=client_id,\n client_secret=client_secret,\n refresh_token=refresh_token,\n oauth2_token_getter=oauth2_token_getter,\n oauth2_token_setter=oauth2_token_setter,\n)\n```\n\n# Testing\n\nI'm currently working on rewriting many of the tests with\n[pytest](https://docs.pytest.org/en/latest/) to work against the public\nAPI and ensure that we get the correct type of mock data back. These\ntests are currently in a **very** early state - I'll be working soon to\nget them all built out.\n\n```bash\n# Install required test packages\npip install pytest pytest-cov\n# or\npip install -r requirements-dev.txt\n\n# run tests\nmake\n# or\nmake test_all\n```\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/jpetrucciani/hubspot3.git", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/jpetrucciani/hubspot3.git", "keywords": "", "license": "LICENSE", "maintainer": "", "maintainer_email": "", "name": "hubspot3", "package_url": "https://pypi.org/project/hubspot3/", "platform": "", "project_url": "https://pypi.org/project/hubspot3/", "project_urls": { "Download": "https://github.com/jpetrucciani/hubspot3.git", "Homepage": "https://github.com/jpetrucciani/hubspot3.git" }, "release_url": "https://pypi.org/project/hubspot3/3.2.51/", "requires_dist": [ "typing-extensions ; python_version < \"3.8\"", "fire (==0.1.3) ; extra == 'cli'" ], "requires_python": "", "summary": "A python wrapper around HubSpot's APIs, for python 3. Built initially around hapipy, but heavily modified.", "version": "3.2.51", "yanked": false, "yanked_reason": null }, "last_serial": 11620290, "releases": { "3.0.1": [ { "comment_text": "", "digests": { "md5": "46a34b3df0359fc82feb1c81d143a9a1", "sha256": "7ccdaf5dea22296b4390f888eb9d67b7dd81e01a9e21a9e5a9f0a26fb3883d47" }, "downloads": -1, "filename": "hubspot3-3.0.1.tar.gz", "has_sig": false, "md5_digest": "46a34b3df0359fc82feb1c81d143a9a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18341, "upload_time": "2017-04-12T17:44:03", "upload_time_iso_8601": "2017-04-12T17:44:03.496515Z", "url": "https://files.pythonhosted.org/packages/60/bf/e6b8f9452700f112273f2dd72b8e1c502bee783cf32c59a5ecd20d54ae8e/hubspot3-3.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "9cabd8b46d46667e276922ab276365d5", "sha256": "d067de59724523d6b61fca7ecc5566e9f318d55802d9b642f8eea9ae038cd5da" }, "downloads": -1, "filename": "hubspot3-3.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9cabd8b46d46667e276922ab276365d5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22742, "upload_time": "2017-08-24T13:48:40", "upload_time_iso_8601": "2017-08-24T13:48:40.033474Z", "url": "https://files.pythonhosted.org/packages/17/47/c13f7bcd3d674d7a18abf9ec6a4dfbb9e61e07aed3c1f796651aed33f817/hubspot3-3.0.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "3.0.5": [ { "comment_text": "", "digests": { "md5": "07dbc789cee4b3cb3f7e7fa77b0189ea", "sha256": "25a451ddd4eb3eb13f020f89ef5048b8b5bf296301aad7a13670255efe94f1a0" }, "downloads": -1, "filename": "hubspot3-3.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "07dbc789cee4b3cb3f7e7fa77b0189ea", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23490, "upload_time": "2018-02-14T14:27:05", "upload_time_iso_8601": "2018-02-14T14:27:05.864804Z", "url": "https://files.pythonhosted.org/packages/a1/7f/cdb664c27ec2e0c55da5cde6fcdae2dd0ca2372a61a92d10f4864f72df47/hubspot3-3.0.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "3.0.6": [ { "comment_text": "", "digests": { "md5": "73b2f8de6c736cae4caf86ffac6dd957", "sha256": "a52958e3a8535ecf2d37c7e3f29363b4d5723813c24e9d56eb5d7aa2ae9f2ada" }, "downloads": -1, "filename": "hubspot3-3.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "73b2f8de6c736cae4caf86ffac6dd957", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23570, "upload_time": "2018-02-15T17:10:25", "upload_time_iso_8601": "2018-02-15T17:10:25.923517Z", "url": "https://files.pythonhosted.org/packages/09/56/ef22ce9844cc0153c089446919536f69de7120ce90a265aeefe4fe453f87/hubspot3-3.0.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "3.0.7": [ { "comment_text": "", "digests": { "md5": "3f5a7dbfca2d650d71e4bd14fabd6078", "sha256": "1b8620d10d9aa618e9d368b19967031ba5f9645e24c3dbe75e7b09b36beafe83" }, "downloads": -1, "filename": "hubspot3-3.0.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3f5a7dbfca2d650d71e4bd14fabd6078", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23765, "upload_time": "2018-02-27T16:32:17", "upload_time_iso_8601": "2018-02-27T16:32:17.647809Z", "url": "https://files.pythonhosted.org/packages/46/99/e2e15ac246787603093615898af11d91f8d6d64a17376d56a0a04420558b/hubspot3-3.0.7-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "3.0.8": [ { "comment_text": "", "digests": { "md5": "028f1c5fac94b10bca42cd19cfcee4e9", "sha256": "29bbbb3446becc3455158dc1ca698dd157fd3ecfc8c8521c9c3511f7b7b813e3" }, "downloads": -1, "filename": "hubspot3-3.0.8.tar.gz", "has_sig": false, "md5_digest": "028f1c5fac94b10bca42cd19cfcee4e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15539, "upload_time": "2018-04-12T16:41:18", "upload_time_iso_8601": "2018-04-12T16:41:18.241840Z", "url": "https://files.pythonhosted.org/packages/49/ff/a1cc0dce4f4ef76711ae537171a6caeca9981a4cf2351b532543de823175/hubspot3-3.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.9": [ { "comment_text": "", "digests": { "md5": "3fc5aa790546b20fa1427693a62c0718", "sha256": "70db9542cd73c2074c90114936cf72512ece9258c3fc2edd7ea306c962404689" }, "downloads": -1, "filename": "hubspot3-3.0.9.tar.gz", "has_sig": false, "md5_digest": "3fc5aa790546b20fa1427693a62c0718", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15624, "upload_time": "2018-04-12T16:50:56", "upload_time_iso_8601": "2018-04-12T16:50:56.765341Z", "url": "https://files.pythonhosted.org/packages/e7/a2/81026cdc7c7f07ee1ab653dd391c5bc6fabeb6823933e5279bf98a4cc2e4/hubspot3-3.0.9.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "174bb4a1da2d35648c8b28dbc9c3b34c", "sha256": "56a4a498301e20ad4c0fbb1f450c898508722104bd0027df93956be110b13058" }, "downloads": -1, "filename": "hubspot3-3.1.0.tar.gz", "has_sig": false, "md5_digest": "174bb4a1da2d35648c8b28dbc9c3b34c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15625, "upload_time": "2018-04-18T08:23:01", "upload_time_iso_8601": "2018-04-18T08:23:01.429633Z", "url": "https://files.pythonhosted.org/packages/44/3e/20a83650adfb814aca906b085fd2393865f4ba709e495608e13c00f7c893/hubspot3-3.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "a003b69ec474cafc0930ec874776e65a", "sha256": "78899ca4aeb32dddb0b69a7e7e4a2ba836f541f68809af72eb8afc9a79d08ab6" }, "downloads": -1, "filename": "hubspot3-3.1.1.tar.gz", "has_sig": false, "md5_digest": "a003b69ec474cafc0930ec874776e65a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16193, "upload_time": "2018-04-25T13:22:54", "upload_time_iso_8601": "2018-04-25T13:22:54.822433Z", "url": "https://files.pythonhosted.org/packages/0a/6a/45851e57f80a5d64853a8dd1e8e544f1f1e6eccd852ad51de8bf393bc001/hubspot3-3.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "a3ef5c3676e9c2b925c6d09940e81c11", "sha256": "09ede11c3946e6616b23097d469af4323c4bd353051fa9015f971e8564204b8e" }, "downloads": -1, "filename": "hubspot3-3.1.2.tar.gz", "has_sig": false, "md5_digest": "a3ef5c3676e9c2b925c6d09940e81c11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16696, "upload_time": "2018-06-01T16:33:17", "upload_time_iso_8601": "2018-06-01T16:33:17.007768Z", "url": "https://files.pythonhosted.org/packages/54/a7/e8f5ee99af2dfb0018df49238c087d927537e3b45c2f46025bfd2445772c/hubspot3-3.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.3": [ { "comment_text": "", "digests": { "md5": "124309c9f39a405589581753a73da834", "sha256": "510bc5c3f54cc577395a1df69acd2de483cc953b130ef2dbbbcb3050456a2e38" }, "downloads": -1, "filename": "hubspot3-3.1.3.tar.gz", "has_sig": false, "md5_digest": "124309c9f39a405589581753a73da834", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17095, "upload_time": "2018-10-22T18:47:02", "upload_time_iso_8601": "2018-10-22T18:47:02.463614Z", "url": "https://files.pythonhosted.org/packages/8f/6a/d2aa61cf84bf3cbb27f0815b16d4592789dafa959fc5a10a2b404df3c1c0/hubspot3-3.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.4": [ { "comment_text": "", "digests": { "md5": "d0787b247bf5a9c4e03681b7e4bb2bd0", "sha256": "5dff2d4016f2bdae673fa569d4c05bae3ac4f4c8e3fc59a2bd80f59f57ba3a97" }, "downloads": -1, "filename": "hubspot3-3.1.4.tar.gz", "has_sig": false, "md5_digest": "d0787b247bf5a9c4e03681b7e4bb2bd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17103, "upload_time": "2018-10-22T18:48:07", "upload_time_iso_8601": "2018-10-22T18:48:07.076238Z", "url": "https://files.pythonhosted.org/packages/67/51/4ffb1964befe6755ff60eb2c9475fb8d2fd8440e401b7f5c882c30a97d30/hubspot3-3.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.5": [ { "comment_text": "", "digests": { "md5": "6ed759a1c461e31bd63993e15fb02b91", "sha256": "6445e6b17ed429002535894e8d56ddaf098d3600d831c2c3ecbab7acffbb453b" }, "downloads": -1, "filename": "hubspot3-3.1.5.tar.gz", "has_sig": false, "md5_digest": "6ed759a1c461e31bd63993e15fb02b91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17112, "upload_time": "2018-11-08T13:56:56", "upload_time_iso_8601": "2018-11-08T13:56:56.250967Z", "url": "https://files.pythonhosted.org/packages/a0/21/ec87a41c1e9ea5104fe6e1c5e2f0c1096dd96a018a77e9df4a39bca5c148/hubspot3-3.1.5.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.6": [ { "comment_text": "", "digests": { "md5": "7b35d2ffb47a71221729fcc69e19d516", "sha256": "5c1be093864a80a087c1d08903767ffac5a9d8bd9d634570739d8b0e3a3bd856" }, "downloads": -1, "filename": "hubspot3-3.1.6.tar.gz", "has_sig": false, "md5_digest": "7b35d2ffb47a71221729fcc69e19d516", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17218, "upload_time": "2018-11-12T16:31:39", "upload_time_iso_8601": "2018-11-12T16:31:39.379298Z", "url": "https://files.pythonhosted.org/packages/8d/fb/00b23f2363a2f92b05a42b08d5295276f87b56036bbed84a3582fa1d9da0/hubspot3-3.1.6.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.7": [ { "comment_text": "", "digests": { "md5": "284a57e772efce4f9c8e10f2b8ed7919", "sha256": "96fd85a23f17bcaf77f72f113ff0f612ea191f448107c1c5b84259d9aee3085f" }, "downloads": -1, "filename": "hubspot3-3.1.7.tar.gz", "has_sig": false, "md5_digest": "284a57e772efce4f9c8e10f2b8ed7919", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17297, "upload_time": "2019-01-18T14:31:27", "upload_time_iso_8601": "2019-01-18T14:31:27.633174Z", "url": "https://files.pythonhosted.org/packages/5d/bf/894a649ede8a6198c6b82f3e4f7d45faa68a2bd14dd84a37da8e569a98d7/hubspot3-3.1.7.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.8": [ { "comment_text": "", "digests": { "md5": "9eab8e37df438d7ba261414284c65436", "sha256": "1c9b62d23a623ea5c4b902362ec34d25951a107fe1e7b8e078b463db3d5fea0d" }, "downloads": -1, "filename": "hubspot3-3.1.8.tar.gz", "has_sig": false, "md5_digest": "9eab8e37df438d7ba261414284c65436", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19465, "upload_time": "2019-01-22T14:18:21", "upload_time_iso_8601": "2019-01-22T14:18:21.962110Z", "url": "https://files.pythonhosted.org/packages/9c/f1/9632a130ffbdd27df0e060b873bdc764c5921850a98b3e5220f4b6cae4f0/hubspot3-3.1.8.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.9": [ { "comment_text": "", "digests": { "md5": "7a1ee6bb6662c2695c4f0778cef6cd28", "sha256": "d36958f2d24d27571c3401d0277bfb69ddb6b7fc29ce6580480a62353c3e08cf" }, "downloads": -1, "filename": "hubspot3-3.1.9.tar.gz", "has_sig": false, "md5_digest": "7a1ee6bb6662c2695c4f0778cef6cd28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19629, "upload_time": "2019-01-22T19:00:56", "upload_time_iso_8601": "2019-01-22T19:00:56.631292Z", "url": "https://files.pythonhosted.org/packages/11/54/309705cee351b5bb195e16ba2be129090318fe92ece33398b4d8685694d6/hubspot3-3.1.9.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "a02b007cdfb462a0ba415d7a4b53fb03", "sha256": "22045ca35d9577220bfe3f69f6fc0cae9692e8acc5f7c3d89c6b31041307a3c3" }, "downloads": -1, "filename": "hubspot3-3.2.0.tar.gz", "has_sig": false, "md5_digest": "a02b007cdfb462a0ba415d7a4b53fb03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19882, "upload_time": "2019-02-26T03:46:51", "upload_time_iso_8601": "2019-02-26T03:46:51.984712Z", "url": "https://files.pythonhosted.org/packages/43/b0/e76feaf004abd1e1e90ddbb8f062aa15cda6dab901eaf31a5570101974cc/hubspot3-3.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.1": [ { "comment_text": "", "digests": { "md5": "7cbb72cb093a65e6c1f148c9856e6a42", "sha256": "709bc0db54fc90640b7b38a69846df18a08e6f6f147155d5790ae53aaa3a3a85" }, "downloads": -1, "filename": "hubspot3-3.2.1.tar.gz", "has_sig": false, "md5_digest": "7cbb72cb093a65e6c1f148c9856e6a42", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19902, "upload_time": "2019-03-02T03:32:48", "upload_time_iso_8601": "2019-03-02T03:32:48.095610Z", "url": "https://files.pythonhosted.org/packages/7e/93/5ebe38975e0a4a37618106372e6671d88d2b5da4a77ea5b3968e9d9cec21/hubspot3-3.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.10": [ { "comment_text": "", "digests": { "md5": "14a37da2fa34f69c15ef72a120d926a8", "sha256": "1f226abc71ddd9cc8c02c9152baa90eed8b33da7e2e5efa39911139dd0630c6c" }, "downloads": -1, "filename": "hubspot3-3.2.10.tar.gz", "has_sig": false, "md5_digest": "14a37da2fa34f69c15ef72a120d926a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23291, "upload_time": "2019-05-30T20:58:24", "upload_time_iso_8601": "2019-05-30T20:58:24.967856Z", "url": "https://files.pythonhosted.org/packages/7a/8c/ff604c5606e434d9ab0e524fe575feb89628347f4b30d7d36027d3516d67/hubspot3-3.2.10.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.11": [ { "comment_text": "", "digests": { "md5": "c909b856fa9c14e1fdc626e2c391b049", "sha256": "243b0effdbdc52b44333f413902d96d9bed528bd98d7595b3e10f0fe5432de8b" }, "downloads": -1, "filename": "hubspot3-3.2.11.tar.gz", "has_sig": false, "md5_digest": "c909b856fa9c14e1fdc626e2c391b049", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23294, "upload_time": "2019-06-05T13:27:38", "upload_time_iso_8601": "2019-06-05T13:27:38.780596Z", "url": "https://files.pythonhosted.org/packages/78/d7/3e3a9ff716b29c07b451bcd200449cdf360b15415f9bd17c162e1b33460c/hubspot3-3.2.11.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.12": [ { "comment_text": "", "digests": { "md5": "1362011ad032e736129e44fe0ae7c02b", "sha256": "556af51f5d5a3d01b47b127297a5dc57b5cb675c1c1ac3f891fe7cfe62d0e603" }, "downloads": -1, "filename": "hubspot3-3.2.12.tar.gz", "has_sig": false, "md5_digest": "1362011ad032e736129e44fe0ae7c02b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23447, "upload_time": "2019-06-14T13:09:16", "upload_time_iso_8601": "2019-06-14T13:09:16.034630Z", "url": "https://files.pythonhosted.org/packages/af/b8/86137e0a9794349ae3f231ff22ccc4300f53f67e4e60d1d1d3e1f97db21f/hubspot3-3.2.12.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.13": [ { "comment_text": "", "digests": { "md5": "13988a664b54c7652c7281e41d51d536", "sha256": "fb5852caf1351cb443ef98175f0d66dd63159ce8050716251ddb19602e9809ff" }, "downloads": -1, "filename": "hubspot3-3.2.13.tar.gz", "has_sig": false, "md5_digest": "13988a664b54c7652c7281e41d51d536", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23399, "upload_time": "2019-06-14T13:18:08", "upload_time_iso_8601": "2019-06-14T13:18:08.683759Z", "url": "https://files.pythonhosted.org/packages/3e/8d/d5f69ba7eceacb30614124e2bdcc374e2196ef96dc91300d7907c81feccc/hubspot3-3.2.13.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.14": [ { "comment_text": "", "digests": { "md5": "48e002444a5c99700bdcbb10365be209", "sha256": "a7656447c4bb136c3ddc79d411d68215d670a910c7c7dc42a8f81bdcc220fef3" }, "downloads": -1, "filename": "hubspot3-3.2.14.tar.gz", "has_sig": false, "md5_digest": "48e002444a5c99700bdcbb10365be209", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23457, "upload_time": "2019-06-14T17:02:39", "upload_time_iso_8601": "2019-06-14T17:02:39.504441Z", "url": "https://files.pythonhosted.org/packages/19/0a/1117cf9f5c9f108941e756422d47e467aaa642ae4cce5ca80cd908e9240d/hubspot3-3.2.14.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.15": [ { "comment_text": "", "digests": { "md5": "2d680fe1f0a1ff5be016f1cf98fc24e5", "sha256": "9290d99418a769de33719cd5bd90325ebdd412c6fdb0acc1564a9366c9003d1c" }, "downloads": -1, "filename": "hubspot3-3.2.15.tar.gz", "has_sig": false, "md5_digest": "2d680fe1f0a1ff5be016f1cf98fc24e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23758, "upload_time": "2019-06-18T16:48:33", "upload_time_iso_8601": "2019-06-18T16:48:33.907942Z", "url": "https://files.pythonhosted.org/packages/2d/d1/a40231875dbcd7fbd6607851ff01b120f748f574db4cccebd36afb776941/hubspot3-3.2.15.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.16": [ { "comment_text": "", "digests": { "md5": "b03c6e369bc642c45156058b6c787399", "sha256": "9689882b47cb493c7f53e75f6e4dcafc73f91fcab0dc88701130e9f79845b174" }, "downloads": -1, "filename": "hubspot3-3.2.16.tar.gz", "has_sig": false, "md5_digest": "b03c6e369bc642c45156058b6c787399", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27458, "upload_time": "2019-06-25T15:52:40", "upload_time_iso_8601": "2019-06-25T15:52:40.653543Z", "url": "https://files.pythonhosted.org/packages/0d/68/f3cca6790c61b43c88c88706d57b515abba2fc949350420733f5fad69da1/hubspot3-3.2.16.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.17": [ { "comment_text": "", "digests": { "md5": "54e71d8eb0c2dd6522bfba7860c5ea80", "sha256": "62c1a947f025ab66e6b22af5e866b462f0ca124996a37f77fa43fa7e88911f03" }, "downloads": -1, "filename": "hubspot3-3.2.17.tar.gz", "has_sig": false, "md5_digest": "54e71d8eb0c2dd6522bfba7860c5ea80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29017, "upload_time": "2019-06-28T15:50:21", "upload_time_iso_8601": "2019-06-28T15:50:21.392807Z", "url": "https://files.pythonhosted.org/packages/f7/11/bf90c1f8f3fb36f7b316668c5f94f2a2095a0e90a11121eae14f2f24d6eb/hubspot3-3.2.17.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.18": [ { "comment_text": "", "digests": { "md5": "4068582045de718cf1c4e48e81db5199", "sha256": "c31b56c271b65d2416a3a8340610ace96893870ed781c774c19ab5cc415cd15c" }, "downloads": -1, "filename": "hubspot3-3.2.18.tar.gz", "has_sig": false, "md5_digest": "4068582045de718cf1c4e48e81db5199", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29331, "upload_time": "2019-07-01T23:05:07", "upload_time_iso_8601": "2019-07-01T23:05:07.068996Z", "url": "https://files.pythonhosted.org/packages/22/45/a491f4be9dd87c1159e10fd4b1dc6ea35bfed831036b1652360bd84f7486/hubspot3-3.2.18.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.19": [ { "comment_text": "", "digests": { "md5": "5bbe663a2473c57dfb4cfbc0924453bb", "sha256": "4c2c7cabe2861c1a715a4e6442dfbb560b5e00e7b3485ec9a384b1519961ea68" }, "downloads": -1, "filename": "hubspot3-3.2.19.tar.gz", "has_sig": false, "md5_digest": "5bbe663a2473c57dfb4cfbc0924453bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30011, "upload_time": "2019-07-09T16:35:46", "upload_time_iso_8601": "2019-07-09T16:35:46.462785Z", "url": "https://files.pythonhosted.org/packages/b8/6c/bef517e08a7a53cd24f9b1d0621b8bcbef104571a1ac0d4d7750f7d2cbef/hubspot3-3.2.19.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.2": [ { "comment_text": "", "digests": { "md5": "8bba90ea5021589007ef2ab633752af3", "sha256": "6b1e7d6848cbd348ebf7a760aca3639bad72673d9de1db14d38c525ca9dc0943" }, "downloads": -1, "filename": "hubspot3-3.2.2.tar.gz", "has_sig": false, "md5_digest": "8bba90ea5021589007ef2ab633752af3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19852, "upload_time": "2019-03-11T13:21:29", "upload_time_iso_8601": "2019-03-11T13:21:29.856315Z", "url": "https://files.pythonhosted.org/packages/6a/46/d3b1977658d99da63cb6804275eae1777a5e5f3335049916a7aeebe84066/hubspot3-3.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.20": [ { "comment_text": "", "digests": { "md5": "b7dcacfb7922a0d7c92b7403f90507f0", "sha256": "c058812bbade68445179998f82b9e2a8e8fddcf90d4f0a14a5229b9522259e31" }, "downloads": -1, "filename": "hubspot3-3.2.20.tar.gz", "has_sig": false, "md5_digest": "b7dcacfb7922a0d7c92b7403f90507f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30027, "upload_time": "2019-07-24T19:42:57", "upload_time_iso_8601": "2019-07-24T19:42:57.887638Z", "url": "https://files.pythonhosted.org/packages/66/67/d4f494ffc77ac9c7acb4acd710f726242b0422609c23578eda82f0f0a04b/hubspot3-3.2.20.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.21": [ { "comment_text": "", "digests": { "md5": "1502c1c834340b7c747a28925ac2a0f7", "sha256": "a282d2681c5f28ae2c81e9d036e20d6d909403435c31d339c44f15f314a25246" }, "downloads": -1, "filename": "hubspot3-3.2.21.tar.gz", "has_sig": false, "md5_digest": "1502c1c834340b7c747a28925ac2a0f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33840, "upload_time": "2019-08-01T22:37:06", "upload_time_iso_8601": "2019-08-01T22:37:06.854170Z", "url": "https://files.pythonhosted.org/packages/0b/ae/cccd24a879d06dfa9f1321d7ed3fc74e5d54447fc436910a5b79784efadd/hubspot3-3.2.21.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.22": [ { "comment_text": "", "digests": { "md5": "2b1cadde94e58ddc441defa5dc274b9f", "sha256": "7e76716db48d97586a79fa70fdcbe5e3630e428214cea8a43431b2fa5dadcaed" }, "downloads": -1, "filename": "hubspot3-3.2.22.tar.gz", "has_sig": false, "md5_digest": "2b1cadde94e58ddc441defa5dc274b9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32675, "upload_time": "2019-08-05T17:52:50", "upload_time_iso_8601": "2019-08-05T17:52:50.206572Z", "url": "https://files.pythonhosted.org/packages/e1/0b/20325bd550c05c917e983b46af30537e17fd3aea0ae58ddc25672b72b625/hubspot3-3.2.22.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.23": [ { "comment_text": "", "digests": { "md5": "11abd56a33751b794403943338e9ff44", "sha256": "9929cd1f553e016d672cbaa648dd48840de825c1998203d1e671f3cdc2602cd1" }, "downloads": -1, "filename": "hubspot3-3.2.23.tar.gz", "has_sig": false, "md5_digest": "11abd56a33751b794403943338e9ff44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32700, "upload_time": "2019-08-06T13:29:31", "upload_time_iso_8601": "2019-08-06T13:29:31.833410Z", "url": "https://files.pythonhosted.org/packages/2a/44/e5bea23405d98536d8076b06644c43b7b2a24713c51fe457087d583c0b40/hubspot3-3.2.23.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.24": [ { "comment_text": "", "digests": { "md5": "6fbe6ffe7951d2c062ea13174f77ee59", "sha256": "076f31af94e716f6f8c00c6952f3e91b2b067543b0e01c2097b415773e1f88dc" }, "downloads": -1, "filename": "hubspot3-3.2.24.tar.gz", "has_sig": false, "md5_digest": "6fbe6ffe7951d2c062ea13174f77ee59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32964, "upload_time": "2019-08-07T18:03:18", "upload_time_iso_8601": "2019-08-07T18:03:18.542191Z", "url": "https://files.pythonhosted.org/packages/c6/6d/69b675c082deed57c2ed084d88d15889dcad68d758d1deccdb2201a74e61/hubspot3-3.2.24.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.25": [ { "comment_text": "", "digests": { "md5": "22fe79d1c571d991c760cb3abc8e4a10", "sha256": "be24ab74d3f940622b12f9ad4b52184bc7b28912df7d2012b715763a56e65eef" }, "downloads": -1, "filename": "hubspot3-3.2.25.tar.gz", "has_sig": false, "md5_digest": "22fe79d1c571d991c760cb3abc8e4a10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33636, "upload_time": "2019-08-08T14:35:55", "upload_time_iso_8601": "2019-08-08T14:35:55.084660Z", "url": "https://files.pythonhosted.org/packages/92/e4/b800755ec9057b862d605c4fde869ef138f5398bca581afaa022a438a0f2/hubspot3-3.2.25.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.26": [ { "comment_text": "", "digests": { "md5": "bf41d987122b11717428b441d58ff72c", "sha256": "b8fda1fee0bd70c4ed5cc60a17dcf51c0b88e267121bc11dd04da854aad0362f" }, "downloads": -1, "filename": "hubspot3-3.2.26.tar.gz", "has_sig": false, "md5_digest": "bf41d987122b11717428b441d58ff72c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34913, "upload_time": "2019-08-14T14:53:17", "upload_time_iso_8601": "2019-08-14T14:53:17.278052Z", "url": "https://files.pythonhosted.org/packages/60/b4/096e3c1aba9e69adcb9dd1f4b61b3c2382052bf057f484b1303731d41f23/hubspot3-3.2.26.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.27": [ { "comment_text": "", "digests": { "md5": "3a9426a31dd62cd69c2ff7fa602aef9e", "sha256": "a5191285aeb3f472140003522b54f7a7cb134d504f9873114a2f8e93dc20b468" }, "downloads": -1, "filename": "hubspot3-3.2.27.tar.gz", "has_sig": false, "md5_digest": "3a9426a31dd62cd69c2ff7fa602aef9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33874, "upload_time": "2019-08-15T14:17:37", "upload_time_iso_8601": "2019-08-15T14:17:37.256706Z", "url": "https://files.pythonhosted.org/packages/cc/f5/6730038bd5236967ef2121b0e6062993a9303c951cfad522aebc5442d14f/hubspot3-3.2.27.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.28": [ { "comment_text": "", "digests": { "md5": "f4da496c2ed8cc0e33760089db8fb015", "sha256": "89c470d633ec766f082823c510593a497d3c2558f09078fb3b7e06dfbcc22f87" }, "downloads": -1, "filename": "hubspot3-3.2.28.tar.gz", "has_sig": false, "md5_digest": "f4da496c2ed8cc0e33760089db8fb015", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34314, "upload_time": "2019-08-27T16:17:31", "upload_time_iso_8601": "2019-08-27T16:17:31.000312Z", "url": "https://files.pythonhosted.org/packages/22/35/bfbeb0ddf91f14863a80dbaf6b6d7cbca7108e9964941fe7ce73bfd718ba/hubspot3-3.2.28.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.29": [ { "comment_text": "", "digests": { "md5": "f43acbf270943d4843a996734c129ae7", "sha256": "633ee62a3ad7249d5e9ed79f1abd1a157d655c1abbe07774acb891f33aa40d14" }, "downloads": -1, "filename": "hubspot3-3.2.29.tar.gz", "has_sig": false, "md5_digest": "f43acbf270943d4843a996734c129ae7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34344, "upload_time": "2019-09-03T12:40:09", "upload_time_iso_8601": "2019-09-03T12:40:09.364534Z", "url": "https://files.pythonhosted.org/packages/ab/e7/fe912de672dc3d0ba43f84e60efe856650477b2b7bc1346205821f023fe6/hubspot3-3.2.29.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.3": [ { "comment_text": "", "digests": { "md5": "5577ae06a9a10d4e29af15155cbc67ea", "sha256": "5f52726460a106bdc9ebfd41374fbee816c850fbd14e972d58dcbbeb2088afab" }, "downloads": -1, "filename": "hubspot3-3.2.3.tar.gz", "has_sig": false, "md5_digest": "5577ae06a9a10d4e29af15155cbc67ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20125, "upload_time": "2019-03-21T22:46:52", "upload_time_iso_8601": "2019-03-21T22:46:52.809255Z", "url": "https://files.pythonhosted.org/packages/d6/8a/911c84925c5afb44a3853ef0fbc4caaa790d43a7e7a095973f4f741ac7d0/hubspot3-3.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.30": [ { "comment_text": "", "digests": { "md5": "04c855911c86685f0183fd2dd6f3f53b", "sha256": "fccb398c7f6ea96c39bf9f20a3eb684c7a6345af3fbddb57a523b723f50861de" }, "downloads": -1, "filename": "hubspot3-3.2.30.tar.gz", "has_sig": false, "md5_digest": "04c855911c86685f0183fd2dd6f3f53b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34388, "upload_time": "2019-09-13T13:23:14", "upload_time_iso_8601": "2019-09-13T13:23:14.066111Z", "url": "https://files.pythonhosted.org/packages/52/ef/3ccad8fec9dd2c43e51e2a1e56f7ed50d7089a790ecaf60432b1b732a433/hubspot3-3.2.30.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.31": [ { "comment_text": "", "digests": { "md5": "ded921c80cfe1c3575e2b429621c30c2", "sha256": "db5cbb8d32d7dfb5465d6cf0bb87a90cfbb66a27efa456611e8c5f134d478711" }, "downloads": -1, "filename": "hubspot3-3.2.31.tar.gz", "has_sig": false, "md5_digest": "ded921c80cfe1c3575e2b429621c30c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36028, "upload_time": "2019-09-17T13:28:18", "upload_time_iso_8601": "2019-09-17T13:28:18.242786Z", "url": "https://files.pythonhosted.org/packages/d7/51/8bbcc6b0d34527b6cdc82f834fb7f68864f128e1cc749e7abc56ef46ac46/hubspot3-3.2.31.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.32": [ { "comment_text": "", "digests": { "md5": "f50214db993e3d70ee5eeda2cc8d2d80", "sha256": "a9f4c22603ddcf2da836b008fa7dcb949336a9786db4c388b25802dc7a0c7d9d" }, "downloads": -1, "filename": "hubspot3-3.2.32.tar.gz", "has_sig": false, "md5_digest": "f50214db993e3d70ee5eeda2cc8d2d80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35112, "upload_time": "2019-10-09T18:17:32", "upload_time_iso_8601": "2019-10-09T18:17:32.255930Z", "url": "https://files.pythonhosted.org/packages/06/91/f7b3c68eb0a98c26b8ad27ce57b4e5141a43e2f2002f23b890b437204eb4/hubspot3-3.2.32.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.33": [ { "comment_text": "", "digests": { "md5": "2d9afbba5e419d5823a12ea2199dc5f1", "sha256": "ee6fb89b51b30476a33be2b38139972d2d6bd401e8ba1326f6d6014d45d73f6e" }, "downloads": -1, "filename": "hubspot3-3.2.33.tar.gz", "has_sig": false, "md5_digest": "2d9afbba5e419d5823a12ea2199dc5f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36363, "upload_time": "2019-10-10T19:32:51", "upload_time_iso_8601": "2019-10-10T19:32:51.918346Z", "url": "https://files.pythonhosted.org/packages/6d/19/f42acda955874c6591cce4157a1209a3a5a154f8da26049bc8dea3609a99/hubspot3-3.2.33.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.34": [ { "comment_text": "", "digests": { "md5": "cf6ec1c63034e9cc1489a6c3069a2d90", "sha256": "ad7f061e68eafcfc8c92db67b31b229d1646f28d4b9a41d8d4b56d790690934a" }, "downloads": -1, "filename": "hubspot3-3.2.34.tar.gz", "has_sig": false, "md5_digest": "cf6ec1c63034e9cc1489a6c3069a2d90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35763, "upload_time": "2019-10-14T15:15:21", "upload_time_iso_8601": "2019-10-14T15:15:21.883068Z", "url": "https://files.pythonhosted.org/packages/02/b2/7e2bd2cb6731f89130fde22322076351fb32f3d65c5be2d9eeecb084a501/hubspot3-3.2.34.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.35": [ { "comment_text": "", "digests": { "md5": "39856c726e85972380c624d547869116", "sha256": "7984bcb614d5b309ee7f725bf812c06cb61a4a735a22280e2552bc9231a5cf24" }, "downloads": -1, "filename": "hubspot3-3.2.35.tar.gz", "has_sig": false, "md5_digest": "39856c726e85972380c624d547869116", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36681, "upload_time": "2019-10-15T13:46:58", "upload_time_iso_8601": "2019-10-15T13:46:58.629626Z", "url": "https://files.pythonhosted.org/packages/22/3c/6808769eefc5c4616d2c9ca6677b51a9615a779c840ccea3a3fbcd2e0a3a/hubspot3-3.2.35.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.36": [ { "comment_text": "", "digests": { "md5": "2b8d668b5e76e11415340f1792319095", "sha256": "c8cd6cc8b56c30e473c6ee2f721adf4a6975e06d6d00d1e297ad509b8f75d6d3" }, "downloads": -1, "filename": "hubspot3-3.2.36.tar.gz", "has_sig": false, "md5_digest": "2b8d668b5e76e11415340f1792319095", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35787, "upload_time": "2019-10-21T14:55:19", "upload_time_iso_8601": "2019-10-21T14:55:19.495492Z", "url": "https://files.pythonhosted.org/packages/92/f1/3140c85a01ce35bf26f03430326cbb221b4a18f01823d564574848afd1b1/hubspot3-3.2.36.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.37": [ { "comment_text": "", "digests": { "md5": "d8bc1d3e5754bed12586b14667b35fb1", "sha256": "bbca399333fac529104bfcfb2f50ca2a2e172368d4798a8cecde5a6e6f5176e2" }, "downloads": -1, "filename": "hubspot3-3.2.37.tar.gz", "has_sig": false, "md5_digest": "d8bc1d3e5754bed12586b14667b35fb1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35820, "upload_time": "2019-11-15T23:35:03", "upload_time_iso_8601": "2019-11-15T23:35:03.554844Z", "url": "https://files.pythonhosted.org/packages/91/88/930e669e181aff43d891237a9e9fae66b0e7a09d6bf179cdc81d94f902b7/hubspot3-3.2.37.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.38": [ { "comment_text": "", "digests": { "md5": "9c7a728d4f5e9b29c7bc74c1fc2d5505", "sha256": "64705de4a43b048dec1dee7154ddf3af52f5f87033b0c494429b11d906d7fa4c" }, "downloads": -1, "filename": "hubspot3-3.2.38.tar.gz", "has_sig": false, "md5_digest": "9c7a728d4f5e9b29c7bc74c1fc2d5505", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35831, "upload_time": "2019-11-20T19:40:12", "upload_time_iso_8601": "2019-11-20T19:40:12.923356Z", "url": "https://files.pythonhosted.org/packages/ef/11/f4181600859b0947da1d0cfa24b699a4d0901d739d41944689bdea656fe1/hubspot3-3.2.38.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.39": [ { "comment_text": "", "digests": { "md5": "c5b53c0ec72c9724882fb41e60474773", "sha256": "ffec6c427dd31edfd8c46eeab3dcb991e8a4ed39d8ecfd99e335b7bd072c6f83" }, "downloads": -1, "filename": "hubspot3-3.2.39.tar.gz", "has_sig": false, "md5_digest": "c5b53c0ec72c9724882fb41e60474773", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35981, "upload_time": "2019-11-21T14:16:47", "upload_time_iso_8601": "2019-11-21T14:16:47.439019Z", "url": "https://files.pythonhosted.org/packages/4a/a5/43600ab411dc7372ddcffa8778c7104ef0f51497aacdb9582e33f69ac3c9/hubspot3-3.2.39.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.4": [ { "comment_text": "", "digests": { "md5": "1e6ccaf8bb570a20e45bb05bfe14271e", "sha256": "0084e0e08f29294067abeea0d8cc7368d81bdfdc46a323d90c5c19fe5c1adada" }, "downloads": -1, "filename": "hubspot3-3.2.4.tar.gz", "has_sig": false, "md5_digest": "1e6ccaf8bb570a20e45bb05bfe14271e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20430, "upload_time": "2019-04-15T12:56:00", "upload_time_iso_8601": "2019-04-15T12:56:00.805078Z", "url": "https://files.pythonhosted.org/packages/8c/21/6a9dbaf7dd2e52eb97b40a209a8539978a5d6f1456cc7aa96ae067a0d41d/hubspot3-3.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.40": [ { "comment_text": "", "digests": { "md5": "f2f781d293f4d704165688c557d4d0f7", "sha256": "c5b3107c134d640999d607ef7ebeb27b8a613c096f809b26325e24743db9fd75" }, "downloads": -1, "filename": "hubspot3-3.2.40.tar.gz", "has_sig": false, "md5_digest": "f2f781d293f4d704165688c557d4d0f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37373, "upload_time": "2019-12-07T18:27:43", "upload_time_iso_8601": "2019-12-07T18:27:43.798828Z", "url": "https://files.pythonhosted.org/packages/28/8f/a596e6ed59c402ee8b4deb77e833250ec7f7338bb21e061009b3c89ead42/hubspot3-3.2.40.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.41": [ { "comment_text": "", "digests": { "md5": "ca31f5c0784e94f5f4d98fed8299da4c", "sha256": "c48390b65329487f2cece1deb28fcfc9669561931928dfcdfd8587c772399342" }, "downloads": -1, "filename": "hubspot3-3.2.41.tar.gz", "has_sig": false, "md5_digest": "ca31f5c0784e94f5f4d98fed8299da4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37584, "upload_time": "2019-12-16T13:55:05", "upload_time_iso_8601": "2019-12-16T13:55:05.161511Z", "url": "https://files.pythonhosted.org/packages/8e/3b/c626bac5213a5e0651315faaf8981c9bfcd034dde4a97dc62161de1076bd/hubspot3-3.2.41.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.42": [ { "comment_text": "", "digests": { "md5": "fefac76d223d73424194414c44ac7077", "sha256": "c770aaaebb1e70e05a6efde02b613cb0bb6256d1f8adc329e528a5049b06c110" }, "downloads": -1, "filename": "hubspot3-3.2.42.tar.gz", "has_sig": false, "md5_digest": "fefac76d223d73424194414c44ac7077", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37700, "upload_time": "2020-01-05T19:16:11", "upload_time_iso_8601": "2020-01-05T19:16:11.893639Z", "url": "https://files.pythonhosted.org/packages/a5/65/8049e388570a199b9cfa4e1ecb60f5315e8ce2c1e8541d5c69073a15744d/hubspot3-3.2.42.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.43": [ { "comment_text": "", "digests": { "md5": "3adb945631c5173c36f60c6ad7c9f202", "sha256": "5189cbc431b91c5aa7b18bd08891acea52bbfc8a0e9a457f89b35e627cc47639" }, "downloads": -1, "filename": "hubspot3-3.2.43.tar.gz", "has_sig": false, "md5_digest": "3adb945631c5173c36f60c6ad7c9f202", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37942, "upload_time": "2020-02-23T18:01:47", "upload_time_iso_8601": "2020-02-23T18:01:47.276929Z", "url": "https://files.pythonhosted.org/packages/10/96/0a0203d3de21eb6a37e727bcfe808f4facf2ae7fb44f5d3ba6a536c3b552/hubspot3-3.2.43.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.44": [ { "comment_text": "", "digests": { "md5": "d254bc73a5d6d905a21a4d43ed67284a", "sha256": "befca52aad2394aad85f9d145daa8b7089b6df47fc6802389758f10e4f61ae6e" }, "downloads": -1, "filename": "hubspot3-3.2.44.tar.gz", "has_sig": false, "md5_digest": "d254bc73a5d6d905a21a4d43ed67284a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37917, "upload_time": "2020-02-25T19:05:57", "upload_time_iso_8601": "2020-02-25T19:05:57.656292Z", "url": "https://files.pythonhosted.org/packages/b5/80/9793c5cf2817d44ed588c2c519879475dac17e8aaaf1e4ac1bbbe069393c/hubspot3-3.2.44.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.45": [ { "comment_text": "", "digests": { "md5": "65b848749224cb78cc6c9f98de1f941e", "sha256": "1f229b0f2daf95002621cce3500a848b8f7915befa6620a7f9939a01d0c0bf29" }, "downloads": -1, "filename": "hubspot3-3.2.45.tar.gz", "has_sig": false, "md5_digest": "65b848749224cb78cc6c9f98de1f941e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37976, "upload_time": "2020-03-02T22:43:57", "upload_time_iso_8601": "2020-03-02T22:43:57.284881Z", "url": "https://files.pythonhosted.org/packages/83/78/223d78b9f273804cca474185c18fcd05b401b2fc0b372dfe82abfeaa24a1/hubspot3-3.2.45.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.46": [ { "comment_text": "", "digests": { "md5": "dfa295cb5c9ded55ce3606e25c5abfed", "sha256": "602d541171b66739a9a0b81627c98c53c7e9b6b24056cfad37fabb6da6bb093f" }, "downloads": -1, "filename": "hubspot3-3.2.46.tar.gz", "has_sig": false, "md5_digest": "dfa295cb5c9ded55ce3606e25c5abfed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37968, "upload_time": "2020-03-11T20:56:05", "upload_time_iso_8601": "2020-03-11T20:56:05.778290Z", "url": "https://files.pythonhosted.org/packages/5e/5b/c557c0e980c15988c327f6d8f302df95c6bd907f0a9661bfa4906363ab1d/hubspot3-3.2.46.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.47": [ { "comment_text": "", "digests": { "md5": "38e5da852a7b139802b7c016f25e2a63", "sha256": "d93db266cea475644badcdf08e71ed42f71a7159bdf525288d8d024f1dd1a927" }, "downloads": -1, "filename": "hubspot3-3.2.47.tar.gz", "has_sig": false, "md5_digest": "38e5da852a7b139802b7c016f25e2a63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38032, "upload_time": "2020-03-20T13:38:43", "upload_time_iso_8601": "2020-03-20T13:38:43.648215Z", "url": "https://files.pythonhosted.org/packages/c2/ef/7587c9ba960da937e68d4b208cb42d7a68d624d886f6d2c31b897b350adf/hubspot3-3.2.47.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.48": [ { "comment_text": "", "digests": { "md5": "08304d45833110fd154af6d9865e4c43", "sha256": "41834a8f439e3299e2968f4dd820079327da26d27abdf9e1198d01409ca750b0" }, "downloads": -1, "filename": "hubspot3-3.2.48.tar.gz", "has_sig": false, "md5_digest": "08304d45833110fd154af6d9865e4c43", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38221, "upload_time": "2020-03-31T23:34:07", "upload_time_iso_8601": "2020-03-31T23:34:07.530362Z", "url": "https://files.pythonhosted.org/packages/a2/eb/b22ea2ed3243dd8c9c90cdd33ad2d059be8f509b3246cc3e2c3716023827/hubspot3-3.2.48.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.49": [ { "comment_text": "", "digests": { "md5": "e80b2c3a18f81539e74def63fd8fcc6c", "sha256": "d1c1ef3f2b3189d66d823c07fd2491e84d4742ec099bee713c620fc59a4fd1b8" }, "downloads": -1, "filename": "hubspot3-3.2.49.tar.gz", "has_sig": false, "md5_digest": "e80b2c3a18f81539e74def63fd8fcc6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39131, "upload_time": "2020-04-12T16:05:17", "upload_time_iso_8601": "2020-04-12T16:05:17.657249Z", "url": "https://files.pythonhosted.org/packages/29/99/4b2a664c1980fe5d39b7403812507f348b59aef32da0f02467492c4e46ba/hubspot3-3.2.49.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.5": [ { "comment_text": "", "digests": { "md5": "ed0a8df7f7e6c424771e11aae357373f", "sha256": "69efdac3f58f8a7d8958f47868fa062aa95fac217e99ee3a271e7ebeec05e987" }, "downloads": -1, "filename": "hubspot3-3.2.5.tar.gz", "has_sig": false, "md5_digest": "ed0a8df7f7e6c424771e11aae357373f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21166, "upload_time": "2019-04-15T18:39:29", "upload_time_iso_8601": "2019-04-15T18:39:29.718411Z", "url": "https://files.pythonhosted.org/packages/ab/da/f725d88285dc07517acdffa4e0d91b355dbcd61a38964fbf2ff08e8406ba/hubspot3-3.2.5.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.50": [ { "comment_text": "", "digests": { "md5": "594dca2b33d634c658bf6fc2eadf7103", "sha256": "89848ba20bea5bc3850f58cded61671a284d5c2390be840bd8f7604ba5cb9e61" }, "downloads": -1, "filename": "hubspot3-3.2.50.tar.gz", "has_sig": false, "md5_digest": "594dca2b33d634c658bf6fc2eadf7103", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38353, "upload_time": "2020-05-13T20:05:33", "upload_time_iso_8601": "2020-05-13T20:05:33.029770Z", "url": "https://files.pythonhosted.org/packages/b7/47/04b448d6b77dffe4e4eb37253e6c45f1edb821679dd42d7d74c8f3a96e1b/hubspot3-3.2.50.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.51": [ { "comment_text": "", "digests": { "md5": "7aca134f89d22752e1ca8831e342d357", "sha256": "f991e0d9f8ece498d0356f735a1b6b7aa8a813efb976868992d551894eec849e" }, "downloads": -1, "filename": "hubspot3-3.2.51-py3-none-any.whl", "has_sig": false, "md5_digest": "7aca134f89d22752e1ca8831e342d357", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 55289, "upload_time": "2021-10-04T03:58:45", "upload_time_iso_8601": "2021-10-04T03:58:45.965504Z", "url": "https://files.pythonhosted.org/packages/05/cb/945778ce7e5e7142a2afbef93a28077475c1777551792bd55f41c96af7bb/hubspot3-3.2.51-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9145d757dcf2697367c0fd7f7fd5e806", "sha256": "d0162da07c6bdcf0e2b9f105a09df86b713429716fcd38efaa42d1ab833fc5f1" }, "downloads": -1, "filename": "hubspot3-3.2.51.tar.gz", "has_sig": false, "md5_digest": "9145d757dcf2697367c0fd7f7fd5e806", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40373, "upload_time": "2021-10-04T03:58:47", "upload_time_iso_8601": "2021-10-04T03:58:47.873043Z", "url": "https://files.pythonhosted.org/packages/fa/53/708b32db620de162c9c2d40eb04227df4cf3bc42016fa2a128e53a18d2ec/hubspot3-3.2.51.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.6": [ { "comment_text": "", "digests": { "md5": "f39ccb62f3ecba78d082f681ab6241fa", "sha256": "c7ca9d8e5fe5b5f36f0bbb91760bf5eea90421dcec99455d22248e644bff57d2" }, "downloads": -1, "filename": "hubspot3-3.2.6.tar.gz", "has_sig": false, "md5_digest": "f39ccb62f3ecba78d082f681ab6241fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21257, "upload_time": "2019-04-24T13:01:06", "upload_time_iso_8601": "2019-04-24T13:01:06.264560Z", "url": "https://files.pythonhosted.org/packages/15/e2/e01cf53c8f4c83e5f960f77876606f30ff86607131984eaf04586d7fc7b0/hubspot3-3.2.6.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.7": [ { "comment_text": "", "digests": { "md5": "6696d75bd769e17ee78c09e4fb8d748d", "sha256": "1653769008647520b1762609549c7f54b052925a364916983df34db3537ec95a" }, "downloads": -1, "filename": "hubspot3-3.2.7.tar.gz", "has_sig": false, "md5_digest": "6696d75bd769e17ee78c09e4fb8d748d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19840, "upload_time": "2019-04-24T16:49:43", "upload_time_iso_8601": "2019-04-24T16:49:43.434230Z", "url": "https://files.pythonhosted.org/packages/a4/6b/56c7e64170ababdee7ad7065864158e75051c07041b85781a5e5da915744/hubspot3-3.2.7.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.8": [ { "comment_text": "", "digests": { "md5": "7889b24a0e5790ec8e70c43c64b04f27", "sha256": "fb5441055eca2d690de74665664f0ce9b5b6b0622aa9df30fa1521e38fc4e631" }, "downloads": -1, "filename": "hubspot3-3.2.8.tar.gz", "has_sig": false, "md5_digest": "7889b24a0e5790ec8e70c43c64b04f27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22120, "upload_time": "2019-05-17T16:16:03", "upload_time_iso_8601": "2019-05-17T16:16:03.197696Z", "url": "https://files.pythonhosted.org/packages/25/01/0643304fb0a0dd14f40cd5f2087c794cfd5a4e7c494c9b27fc5d7a856f23/hubspot3-3.2.8.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.9": [ { "comment_text": "", "digests": { "md5": "cc85228b5510b8b25954b26f280eedf1", "sha256": "805f819dfd04561cf8b174873acb58037410b3092f92ba4f9db1186710013947" }, "downloads": -1, "filename": "hubspot3-3.2.9.tar.gz", "has_sig": false, "md5_digest": "cc85228b5510b8b25954b26f280eedf1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22671, "upload_time": "2019-05-24T01:29:27", "upload_time_iso_8601": "2019-05-24T01:29:27.870185Z", "url": "https://files.pythonhosted.org/packages/7b/82/c950673652b2adf198ccd7fd15e1d83782ddd8fd9cd12bebe3fd65ad72b8/hubspot3-3.2.9.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7aca134f89d22752e1ca8831e342d357", "sha256": "f991e0d9f8ece498d0356f735a1b6b7aa8a813efb976868992d551894eec849e" }, "downloads": -1, "filename": "hubspot3-3.2.51-py3-none-any.whl", "has_sig": false, "md5_digest": "7aca134f89d22752e1ca8831e342d357", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 55289, "upload_time": "2021-10-04T03:58:45", "upload_time_iso_8601": "2021-10-04T03:58:45.965504Z", "url": "https://files.pythonhosted.org/packages/05/cb/945778ce7e5e7142a2afbef93a28077475c1777551792bd55f41c96af7bb/hubspot3-3.2.51-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9145d757dcf2697367c0fd7f7fd5e806", "sha256": "d0162da07c6bdcf0e2b9f105a09df86b713429716fcd38efaa42d1ab833fc5f1" }, "downloads": -1, "filename": "hubspot3-3.2.51.tar.gz", "has_sig": false, "md5_digest": "9145d757dcf2697367c0fd7f7fd5e806", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40373, "upload_time": "2021-10-04T03:58:47", "upload_time_iso_8601": "2021-10-04T03:58:47.873043Z", "url": "https://files.pythonhosted.org/packages/fa/53/708b32db620de162c9c2d40eb04227df4cf3bc42016fa2a128e53a18d2ec/hubspot3-3.2.51.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }