Geocode Places
October 23, 2019 ยท View on GitHub
A Simple Flask app to find geocode given place name. Geocoding is the process of converting addresses (like a street address) into geographic coordinates (like latitude and longitude), which you can use to place markers on a map, or position the map. Reverse geocoding is the process of converting geographic coordinates into a human-readable address.
Endpoints
Status
/
Places
/places/<place-name>
eg: /places/adoor
Getting Started
Clone the repo :
git clone https://github.com/ashikmeerankutty/geocode.git
Activate python environment :
pipenv shell
Install dependencies :
pipenv install
Run server
flask run