From f11c8e04d20b0f5f50aaffb48dd96c20611df7be Mon Sep 17 00:00:00 2001 From: Max Buchholz Date: Thu, 18 Jan 2024 15:36:34 +0100 Subject: [PATCH] Readme.md fixes --- Readme.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Readme.md b/Readme.md index ede4a46..4fa3768 100644 --- a/Readme.md +++ b/Readme.md @@ -1,8 +1,8 @@ # ValhallaPY -This is a quick python wrapper for the [Valhalla]() service from MapZen +This is a quick python wrapper for the [Valhalla](https://www.mapzen.com/blog/valhalla-intro/) service from MapZen -## Instalation +## Installation pip install valhallapy @@ -30,7 +30,7 @@ from valhalla import Valhalla valhalla = Valhalla(host="http://192.168.99.100:5333", api_key="") ``` -where the api key is optional (get your api keys [here](https://mapzen.com/developers/sign_in) if you are running locally. Once you have a connection, request a route by +where the api key is optional (get your api keys [here](https://mapzen.com/developers/sign_in)) if you are running locally. Once you have a connection, request a route by ## Get a route @@ -40,9 +40,9 @@ Request a route using the following route = valhalla.route(start, end, costing) ``` -where costing can be 'pedestrian', 'auto' etc ([full list of costing models](https://mapzen.com/documentation/turn-by-turn/api-reference/#costing-models)). +where costing can be 'pedestrian', 'auto' etc. ([full list of costing models](https://mapzen.com/documentation/turn-by-turn/api-reference/#costing-models)). -This returns a ValhallaRoute object which can be interegated for information about the returned route +This returns a ValhallaRoute object which can be integrated for information about the returned route ```python route.time() # The time in seconds the route will take