Openrouteservice-py now available on PyPi - Easy Routing, Geocoding, Isochrones and Matrix Routing with Python!
Posted in Services on Feb 3rd, 2018
We have finally developed a pretty handy python API for all of you pythoniasts out there. This library makes requests to the openrouteservice API extremely simple. With this you will be able to query the following services with a couple of lines of python code.
directions
matrix
geocoding
isochrones
To provide a quick and dirty example::
import openrouteservice
coords = ((8.34234,48.23424),(8.34423,48.26424))
client = [...]