{ "info": { "author": "Aaron Toth", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries" ], "description": "MyGeotab\n========\n\n.. image:: https://img.shields.io/circleci/project/github/Geotab/mygeotab-python/master.svg?style=flat\n :target: https://circleci.com/gh/Geotab/mygeotab-python\n :alt: Build Status\n\n.. image:: https://readthedocs.org/projects/mygeotab-python/badge/?version=latest\n :target: https://readthedocs.org/projects/mygeotab-python/?badge=latest\n :alt: Documentation Status\n\n.. image:: https://img.shields.io/codecov/c/github/Geotab/mygeotab-python/master.svg?style=flat\n :target: https://codecov.io/gh/Geotab/mygeotab-python\n :alt: Code Coverage\n\n.. image:: https://img.shields.io/pypi/v/mygeotab.svg?style=flat\n :target: https://pypi.python.org/pypi/mygeotab\n :alt: PyPI Version\n\n.. image:: https://img.shields.io/pypi/pyversions/mygeotab.svg\n :target: https://pypi.python.org/pypi/mygeotab\n :alt: Python Versions\n\n.. image:: https://img.shields.io/pypi/l/mygeotab.svg\n :target: https://pypi.python.org/pypi/mygeotab\n :alt: License\n\n\nAn Apache2 Licensed, unofficial Python client for the `MyGeotab SDK `_.\n\nAlso bundled is the \"myg\" command line tool, which is a sandboxed console for quickly querying and operating on\nMyGeotab data.\n\nFeatures\n--------\n\n- Automatic serializing and de-serializing of JSON results\n- Clean, Pythonic API for querying data\n- Cross-platform and compatible with Python 2.7.9+ and 3.4+\n\nUsage\n-----\n\nIt's very easy to get started once you've registered with `MyGeotab `_:\n\n.. code-block:: python\n\n import mygeotab\n\n client = mygeotab.API(username='hello@example.com', password='mypass', database='MyDatabase')\n client.authenticate()\n\n devices = client.get('Device', name='%Test Dev%')\n\n print(devices)\n\n # [{'maxSecondsBetweenLogs': 200.0,\n # 'activeTo': '2050-01-01',\n # 'minAccidentSpeed': 3.0,\n # 'ignoreDownloadsUntil': '1986-01-01',\n # 'name': 'Test Device',\n # 'idleMinutes': 3.0,\n # ......\n\nIf you're using Python 3.5 and higher, you can also make calls asynchronously via `asyncio `__:\n\n.. code-block:: python\n\n import asyncio\n import mygeotab\n\n client = mygeotab.API(username='hello@example.com', password='mypass', database='MyDatabase')\n client.authenticate()\n\n async def get_device():\n return await client.get_async('Device', name='%Test Dev%')\n\n devices = loop.run_until_complete(get_device())\n print(devices)\n\n # [{'maxSecondsBetweenLogs': 200.0,\n # 'activeTo': '2050-01-01',\n # 'minAccidentSpeed': 3.0,\n # 'ignoreDownloadsUntil': '1986-01-01',\n # 'name': 'Test Device',\n # 'idleMinutes': 3.0,\n # ......\n\nInstallation\n------------\n\nTo install the MyGeotab library and command line tool:\n\n.. code-block:: bash\n\n $ pip install mygeotab\n\nor for the bleeding-edge version:\n\n.. code-block:: bash\n\n $ pip install git+https://github.com/geotab/mygeotab-python\n\nDocumentation\n-------------\n\nRead the docs at ``_\n\n\n.. :changelog:\n\nChanges\n-------\n\n0.8.5 (2019-10-07)\n++++++++++++++++++\n\n**Bug Fixes**\n\n- Fixes issue with warnings from Arrow about date parsing `#306 `__.\n\n\n0.8.4 (2019-08-22)\n++++++++++++++++++\n\n**Bug Fixes**\n\n- Fixes issue with serialization of datetime.date objects `#284 `__.\n\n\n0.8.3 (2019-08-19)\n++++++++++++++++++\n\n**Improvements**\n\n- Use the high-performance `python-rapidjson `__ library to serialize and deserialize JSON parameters and responses in Python 3.5+ `#268 `__. \n\n**Bug Fixes**\n\n- Silence warnings from arrow parsing when the library is used interactively or in a Jupyter notebook.\n\n**Housecleaning**\n\n- Added serialization benchmarking in CircleCI tests.\n- Remove PyPy test config.\n\n0.8.2 (2019-06-10)\n++++++++++++++++++\n\n**Bug Fixes**\n\n- Remove asyncio-specific default arguments preventing from importing this pacakge in a Python 3.5+ thread `#236 `__.\n\n0.8.1 (2019-06-03)\n++++++++++++++++++\n\n**Improvements**\n\n- Return content with a non-JSON content type as text\n\n**Bug Fixes**\n\n- Handle serialization of very old dates `#121 `__.\n\n0.8.0 (2018-06-18)\n++++++++++++++++++\n\n**Improvements**\n\n- Python 3.7 support.\n- Raises an exception when request was not successful.\n- Documentation improvements.\n\n**Bug Fixes**\n\n- Since all MyGeotab servers enforce the use of TLS1.2, Python 2.7.9 or greater is required.\n- Fix issue where the password was not provided when retrying authentication. Should better handle `#92 `__.\n\n\n0.6.2 (2017-07-04)\n++++++++++++++++++\n\n**Bug Fixes**\n\n- Revert the change to stop compilation in setup.cfg.\n\n\n0.6.1 (2017-07-03)\n++++++++++++++++++\n\n**Bug Fixes**\n\n- Don't compile to prevent issues when installing via setup.py on Python 2.7.\n\n\n0.6.0 (2017-06-29)\n++++++++++++++++++\n\n**Improvements**\n\n- Configurable timeouts when making calls.\n- Removed `verify` parameter from API objects as SSL is required when calling a MyGeotab server.\n- Removed `run` command from the CLI.\n- Removed deprecated `API.search` and `API.search_async` methods.\n- Refactored setup.py for async API. The async/awaitable methods are now automatically a part of the `API` object if using Python 3.5 or higher\n- Code linting and cleanup\n\n\n0.5.4 (2017-06-05)\n++++++++++++++++++\n\n**Bug Fixes**\n\n- Ensure all dates are timezone aware and are always UTC-localized.\n\n\n0.5.3 (2017-05-30)\n++++++++++++++++++\n\n**Bug Fixes**\n\n- Fixed intermittent timeout errors due to `upstream changes `_ in the 'requests' module\n\n\n0.5.2 (2017-02-02)\n++++++++++++++++++\n\n**Bug Fixes**\n\n- Switched back to using abstract dependencies in setup.py (recommended by `this guide `_)\n\n0.5.1 (2017-01-04)\n++++++++++++++++++\n\n**Bug Fixes**\n\n- Fix for search parameter not being properly handled in 'get()' call\n\n\n0.5 (2017-01-02)\n++++++++++++++++\n\n**Enhancements**\n\n- Deprecated the 'search()' and 'search_async()' functions. Replaced by folding the previous functionality into 'run()'.\n- Removed 'tzlocal' dependency. Always deal with dates in UTC by default.\n- Prefer functions instead of making static methods in classes.\n- Added helper to run async calls and collect their results\n- Add ability to quickly run simple python scripts from the 'myg' console with no need for any authentication handling. Similar to 'console', but for running scripts rather than creating an interactive console.\n\n\n0.4.4 (2016-07-10)\n++++++++++++++++++\n\n**Enhancements**\n\n- Added the ability to make unauthenticated calls (like \"GetVersion\") with the static \"API.server_call\" method\n- Added asyncio-based API query methods (Python 3.5+ only) into the \"ext\" package\n- Moved the datafeed to the \"ext\" package, as well\n\n**Bug Fixes**\n\n- MyGeotab never returns 3 digits of milliseconds, so follow that format as well to allow the use of \"dates.format_iso_datetime\" to create MyGeotab URLs\n\n0.4.2 (2016-03-17)\n++++++++++++++++++\n\n**Bug Fixes**\n\n- Use a custom User-Agent when making requests\n\n0.4 (2016-02-25)\n++++++++++++++++\n\n**Enhancements**\n\n- Extension for facilitating use of the MyGeotab `Data Feed `_\n- Allow Pythonic underscore-separated parameters mapped to camelcase ones\n- Force the use of TLS 1.2 for `upcoming strict security requirements `_ in MyGeotab\n (Note that TLS 1.2 is only supported in Python 2.7.9+ and 3.4+)\n\n**Bug Fixes**\n\n- Fixed issue with CLI console startup\n- Use the system's default user location for config files\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/geotab/mygeotab-python", "keywords": "", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "mygeotab", "package_url": "https://pypi.org/project/mygeotab/", "platform": "", "project_url": "https://pypi.org/project/mygeotab/", "project_urls": { "Homepage": "https://github.com/geotab/mygeotab-python" }, "release_url": "https://pypi.org/project/mygeotab/0.8.5/", "requires_dist": [ "requests", "click", "pytz", "arrow", "six", "aiohttp ; python_version>='3.5'", "python-rapidjson ; python_version>='3.5'", "ipython ; extra == 'console'" ], "requires_python": "", "summary": "An unofficial Python client for the MyGeotab API", "version": "0.8.5" }, "last_serial": 5939020, "releases": { "0.1.1": [ { "comment_text": "", "digests": { "md5": "089f60725381ab6e744733244b0c923a", "sha256": "8a2a6dfb0c7afd354b1160655b525e3999352146c51c469450ccc92e7da9a127" }, "downloads": -1, "filename": "mygeotab-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "089f60725381ab6e744733244b0c923a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9845, "upload_time": "2015-06-15T17:14:07", "url": "https://files.pythonhosted.org/packages/cf/08/62fc30e6dcd4454f08a852369efc6d0ff7daf10d329ed3c9c7c897df896d/mygeotab-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9620f19b4e34fdcb091b415baa368051", "sha256": "ab7c21c152c7faaa7bc5534386204e0def0b07e32eac74bfc0063584a4490c2f" }, "downloads": -1, "filename": "mygeotab-0.1.1.zip", "has_sig": false, "md5_digest": "9620f19b4e34fdcb091b415baa368051", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11118, "upload_time": "2015-06-15T17:14:10", "url": "https://files.pythonhosted.org/packages/89/71/f9fe9bb293dbfb0e56a4ec5f694bde3a519f9a2f95be8cfff1ae8de6db54/mygeotab-0.1.1.zip" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "a05b7856764f3e001dab1d773bfb72a0", "sha256": "6fe7de36846964a6df73b534759e2e54f2dba43d496546532590baa37da282a3" }, "downloads": -1, "filename": "mygeotab-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a05b7856764f3e001dab1d773bfb72a0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9976, "upload_time": "2015-06-16T17:46:50", "url": "https://files.pythonhosted.org/packages/3f/0a/0b24db6113df6d98daabc235e28199482d91e3397d0135b200e9e6dc27d3/mygeotab-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eb0cdfe0c43e9f659a6b14dbe0eabe5a", "sha256": "6bbdd6a2066bf643b514b8b4844175b1847ff8e4ace32f1019bd7540bfca4f83" }, "downloads": -1, "filename": "mygeotab-0.1.2.zip", "has_sig": false, "md5_digest": "eb0cdfe0c43e9f659a6b14dbe0eabe5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11324, "upload_time": "2015-06-16T17:46:54", "url": "https://files.pythonhosted.org/packages/72/45/c46260616c01f9b21e45673cb81e8f50745f333018a1148626af9f0846c1/mygeotab-0.1.2.zip" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "dcc98217137b9beb04c2f209c79e18f0", "sha256": "13bbf4eef72f021428166cc2400360ba990f3b3817f3fdcf394325c4d1f56ec6" }, "downloads": -1, "filename": "mygeotab-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dcc98217137b9beb04c2f209c79e18f0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11107, "upload_time": "2015-06-19T02:34:09", "url": "https://files.pythonhosted.org/packages/6e/79/318b31f4c8278879aa40742290c0a36c3414685e39111debe7afd393f5a8/mygeotab-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "415b52b36c7a6cc0dcdfd26febf2e31b", "sha256": "6182ff41fb7fd483989f8805d56384940dc99184d55c8dace42d0bc4abfd34dd" }, "downloads": -1, "filename": "mygeotab-0.1.5.zip", "has_sig": false, "md5_digest": "415b52b36c7a6cc0dcdfd26febf2e31b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11944, "upload_time": "2015-06-19T02:33:51", "url": "https://files.pythonhosted.org/packages/d3/06/3e7790e2d393558e83d0b67af65713d96f21c775885efa748fe9b77ac79f/mygeotab-0.1.5.zip" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "33ac29620cf3361f26b080a2e66b96e5", "sha256": "89b3a31027c5e8242e3e3a3d1ecc284e41853c21ac579a4e88545f0cab7ee716" }, "downloads": -1, "filename": "mygeotab-0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "33ac29620cf3361f26b080a2e66b96e5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10642, "upload_time": "2015-12-08T03:32:49", "url": "https://files.pythonhosted.org/packages/54/47/84cac8e2ae8f2dcd3c4e06c66fa9b7c3cc8d191139057e02c13f83948bee/mygeotab-0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "50a0fb26fbaf0658d29fd1ac7c0e091a", "sha256": "8bf2c5bb05cea9d234e420e17231c6dcf671f6824489875237b6099628f6139a" }, "downloads": -1, "filename": "mygeotab-0.3.tar.gz", "has_sig": false, "md5_digest": "50a0fb26fbaf0658d29fd1ac7c0e091a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7549, "upload_time": "2015-12-08T03:32:54", "url": "https://files.pythonhosted.org/packages/2e/9e/24142195f503ac87335aa8196204f2c20b31f6f9a4db9afd778324419a62/mygeotab-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "7b5c7d846f9d763f73d8d3b3018b9877", "sha256": "7dfc08acf2af8133984ee1d2b607527077629872e1f059cbc7f20a5b198d13c3" }, "downloads": -1, "filename": "mygeotab-0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7b5c7d846f9d763f73d8d3b3018b9877", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13790, "upload_time": "2016-02-25T18:25:57", "url": "https://files.pythonhosted.org/packages/61/f0/603c3c3659e6fd9adf3b12982f2100849e8fe2bd1fa60eee57f88018b798/mygeotab-0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a80c8ddfe2dfa1dc51e09bd373acfa68", "sha256": "283e13309bdbe3781166c96da8aea0784b5791c40513b0c7c0e0f887e86593ff" }, "downloads": -1, "filename": "mygeotab-0.4.tar.gz", "has_sig": false, "md5_digest": "a80c8ddfe2dfa1dc51e09bd373acfa68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9105, "upload_time": "2016-02-25T18:35:24", "url": "https://files.pythonhosted.org/packages/5b/12/282c9179a99120c5cd3524e6367e1a5d8d5fa8faf1890a8c3b7a31d246f2/mygeotab-0.4.tar.gz" }, { "comment_text": "", "digests": { "md5": "41d8b292d95f89c2cb0c86538c441ef8", "sha256": "2ba2011fe3f8d479160a1f28c4386c3125c896b17ee8e53d4ddb597709b25499" }, "downloads": -1, "filename": "mygeotab-0.4.zip", "has_sig": false, "md5_digest": "41d8b292d95f89c2cb0c86538c441ef8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14258, "upload_time": "2016-02-25T18:26:08", "url": "https://files.pythonhosted.org/packages/6f/db/b07239d2aee251de8e3a1a9b60858da32948edc16a9d8101ae7b11037167/mygeotab-0.4.zip" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "09d692ff7dc47eb3d60c6e75798d85bf", "sha256": "1bae5f94e836077dfdacb029e7f7e3941eb5fae0f2904da2fb7794bff54d87bb" }, "downloads": -1, "filename": "mygeotab-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "09d692ff7dc47eb3d60c6e75798d85bf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12834, "upload_time": "2016-03-17T02:16:32", "url": "https://files.pythonhosted.org/packages/8e/fb/bf844f1a79c15f1f6c5b117c96050a35b45f0c17adff80e5585bd807d5ce/mygeotab-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9d359a163fdd719fe062d5d2f08128ff", "sha256": "71404199bb9cfd1e986b609c9acfa2decedcdfee41fc2e55e47cde87ba44df62" }, "downloads": -1, "filename": "mygeotab-0.4.1.tar.gz", "has_sig": false, "md5_digest": "9d359a163fdd719fe062d5d2f08128ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9108, "upload_time": "2016-03-17T02:16:56", "url": "https://files.pythonhosted.org/packages/0f/75/21dc476c3f28daf580d2a02f20e893d03fbea8e702c88ef355f2a6d98ceb/mygeotab-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "1d5c34e126197c531d4086a04e4f6a60", "sha256": "303724f7731143d36b2f0901fd956d8c4ac6210b508d14a758aab7b2674fa2f1" }, "downloads": -1, "filename": "mygeotab-0.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1d5c34e126197c531d4086a04e4f6a60", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13962, "upload_time": "2016-03-17T14:28:16", "url": "https://files.pythonhosted.org/packages/a3/e2/74631efb946d770d773cac845e6a39f720881fff230202a5aa7c1eaae954/mygeotab-0.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ae0265c89ebf1f03e69d275c6efd0026", "sha256": "c778710b6c325991b7c6de9ec909653857b4dacc399f841a76d2acdf81b186cb" }, "downloads": -1, "filename": "mygeotab-0.4.2.tar.gz", "has_sig": false, "md5_digest": "ae0265c89ebf1f03e69d275c6efd0026", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9232, "upload_time": "2016-03-17T14:28:22", "url": "https://files.pythonhosted.org/packages/93/17/b499cd91bd360881f15b7d2b9513b39b6f13966af281cb87a10a9691719e/mygeotab-0.4.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "71effc3e28a1b3c002d5d99bcc77ff22", "sha256": "20c32b07b0e9fd2649142014982f3747fcc0ccc5d1e75d50156abef5b35cb5b5" }, "downloads": -1, "filename": "mygeotab-0.4.2.zip", "has_sig": false, "md5_digest": "71effc3e28a1b3c002d5d99bcc77ff22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14476, "upload_time": "2016-03-17T14:28:26", "url": "https://files.pythonhosted.org/packages/d0/58/e206036ab4274be935bee6416483593b74da1cb179f69c88d4a170963a03/mygeotab-0.4.2.zip" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "33103f76995da04bd036b031de521b22", "sha256": "54e83df2cd9e024b9003f52494388ba529f61faef70c324f24897faeb213f8cd" }, "downloads": -1, "filename": "mygeotab-0.4.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "33103f76995da04bd036b031de521b22", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16636, "upload_time": "2016-07-11T01:09:57", "url": "https://files.pythonhosted.org/packages/58/e9/d6267fcb7b16b501ba10143a7bf1908e211f4ad9ee7d09814b4a6c6f91b7/mygeotab-0.4.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fd08dd0983a45926f983c3f45ea59d51", "sha256": "8e22e873f029343ad436a2812e2f250adbe28c10f88ba9dabcb983e323fd95aa" }, "downloads": -1, "filename": "mygeotab-0.4.4.tar.gz", "has_sig": false, "md5_digest": "fd08dd0983a45926f983c3f45ea59d51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10182, "upload_time": "2016-07-11T01:10:00", "url": "https://files.pythonhosted.org/packages/db/63/3c49879f211eedfe9de585f494b748c4af5f115f9b97574318f6744554c4/mygeotab-0.4.4.tar.gz" }, { "comment_text": "", "digests": { "md5": "84e38159f9fe5fa1c51a89b445fe99ae", "sha256": "4787aced8a20f8358f2cd602338aa79d42d482caa2c4466383337fe2161285ec" }, "downloads": -1, "filename": "mygeotab-0.4.4.zip", "has_sig": false, "md5_digest": "84e38159f9fe5fa1c51a89b445fe99ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17212, "upload_time": "2016-07-11T01:10:02", "url": "https://files.pythonhosted.org/packages/14/ce/9b6cf03fb2d59b0a439a78843c92a40b5d944a7ea52c6c05831005156ad8/mygeotab-0.4.4.zip" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "3f11e093b126714c79253e5aeeae9d45", "sha256": "e004daa5d19c6b6e2b91f33317883a7ece26d8421e154575e8ca144019ea1ff0" }, "downloads": -1, "filename": "mygeotab-0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3f11e093b126714c79253e5aeeae9d45", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17096, "upload_time": "2017-01-03T01:00:35", "url": "https://files.pythonhosted.org/packages/6c/37/e404edc9cbb0334023f2e98806fd8429072659d65e7b08ba27543f6e1873/mygeotab-0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "10e7b7c7c65dffbc930270327fad7916", "sha256": "b9833491eb8df148fb1fc0454885596aab5913f130c48342936b165e82a65076" }, "downloads": -1, "filename": "mygeotab-0.5.tar.gz", "has_sig": false, "md5_digest": "10e7b7c7c65dffbc930270327fad7916", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11072, "upload_time": "2017-01-03T01:00:37", "url": "https://files.pythonhosted.org/packages/a2/10/ace6bcf005ed02eafd5090b76d4b5b30637e571b7aae17bb0775c9f66d99/mygeotab-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "2a215a301add6cd0b2e4bb961374bfcb", "sha256": "ea9ffe65a7b15c2b509a3fa8f5ebea19fbcccc0b0911d9b38e90b0712f0829f3" }, "downloads": -1, "filename": "mygeotab-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2a215a301add6cd0b2e4bb961374bfcb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17259, "upload_time": "2017-01-05T04:26:19", "url": "https://files.pythonhosted.org/packages/58/dc/2d3186913f84fd590a0551eb78198a75a473c9c93935a7c4a93a9bd84832/mygeotab-0.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "37fca89cb0e030dac8f794758206ce51", "sha256": "fb45437b35741da4789c6d18f3dda70d8a9b1a4ccde74be0a543c17979d78825" }, "downloads": -1, "filename": "mygeotab-0.5.1.tar.gz", "has_sig": false, "md5_digest": "37fca89cb0e030dac8f794758206ce51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11192, "upload_time": "2017-01-05T04:26:20", "url": "https://files.pythonhosted.org/packages/15/55/a222f942a6562612e9a29afbf7ab58c88ee44b447c5a39e9f491de6b9b07/mygeotab-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "3d52906b7ac7f27af2b3845801dbc3c2", "sha256": "f37567e2ce71b7beabaa16186c78f82810a3917bc6a57465f3a5dd347ede05e8" }, "downloads": -1, "filename": "mygeotab-0.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3d52906b7ac7f27af2b3845801dbc3c2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24032, "upload_time": "2017-02-02T19:12:42", "url": "https://files.pythonhosted.org/packages/44/9a/daa0bdd5e21d188e27755cff82578b6b7f1c0544be783a2860d3c0712131/mygeotab-0.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "27714809de7dfd16e2279c658fd12010", "sha256": "3325371d5822467cc802ebbd2b8f98caa61702d77910c0c6bc137e21369773fd" }, "downloads": -1, "filename": "mygeotab-0.5.2.tar.gz", "has_sig": false, "md5_digest": "27714809de7dfd16e2279c658fd12010", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15503, "upload_time": "2017-02-02T19:12:44", "url": "https://files.pythonhosted.org/packages/a3/8a/e697842a1266ad1aee249dab284c54bb2df055277904b77915e652133c99/mygeotab-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "dcec368c4accc302adba0ec9c5b064f7", "sha256": "35d82f23685d1ebb2f0b7d03f6dd23379d4e5d2d8a5499b15d1fe74ee300b57d" }, "downloads": -1, "filename": "mygeotab-0.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dcec368c4accc302adba0ec9c5b064f7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24101, "upload_time": "2017-05-31T00:06:41", "url": "https://files.pythonhosted.org/packages/d0/25/bd21a5b81c6e3649f49542df6badfa4903d42f265fdf759befaad4eac12b/mygeotab-0.5.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7d223d2a142c9e0bf8750a150aaa4a16", "sha256": "a2054e9a1500a8f84d230168d77ad3b6fee5fb70960a2e3d2cdf4655c4889b1b" }, "downloads": -1, "filename": "mygeotab-0.5.3.tar.gz", "has_sig": false, "md5_digest": "7d223d2a142c9e0bf8750a150aaa4a16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15548, "upload_time": "2017-05-31T00:06:42", "url": "https://files.pythonhosted.org/packages/05/cf/2c12edd0aff563624642f10ca873ee7f64d6fcdc7adb1d554cd7d3aff65e/mygeotab-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "f5ca10c8607c58260320f922e98d0880", "sha256": "7e8127e7235d8d2e73fa29dc25f4f218be3ab61c35cb7ff832b96aaefd7e6d52" }, "downloads": -1, "filename": "mygeotab-0.5.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f5ca10c8607c58260320f922e98d0880", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24215, "upload_time": "2017-06-06T03:50:50", "url": "https://files.pythonhosted.org/packages/af/ef/b2865b616be7b331b8612d4bf696e79a4d061474b5b7bee84b3b0f9c8bc1/mygeotab-0.5.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6c176a5af3ad8bb2a6fa50295e6f2f44", "sha256": "48e29238da3ce8c236475fcf144fafeda785b3d8c7660beb9ded88732e0e63dd" }, "downloads": -1, "filename": "mygeotab-0.5.4.tar.gz", "has_sig": false, "md5_digest": "6c176a5af3ad8bb2a6fa50295e6f2f44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15575, "upload_time": "2017-06-06T03:50:51", "url": "https://files.pythonhosted.org/packages/9a/64/3113dc08131bbd24e7bb6e7baee76bef444dd0567c0f42ca28ae6d6574f4/mygeotab-0.5.4.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "cde3c93bfeca9cd4b9ea587e76b7a108", "sha256": "a49eacaa83eb48f18e60595e6fa52b93d593310b1dfb1d61f97dddd5615d30b8" }, "downloads": -1, "filename": "mygeotab-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cde3c93bfeca9cd4b9ea587e76b7a108", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19736, "upload_time": "2017-06-30T00:09:58", "url": "https://files.pythonhosted.org/packages/d5/4a/7d88fdfe202115ad02c21d67db8745da5d1b2d271cb33cee16bbd7a6a808/mygeotab-0.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "84adf5e509a2883a24ce401446085e5d", "sha256": "9f9cc31a2b99b6b2a7c9c15ded54e06dd518d814d611fa2fcfc98795f547cfca" }, "downloads": -1, "filename": "mygeotab-0.6.0.tar.gz", "has_sig": false, "md5_digest": "84adf5e509a2883a24ce401446085e5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82954, "upload_time": "2017-06-30T00:10:00", "url": "https://files.pythonhosted.org/packages/eb/e5/213861665b4e95e725d3e59dc54579f923d8b2e1069409d475efc04bb0dd/mygeotab-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "3524ac0611899030d6d311780da4052e", "sha256": "e2a3c9f0a728323d03a73cb764709f3565137fcbd8244e64245532c8dbc5b622" }, "downloads": -1, "filename": "mygeotab-0.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3524ac0611899030d6d311780da4052e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19921, "upload_time": "2017-07-04T00:39:30", "url": "https://files.pythonhosted.org/packages/7c/73/683a45516beb6b77cd3968f1a06d2ca46821261533754b71f0fe6e0d889b/mygeotab-0.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f36563c6b6aceb0a890e27767a7e75bc", "sha256": "074c60f12d85f473eb6c95eb85a0521f6d66d523beb3b291b0ba713940ad4659" }, "downloads": -1, "filename": "mygeotab-0.6.1.tar.gz", "has_sig": false, "md5_digest": "f36563c6b6aceb0a890e27767a7e75bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83245, "upload_time": "2017-07-04T00:39:31", "url": "https://files.pythonhosted.org/packages/2d/1e/a527fbc9d38ca32eca9ce393c7bfe5b84da5763c518285ff7b643606f712/mygeotab-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "0fa40857d1c30d08b1530fb0243f18d5", "sha256": "70ada11dba16bc3f607ce272106366571b88a9e3b4d4d58b7ab5df6cc13ad3b1" }, "downloads": -1, "filename": "mygeotab-0.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0fa40857d1c30d08b1530fb0243f18d5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19990, "upload_time": "2017-07-05T01:00:46", "url": "https://files.pythonhosted.org/packages/45/cd/2bc6b6ec718034eb45bee7d393f350c29819a9ded25bb83b0e397136c5fb/mygeotab-0.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e771cc040ea06f99e88b16aa69ed6f45", "sha256": "53ee4073ecb3af388cb2e0bb4a8079a5ac38ae12c283915c6249e8e2dd83e0e6" }, "downloads": -1, "filename": "mygeotab-0.6.2.tar.gz", "has_sig": false, "md5_digest": "e771cc040ea06f99e88b16aa69ed6f45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83284, "upload_time": "2017-07-05T01:00:48", "url": "https://files.pythonhosted.org/packages/5c/a5/433efb4b378acc903a6b793a83893408ccb56bd2599eb789c744e708ca62/mygeotab-0.6.2.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "3e865db1d18b5ad186aea543a8c195c1", "sha256": "99c9bba307e37467d8daa817454b6e9a9d8cd6d5811856d60bea37739ec66152" }, "downloads": -1, "filename": "mygeotab-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3e865db1d18b5ad186aea543a8c195c1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17906, "upload_time": "2018-06-19T03:24:22", "url": "https://files.pythonhosted.org/packages/59/34/c3fd65ad2e7fa1d788b4501c43f85d8e7a456530fece5f9d7165255945e9/mygeotab-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ecfbf25c9e221ef02e1415b653ea4b9f", "sha256": "2cc724be4da4f93536137f3429a5dcba0bd8504bab9c51631a7b8092a9e4a077" }, "downloads": -1, "filename": "mygeotab-0.8.0.tar.gz", "has_sig": false, "md5_digest": "ecfbf25c9e221ef02e1415b653ea4b9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90885, "upload_time": "2018-06-19T03:24:23", "url": "https://files.pythonhosted.org/packages/56/09/36af5d809c5af2eeda4037b953dcb5d0d47f937b5e803f5b264b79386113/mygeotab-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "223ccc317f109edf166a5b7d30936332", "sha256": "6745a4495b8c27bcf9fc2715af7814852afada138f8b061f222d188b467917ae" }, "downloads": -1, "filename": "mygeotab-0.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "223ccc317f109edf166a5b7d30936332", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 37251, "upload_time": "2019-06-03T14:45:48", "url": "https://files.pythonhosted.org/packages/94/fd/eca86df316870492bd3504342d597cd11f198765f7c6546ec55b75d568ea/mygeotab-0.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a2b2b3cc1d4d8638ee3ac6a965c2a5c4", "sha256": "8c73ad982bbdfb320df717462a969f5abd7388f155d43a99338afe5464bdc36c" }, "downloads": -1, "filename": "mygeotab-0.8.1.tar.gz", "has_sig": false, "md5_digest": "a2b2b3cc1d4d8638ee3ac6a965c2a5c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 124658, "upload_time": "2019-06-03T14:45:50", "url": "https://files.pythonhosted.org/packages/97/52/cd17804110e8903bbec4e2e16c9370fe996c7b6323106aafe0b9ab4daca5/mygeotab-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "96ec285f341dee2e6c219c3406618a35", "sha256": "e15a17ec576712965e9c87c62deae95fee2e2cd3c59648b09c3e8c6ae07e40b7" }, "downloads": -1, "filename": "mygeotab-0.8.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "96ec285f341dee2e6c219c3406618a35", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22515, "upload_time": "2019-06-10T19:33:00", "url": "https://files.pythonhosted.org/packages/10/6d/fed99a8305594d9d9a2e912cdee9167df15bbafd3b83bb5b86c92aec3482/mygeotab-0.8.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "28c76678d4f71551135917b01794fd6a", "sha256": "bff98742e47718ad11d84f81906d230286f8967319bf8c02b5594e8374cb8023" }, "downloads": -1, "filename": "mygeotab-0.8.2.tar.gz", "has_sig": false, "md5_digest": "28c76678d4f71551135917b01794fd6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91619, "upload_time": "2019-06-10T19:33:02", "url": "https://files.pythonhosted.org/packages/dd/19/db7aed6ba9d3382ec6a2f70b7e05cb8fec827711b36c4160d05e83983dd1/mygeotab-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "2b768c515756f9c9fc5e730915838dda", "sha256": "bd4351f9346c5feeb16e3c27daf6312049c2b7ff3ab01888c6c7ecff48c800be" }, "downloads": -1, "filename": "mygeotab-0.8.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2b768c515756f9c9fc5e730915838dda", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22880, "upload_time": "2019-08-20T17:50:50", "url": "https://files.pythonhosted.org/packages/29/ec/fa832ea2ca0e0b168ea9871d37989d102146237423e63a99050fe7ef185c/mygeotab-0.8.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7a4cdcef376c09bfc6a65c1626e6bf98", "sha256": "7f3ab93c34ba625361fb9926c989b50913ec30380fa36edb7e2578b1dc12cf28" }, "downloads": -1, "filename": "mygeotab-0.8.3.tar.gz", "has_sig": false, "md5_digest": "7a4cdcef376c09bfc6a65c1626e6bf98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123915, "upload_time": "2019-08-20T17:50:52", "url": "https://files.pythonhosted.org/packages/d3/34/9d951895bb7fa08702f3981b9e2ae54becea93706d63fc61f8f88b94dd34/mygeotab-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "9aefdf870d04eebfdfeaca3a5596e883", "sha256": "635ff4cf2ef6a5b6c7171e8a04f062edd0c5b656b74ad084510badf3cac39dcd" }, "downloads": -1, "filename": "mygeotab-0.8.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9aefdf870d04eebfdfeaca3a5596e883", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22932, "upload_time": "2019-08-22T18:31:45", "url": "https://files.pythonhosted.org/packages/b0/27/cb1ac532a70e7c6325b9fa4d18ba12ee362092ad9cfc9d4bb40db09c2372/mygeotab-0.8.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "83f3e068f7b09260e23eb01f060d1ee7", "sha256": "5bb5a3407c9b4c47a20ba56e88396293ffe66564de3bc60a39b7a83d1ee4c1ee" }, "downloads": -1, "filename": "mygeotab-0.8.4.tar.gz", "has_sig": false, "md5_digest": "83f3e068f7b09260e23eb01f060d1ee7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 124063, "upload_time": "2019-08-22T18:31:46", "url": "https://files.pythonhosted.org/packages/63/ff/34f61a8f31d96fd25ad00e7855e4aff12064763b14611d3e726822be048a/mygeotab-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "6fded8fabbc5ef638cac4e46993c880c", "sha256": "f0313c0cd4c3060bd06124d5dd345e3efd16b243909ce6473db6f37b1c0b1737" }, "downloads": -1, "filename": "mygeotab-0.8.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6fded8fabbc5ef638cac4e46993c880c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22899, "upload_time": "2019-10-07T14:19:48", "url": "https://files.pythonhosted.org/packages/1a/20/dac430b7ef3689233b1b1798f2fe395c530b39c0bbd7b7a68de7b2bcdb0d/mygeotab-0.8.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "239bd241f8eeba0801427b66fe02782e", "sha256": "1d218c794216075d54a64b2571a440ccc4eb6d275c4ee54c29c3e30c1247c1dc" }, "downloads": -1, "filename": "mygeotab-0.8.5.tar.gz", "has_sig": false, "md5_digest": "239bd241f8eeba0801427b66fe02782e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123309, "upload_time": "2019-10-07T14:19:50", "url": "https://files.pythonhosted.org/packages/43/52/53869332f9739a3c9e699d932747dd0673bc610a535cfaa5b78561f0e331/mygeotab-0.8.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6fded8fabbc5ef638cac4e46993c880c", "sha256": "f0313c0cd4c3060bd06124d5dd345e3efd16b243909ce6473db6f37b1c0b1737" }, "downloads": -1, "filename": "mygeotab-0.8.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6fded8fabbc5ef638cac4e46993c880c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22899, "upload_time": "2019-10-07T14:19:48", "url": "https://files.pythonhosted.org/packages/1a/20/dac430b7ef3689233b1b1798f2fe395c530b39c0bbd7b7a68de7b2bcdb0d/mygeotab-0.8.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "239bd241f8eeba0801427b66fe02782e", "sha256": "1d218c794216075d54a64b2571a440ccc4eb6d275c4ee54c29c3e30c1247c1dc" }, "downloads": -1, "filename": "mygeotab-0.8.5.tar.gz", "has_sig": false, "md5_digest": "239bd241f8eeba0801427b66fe02782e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123309, "upload_time": "2019-10-07T14:19:50", "url": "https://files.pythonhosted.org/packages/43/52/53869332f9739a3c9e699d932747dd0673bc610a535cfaa5b78561f0e331/mygeotab-0.8.5.tar.gz" } ] }