Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Latest commit

 

History

History
33 lines (20 loc) · 804 Bytes

README.rst

File metadata and controls

33 lines (20 loc) · 804 Bytes

heregeocoder - Python wrapper for Here.com Geocoder API! (Archived and discontinued)

The is a python wrapper built around here.com geocoder rest api.

Requirements

  • Python: 3.6, 3.7, 3.8

Installation

Install using pip:

pip install heregeocoder

Usage

Provide the api key you genereated on https://www.here.com/ in the GeocoderApi Constructor at the point of initialization. Then pass your search text in the search methode of the GeocoderApi object to receive a response object

from heregeocoder import GeocoderApi

    geocoder = GeocoderApi(<api_key>)
    response = geocoder.search(<search_text>)
    print(response.json())