{ "info": { "author": "Nils Nolde", "author_email": "nils@gis-ops.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy" ], "description": "\nrouting-py\n==========\n\n.. image:: https://travis-ci.org/gis-ops/routing-py.svg?branch=master\n :target: https://travis-ci.org/gis-ops/routing-py\n :alt: Build status\n\n.. image:: https://coveralls.io/repos/github/gis-ops/routing-py/badge.svg?branch=master\n :target: https://coveralls.io/github/gis-ops/routing-py?branch=master\n :alt: Coveralls coverage\n\n.. image:: https://readthedocs.org/projects/routingpy/badge/?version=latest\n :target: https://routingpy.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n.. image:: https://mybinder.org/badge_logo.svg\n :target: https://mybinder.org/v2/gh/gis-ops/routing-py/master?filepath=examples\n :alt: MyBinder.org\n\n\n*One lib to route them all* - **routingpy** is a Python 3 client for several\npopular routing webservices.\n\nInspired by `geopy `_ and its great community of contributors, **routingpy** enables\neasy and consistent access to third-party spatial webservices to request **route directions**, **isochrones**\nor **time-distance matrices**.\n\n**routingpy** currently includes support for the following services:\n\n- `Mapbox, either Valhalla or OSRM`_\n- `Openrouteservice`_\n- `Here Maps`_\n- `Google Maps`_\n- `Graphhopper`_\n- `Local Valhalla`_\n- `Local Mapbox`_\n\nThis list is hopefully growing with time and contributions by other developers. An up-to-date list is always availaable\nin our documentation_.\n\n**routing-py** is tested against CPython versions 3.5, 3.6, 3.7, 3.8-dev and against PyPy 3.5. As other major libraries like ``numpy``\nand ``pandas`` decided to drop Python 2 support, we did not see any reason to burden the project with the compatibility\nweight.\n\n\u00a9 routing-py contributors 2019 under the `Apache 2.0 License`_.\n\n.. image:: https://user-images.githubusercontent.com/10322094/57357720-e180c080-7173-11e9-97a4-cecb4670065d.jpg\n :alt: routing-py-image\n\n\nWhy routing-py?\n---------------\n\nYou want to\n\n- get from A to B by transit, foot, bike, car or hgv\n- compute a region of reachability\n- calculate a time distance matrix for a N x M table\n\nand don't know which provider to use? Great. Then **routingpy** is exactly what you're looking for.\n\nFor the better or worse, every provider works on different spatial global datasets and uses a plethora of algorithms on top.\nWhile Google or HERE build on top of proprietary datasets, providers such as Mapbox or Graphhopper consume OpenStreetMap data\nfor their base network. Also, all providers offer a different amount of options one can use to restrict the wayfinding.\nUltimately this means that **results may differ** - and our experience tells us: they do, and not\ntoo little. This calls for a careful evaluation which service provider to use for which specific use case.\n\nWith **routingpy** we have made an attempt to simplify this process for you.\n\nInstallation\n------------\n\n.. image:: https://badge.fury.io/py/routingpy.svg\n :target: https://badge.fury.io/py/routingpy\n :alt: PyPI version\n\n.. image:: https://anaconda.org/nilsnolde/routingpy/badges/version.svg\n :target: https://anaconda.org/nilsnolde/routingpy\n :alt: Conda install\n\nInstall using ``pip`` with\n\n.. code:: bash\n\n pip install routingpy\n\nOr with conda\n\n.. code:: bash\n\n conda install -c nilsnolde routingpy\n\nOr the lastest from source\n\n.. code:: bash\n\n pip install git+git://github.com/gis-ops/routing-py\n\n\n\nAPI\n-----------\n\nEvery provider has its own specifications and features. However the basic blueprints are the same across all. We tried hard\nto make the transition from one provider to the other as seamless as possible. We follow two dogmas for all implementations:\n\n- All basic parameters have to be the same for all routers for each endpoint\n\n- All routers still retain their special parameters for their endpoints, which make them unique in the end\n\nThis naturally means that usually those **basic parameters are not named the same way** as the endpoints they query. However,\nall **provider specific parameters are named the exact same** as their remote counterparts.\n\nThe following table gives you an overview which basic arguments are abstracted:\n\n+-----------------------+-------------------+--------------------------------------------------------------+\n| Endpoint | Argument | Function |\n+=======================+===================+==============================================================+\n| ``directions`` | locations | | Specify the locations to be visited in order. Usually this |\n| | | | is done with ``[Lon, Lat]`` tuples, but some routers offer |\n| | | | additional options to create a location element. |\n| +-------------------+--------------------------------------------------------------+\n| | profile | | The mode of transport, i.e. car, bicycle, pedestrian. Each |\n| | | | router specifies their own profiles. |\n+-----------------------+-------------------+--------------------------------------------------------------+\n| ``isochrones`` | locations | | Specify the locations to calculate isochrones for. Usually |\n| | | | this is done with ``[Lon, Lat]`` tuples, but some routers |\n| | | | offer additional options to create a location element. |\n| +-------------------+--------------------------------------------------------------+\n| | profile | | The mode of transport, i.e. car, bicycle, pedestrian. Each |\n| | | | router specifies their own profiles. |\n| +-------------------+--------------------------------------------------------------+\n| | intervals | | The ranges to calculate isochrones for. Either in seconds |\n| | | | or in meters, depending on ``interval_type``. |\n| +-------------------+--------------------------------------------------------------+\n| | intervals _type | | The dimension of ``intervals``, which takes router |\n| | | | dependent values, but generally describes time or distance |\n+-----------------------+-------------------+--------------------------------------------------------------+\n| ``matrix`` | locations | | Specify all locations you want to calculate a matrix |\n| | | | for. If ``sources`` or ``destinations`` is not set, this |\n| | | | will return a symmetrical matrix. Usually this is done |\n| | | | with ``[Lon, Lat]`` tuples, but some routers offer |\n| | | | additional options to create a location element. |\n| +-------------------+--------------------------------------------------------------+\n| | profile | | The mode of transport, i.e. car, bicycle, pedestrian. Each |\n| | | | router specifies their own profiles. |\n| +-------------------+--------------------------------------------------------------+\n| | sources | | The indices of the ``locations`` parameter iterable to |\n| | | | take as sources for the matrix calculation. If not |\n| | | | specified all ``locations`` are considered to be sources. |\n| +-------------------+--------------------------------------------------------------+\n| | sources | | The indices of the ``locations`` parameter iterable to |\n| | | | take as destinations for the matrix calculation. If not |\n| | | | specified all ``locations`` are considered to be |\n| | | | destinations. |\n+-----------------------+-------------------+--------------------------------------------------------------+\n\nContributing\n------------\n\nWe :heart: contributions and realistically think that's the only way to support and maintain most\nrouting engines in the long run. To get you started, we created a `Contribution guideline <./CONTRIBUTING.md>`_.\n\nExamples\n--------\n\nFollow our examples to understand how simple **routingpy** is to use.\n\nOn top of the examples listed below, find interactive notebook(s) on mybinder.org_.\n\nBasic Usage\n~~~~~~~~~~~\n\nGet all attributes\n++++++++++++++++++\n\n**routingpy** is designed to take the burden off your shoulder to parse the JSON response of each provider, exposing\nthe most important information of the response as attributes of the response object. The actual JSON is always accessible via\nthe ``raw`` attribute:\n\n.. code:: python\n\n from routingpy import MapboxValhalla\n from pprint import pprint\n\n # Some locations in Berlin\n coords = [[13.413706, 52.490202], [13.421838, 52.514105],\n [13.453649, 52.507987], [13.401947, 52.543373]]\n client = MapboxValhalla(api_key='mapbox_key')\n\n route = client.directions(locations=coords, profile='pedestrian')\n isochrones = client.isochrones(locations=coords[0], profile='pedestrian', intervals=[600, 1200])\n matrix = client.matrix(locations=coords, profile='pedestrian')\n\n pprint((route.geometry, route.duration, route.distance, route.raw))\n pprint((isochrones.raw, isochrones[0].geometry, isochrones[0].center, isochrones[0].interval))\n pprint((matrix.durations, matrix.distances, matrix.raw))\n\n\nMulti Provider\n++++++++++++++\n\nEasily calculate routes, isochrones and matrices for multiple providers:\n\n.. code:: python\n\n from routingpy import Graphhopper, ORS, MapboxOSRM\n from shapely.geometry import Polygon\n\n # Define the clients and their profile parameter\n apis = (\n (ORS(api_key='ors_key'), 'cycling-regular'),\n (Graphhopper(api_key='gh_key'), 'bike'),\n (MapboxOSRM(api_key='mapbox_key'), 'cycling')\n )\n # Some locations in Berlin\n coords = [[13.413706, 52.490202], [13.421838, 52.514105],\n [13.453649, 52.507987], [13.401947, 52.543373]]\n\n for api in apis:\n client, profile = api\n route = client.directions(locations=coords, profile=profile)\n print(\"Direction - {}:\\n\\tDuration: {}\\n\\tDistance: {}\".format(client.__class__.__name__,\n route.duration,\n route.distance))\n isochrones = client.isochrones(locations=coords[0], profile=profile, intervals=[600, 1200])\n for iso in isochrones:\n print(\"Isochrone {} secs - {}:\\n\\tArea: {} sqm\".format(client.__class__.__name__,\n iso.interval,\n Polygon(iso.geometry).area))\n matrix = client.matrix(locations=coords, profile=profile)\n print(\"Matrix - {}:\\n\\tDurations: {}\\n\\tDistances: {}\".format(client.__class__.__name__,\n matrix.durations,\n matrix.distances))\n\n\nDry run - Debug\n+++++++++++++++\n\nOften it is crucial to examine the request before it is sent. Mostly useful for debugging:\n\n.. code:: python\n\n from routingpy import ORS\n\n client = ORS(api_key='ors_key')\n route = client.directions(\n locations = [[13.413706, 52.490202], [13.421838, 52.514105]],\n profile='driving-hgv',\n dry_run=True\n )\n\n\nAdvanced Usage\n~~~~~~~~~~~~~~\n\nLocal instance of FOSS router\n+++++++++++++++++++++++++++++\n\nAll FOSS routing engines can be run locally, such as openrouteservice, Valhalla, OSRM and GraphHopper. To be able\nto use **routingpy** with a local installation, just change the ``base_url`` of the client. This assumes that you did\nnot change the URL(s) of the exposed endpoint(s):\n\n.. code:: python\n\n from routingpy import Valhalla\n\n # no trailing slash, api_key is not necessary\n client = Valhalla(base_url='http://localhost:8088/v1')\n\nProxies, Rate limiters and API errors\n+++++++++++++++++++++++++++++++++++++\n\nProxies are easily set up using following ``requests`` scheme for proxying. Also, when batch requesting, **routingpy**\ncan be set up to resume its requests when the remote API rate limits (i.e. responds\nwith HTTP 429). Also, it can be set up to ignore API errors and instead print them as warnings to ``stdout``. Be careful,\nwhen ignoring ``RouterApiErrors``, those often count towards your rate limit.\n\nAll these parameters, and more, can optionally be **globally set** for all router modules or individually per instance:\n\n.. code:: python\n\n from routingpy import Graphhopper, ORS\n from routingpy.routers import options\n\n request_kwargs = dict(proxies=dict(https='129.125.12.0'))\n\n client = Graphhopper(\n api_key='gh_key',\n retry_over_query_limit=False,\n skip_api_error=True,\n requests_kwargs=request_kwargs\n )\n\n # Or alternvatively, set these options globally:\n options.default_proxies = {'https': '129.125.12.0'}\n options.default_retry_over_query_limit = False\n options.default_skip_api_error = True\n\n\n.. _Mapbox, either Valhalla or OSRM: https://docs.mapbox.com/api/navigation\n.. _Openrouteservice: https://openrouteservice.org/dev/#/api-docs\n.. _Here Maps: https://developer.here.com/documentation\n.. _Google Maps: https://developers.google.com/maps/documentation\n.. _Graphhopper: https://graphhopper.com/api/1/docs\n.. _Local Valhalla: https://github.com/valhalla/valhalla-docs\n.. _Local Mapbox: https://github.com/Project-OSRM/osrm-backend/wiki\n.. _documentation: https://routingpy.readthedocs.io/en/latest\n.. _routing-py.routers: https://routingpy.readthedocs.io/en/latest/#module-routingpy.routers\n.. _Apache 2.0 License: https://github.com/gis-ops/routing-py/blob/master/LICENSE\n.. _mybinder.org: https://mybinder.org/v2/gh/gis-ops/routing-py/master?filepath=examples\n\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://gis-ops.com/projects/routingpy", "keywords": "", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "routingpy", "package_url": "https://pypi.org/project/routingpy/", "platform": "", "project_url": "https://pypi.org/project/routingpy/", "project_urls": { "Homepage": "https://gis-ops.com/projects/routingpy" }, "release_url": "https://pypi.org/project/routingpy/0.2.3/", "requires_dist": [ "requests (>=2.0)" ], "requires_python": ">=3.5.0", "summary": "One lib to route them all.", "version": "0.2.3" }, "last_serial": 5337336, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "b177dea8ff66487b279409f1ce77af71", "sha256": "a6a8ba79ca27cac9a7771a51054d2d15129f3b3d55ce662da333fb3b276a4f77" }, "downloads": -1, "filename": "routingpy-0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b177dea8ff66487b279409f1ce77af71", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.0", "size": 70277, "upload_time": "2019-04-14T16:18:11", "url": "https://files.pythonhosted.org/packages/16/ff/078c5f8ca9b3f209e579f91aaea5bddc2382e1b71d4f9fdaa3d6c7502b48/routingpy-0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c39ac2eafe6f580e06ba29976108c42d", "sha256": "480a675cf66bf78922bad51c42ad414fb9b4189c1b7896520a8f8bc1a969f5a1" }, "downloads": -1, "filename": "routingpy-0.1.tar.gz", "has_sig": false, "md5_digest": "c39ac2eafe6f580e06ba29976108c42d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 50152, "upload_time": "2019-04-14T16:18:14", "url": "https://files.pythonhosted.org/packages/f4/9e/e3c03bb21f7c828561a3b4e9c5868b82147603843e22892f1c561f13da68/routingpy-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "43d8a5234a21d55bbc1b610b4d13729e", "sha256": "bb8b6cde46bde008c94c61e79d129bced82dd78f93c3dc42fefb31a6dbea32da" }, "downloads": -1, "filename": "routingpy-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "43d8a5234a21d55bbc1b610b4d13729e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.0", "size": 70330, "upload_time": "2019-04-14T16:27:29", "url": "https://files.pythonhosted.org/packages/98/40/11f33b83ec4dc6cb8b5a21e533d6fe9a80ed3a4621de9278568fc1bec7b3/routingpy-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "26976040030e165a204247b3f01e6a70", "sha256": "ca970e3f2d91281bc19676b0017d7c9d75898914a8b9802dc27b6695fffa87c1" }, "downloads": -1, "filename": "routingpy-0.1.1.tar.gz", "has_sig": false, "md5_digest": "26976040030e165a204247b3f01e6a70", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 50206, "upload_time": "2019-04-14T16:27:31", "url": "https://files.pythonhosted.org/packages/2c/d2/c4966a36a1450bf015ca7414c402d6905c5bf5691589427de6366df7b9ce/routingpy-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "3dac0651962fe5d3443ef3bf190bc77a", "sha256": "7618a3be13a8464f9e818893ac2fefbed80f41b1b25ec722fc5b886aa9d9c9f6" }, "downloads": -1, "filename": "routingpy-0.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "3dac0651962fe5d3443ef3bf190bc77a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.0", "size": 70329, "upload_time": "2019-04-14T17:00:00", "url": "https://files.pythonhosted.org/packages/c0/f7/c39198e27f1432125796df44a270464144123d8f72f044195bd0ec6013ca/routingpy-0.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2e102d3a9616b12263b52247d43d208b", "sha256": "b697cc660e1f7f2e6478259f66eda2c78afbd747f917ad4e5898a0f082374f47" }, "downloads": -1, "filename": "routingpy-0.1.2.tar.gz", "has_sig": false, "md5_digest": "2e102d3a9616b12263b52247d43d208b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 50534, "upload_time": "2019-04-14T17:00:03", "url": "https://files.pythonhosted.org/packages/68/e6/fa886aae12b66141146145b615c8420af69b0b79c599b8fe2d44a5c9a54f/routingpy-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "2c0a8e4f016ae50cda69efa99718e663", "sha256": "a565b24f4c325dba6bb1cff0394abc5e3bb7a04969a6e6255fcfafd484469bf5" }, "downloads": -1, "filename": "routingpy-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "2c0a8e4f016ae50cda69efa99718e663", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.0", "size": 70661, "upload_time": "2019-04-16T10:09:08", "url": "https://files.pythonhosted.org/packages/fe/97/e9accbfd9866d3e33587529e6d5dec884b6e470b5e87687ece1d1453919b/routingpy-0.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f154adcb3eeece060d34a0b5ae5716df", "sha256": "c93620fc18bc5fe1085b77606ef19718351e1777d35c53df64cba99985e96647" }, "downloads": -1, "filename": "routingpy-0.1.3.tar.gz", "has_sig": false, "md5_digest": "f154adcb3eeece060d34a0b5ae5716df", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 54360, "upload_time": "2019-04-16T10:09:12", "url": "https://files.pythonhosted.org/packages/05/40/90f50e5f13a078501e30003d29918eb03b1b6ca7ad554cc17286024038c0/routingpy-0.1.3.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "684e3a0c17573e334ec92a81f0dde765", "sha256": "a877fb7c5dd77419aee11ea101fb3bcbabb8af77b7448bb7a0bb0c34b68d9525" }, "downloads": -1, "filename": "routingpy-0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "684e3a0c17573e334ec92a81f0dde765", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.0", "size": 71106, "upload_time": "2019-04-30T12:06:10", "url": "https://files.pythonhosted.org/packages/43/f4/c3274d6dfdc2a4999c193858a60e746da15802ef83866454f2fe9e08b8a1/routingpy-0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0e8bd2dd33a86accd985af68cebb0c27", "sha256": "5f467772c539771ad93d1d72dda9d8eca77939d036e4b3ada9cf224a29bab88f" }, "downloads": -1, "filename": "routingpy-0.2.tar.gz", "has_sig": false, "md5_digest": "0e8bd2dd33a86accd985af68cebb0c27", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 55019, "upload_time": "2019-04-30T12:06:17", "url": "https://files.pythonhosted.org/packages/1d/ac/192ab5f21f382dac6334efdf69d44af2e02273a9e4f911811b870ef4e8b2/routingpy-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "3d6c6c1348bbf340d50169d10544f956", "sha256": "6f5a5f2c350db1a341e00d0425f85e0907dccfa81d0cd9245a832291c5969c18" }, "downloads": -1, "filename": "routingpy-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "3d6c6c1348bbf340d50169d10544f956", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.0", "size": 71255, "upload_time": "2019-05-03T06:59:52", "url": "https://files.pythonhosted.org/packages/85/61/a3c1d8d2253b293061e9a5d56a7532a573eed5d01a15133ea05e6bbb6f96/routingpy-0.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "59a0fe8eced54e012f468ba9799521fc", "sha256": "d87a399c9dc28397ad89feac964f186e862c71ce31111e6b28948f1c215dad72" }, "downloads": -1, "filename": "routingpy-0.2.1.tar.gz", "has_sig": false, "md5_digest": "59a0fe8eced54e012f468ba9799521fc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 55136, "upload_time": "2019-05-03T07:00:00", "url": "https://files.pythonhosted.org/packages/7e/66/c01b5473f65b17dda568db112436395df46b3c5d30323b6aa12fac895787/routingpy-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "d04d8dc0cdf60ac3176ba8fecbebaa6c", "sha256": "9a86e0e2466a30c97178fdcb0c435777b69150902001a309aa12bc40781ec41f" }, "downloads": -1, "filename": "routingpy-0.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "d04d8dc0cdf60ac3176ba8fecbebaa6c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.0", "size": 71353, "upload_time": "2019-05-07T20:19:52", "url": "https://files.pythonhosted.org/packages/a0/e7/db39d9dc95f4637d34f6d8cf98b8b50aaca46abe27c8584349a85a713886/routingpy-0.2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "29a6e3246ad816c1f05abf8bc9e9d74d", "sha256": "cefdda2a63fb21a94ca0df76e7aee48344d9c7f5cd440c774f2bc56424f69b4c" }, "downloads": -1, "filename": "routingpy-0.2.2.tar.gz", "has_sig": false, "md5_digest": "29a6e3246ad816c1f05abf8bc9e9d74d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 55343, "upload_time": "2019-05-07T20:19:54", "url": "https://files.pythonhosted.org/packages/87/4c/bb26b5cb51e18340c85562923816e70eed8c8e03eed155333d34f05f6460/routingpy-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "c0cf83ea875e08cddf7ede3c6b3579b3", "sha256": "64be45b325e3d4a544efae27d1d474e7e84a13e6ffbbca4a880638f4fc6e9c2c" }, "downloads": -1, "filename": "routingpy-0.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "c0cf83ea875e08cddf7ede3c6b3579b3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.0", "size": 71352, "upload_time": "2019-05-30T13:35:11", "url": "https://files.pythonhosted.org/packages/6e/49/03df27d78320989b1fdbdde9a886a69827b158847f836fd0f2b910f53881/routingpy-0.2.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fb04d59e117428d1acd7eec62290d266", "sha256": "ad303d61a54dc65637b4281a205102f67580e0080878ae2df621187f3b85d03c" }, "downloads": -1, "filename": "routingpy-0.2.3.tar.gz", "has_sig": false, "md5_digest": "fb04d59e117428d1acd7eec62290d266", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 55344, "upload_time": "2019-05-30T13:35:13", "url": "https://files.pythonhosted.org/packages/a0/5e/826948d85e51d67cd1ab36334c7f9f9f93a095a495d7fc4cc1ae7f2abe35/routingpy-0.2.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c0cf83ea875e08cddf7ede3c6b3579b3", "sha256": "64be45b325e3d4a544efae27d1d474e7e84a13e6ffbbca4a880638f4fc6e9c2c" }, "downloads": -1, "filename": "routingpy-0.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "c0cf83ea875e08cddf7ede3c6b3579b3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.0", "size": 71352, "upload_time": "2019-05-30T13:35:11", "url": "https://files.pythonhosted.org/packages/6e/49/03df27d78320989b1fdbdde9a886a69827b158847f836fd0f2b910f53881/routingpy-0.2.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fb04d59e117428d1acd7eec62290d266", "sha256": "ad303d61a54dc65637b4281a205102f67580e0080878ae2df621187f3b85d03c" }, "downloads": -1, "filename": "routingpy-0.2.3.tar.gz", "has_sig": false, "md5_digest": "fb04d59e117428d1acd7eec62290d266", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 55344, "upload_time": "2019-05-30T13:35:13", "url": "https://files.pythonhosted.org/packages/a0/5e/826948d85e51d67cd1ab36334c7f9f9f93a095a495d7fc4cc1ae7f2abe35/routingpy-0.2.3.tar.gz" } ] }