Skip to content

Places API

PlacesApi

Bases: HEREApi

A python interface into the HERE Places (Search) API

Source code in herepy/places_api.py
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
class PlacesApi(HEREApi):
    """A python interface into the HERE Places (Search) API"""

    def __init__(self, api_key: str = None, timeout: int = None):
        """Returns a PlacesApi instance.
        Args:
          api_key (str):
            API key taken from HERE Developer Portal.
          timeout (int):
            Timeout limit for requests.
        """

        super(PlacesApi, self).__init__(api_key, timeout)
        self._base_url = "https://discover.search.hereapi.com/v1/discover"

    def __get(self, data):
        url = Utils.build_url(self._base_url, extra_params=data)
        response = requests.get(url, timeout=self._timeout)
        json_data = json.loads(response.content.decode("utf8"))
        if json_data.get("items") != None:
            return PlacesResponse.new_from_jsondict(json_data)
        elif "error" in json_data:
            if json_data["error"] == "Unauthorized":
                raise UnauthorizedError(json_data["error_description"])
        else:
            raise HEREError(
                json_data.get(
                    "message", "Error occurred on " + sys._getframe(1).f_code.co_name
                )
            )

    def onebox_search(
        self, coordinates: List[float], query: str, limit: int = 20, lang: str = "en-US"
    ) -> Optional[PlacesResponse]:
        """Request a list of places based on a query string.
        Args:
          coordinates (List):
            List contains latitude and longitude in order.
          query (str):
            search term.
          limit (int):
            Limits items to return, with default value 10. Max value 100.
          lang (str):
            BCP47 compliant Language Code.
        Returns:
          PlacesResponse
        Raises:
          HEREError"""

        data = {
            "at": str.format("{0},{1}", coordinates[0], coordinates[1]),
            "q": query,
            "limit": limit,
            "lang": lang,
            "apiKey": self._api_key,
        }
        return self.__get(data)

    def search_in_country(
        self,
        coordinates: List[float],
        query: str,
        country_code: str,
        limit: int = 20,
        lang: str = "en-US",
    ) -> Optional[PlacesResponse]:
        """Request a list of places based on a query string.
        Args:
          coordinates (List):
            List contains latitude and longitude in order.
          query (str):
            search term.
          country_code (str):
            ISO 3166-1 alpha-3 country code.
          limit (int):
            Limits items to return. Max value 100.
          lang (str):
            BCP47 compliant Language Code
        Returns:
          PlacesResponse
        Raises:
          HEREError"""

        data = {
            "at": str.format("{0},{1}", coordinates[0], coordinates[1]),
            "q": query,
            "limit": limit,
            "in": "countryCode:" + country_code,
            "lang": lang,
            "apiKey": self._api_key,
        }
        return self.__get(data)

    def places_in_circle(
        self,
        coordinates: List[float],
        radius: int,
        query: str,
        limit: int = 20,
        lang: str = "en-US",
    ) -> Optional[PlacesResponse]:
        """Request a list of popular places around a location
        Args:
          coordinates (List):
            List contains latitude and longitude in order.
          radius (int):
            Circle radius (in meters).
          query (str):
            search term.
          lang (str):
            BCP47 compliant Language Code
        Returns:
          PlacesResponse
        Raises:
          HEREError"""

        data = {
            "in": str.format(
                "circle:{0},{1};r={2}", coordinates[0], coordinates[1], radius
            ),
            "q": query,
            "limit": limit,
            "lang": lang,
            "apiKey": self._api_key,
        }
        return self.__get(data)

__init__(api_key=None, timeout=None)

Returns a PlacesApi instance. Args: api_key (str): API key taken from HERE Developer Portal. timeout (int): Timeout limit for requests.

Source code in herepy/places_api.py
19
20
21
22
23
24
25
26
27
28
29
def __init__(self, api_key: str = None, timeout: int = None):
    """Returns a PlacesApi instance.
    Args:
      api_key (str):
        API key taken from HERE Developer Portal.
      timeout (int):
        Timeout limit for requests.
    """

    super(PlacesApi, self).__init__(api_key, timeout)
    self._base_url = "https://discover.search.hereapi.com/v1/discover"

Request a list of places based on a query string. Args: coordinates (List): List contains latitude and longitude in order. query (str): search term. limit (int): Limits items to return, with default value 10. Max value 100. lang (str): BCP47 compliant Language Code. Returns: PlacesResponse Raises: HEREError

Source code in herepy/places_api.py
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
def onebox_search(
    self, coordinates: List[float], query: str, limit: int = 20, lang: str = "en-US"
) -> Optional[PlacesResponse]:
    """Request a list of places based on a query string.
    Args:
      coordinates (List):
        List contains latitude and longitude in order.
      query (str):
        search term.
      limit (int):
        Limits items to return, with default value 10. Max value 100.
      lang (str):
        BCP47 compliant Language Code.
    Returns:
      PlacesResponse
    Raises:
      HEREError"""

    data = {
        "at": str.format("{0},{1}", coordinates[0], coordinates[1]),
        "q": query,
        "limit": limit,
        "lang": lang,
        "apiKey": self._api_key,
    }
    return self.__get(data)

places_in_circle(coordinates, radius, query, limit=20, lang='en-US')

Request a list of popular places around a location Args: coordinates (List): List contains latitude and longitude in order. radius (int): Circle radius (in meters). query (str): search term. lang (str): BCP47 compliant Language Code Returns: PlacesResponse Raises: HEREError

Source code in herepy/places_api.py
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
def places_in_circle(
    self,
    coordinates: List[float],
    radius: int,
    query: str,
    limit: int = 20,
    lang: str = "en-US",
) -> Optional[PlacesResponse]:
    """Request a list of popular places around a location
    Args:
      coordinates (List):
        List contains latitude and longitude in order.
      radius (int):
        Circle radius (in meters).
      query (str):
        search term.
      lang (str):
        BCP47 compliant Language Code
    Returns:
      PlacesResponse
    Raises:
      HEREError"""

    data = {
        "in": str.format(
            "circle:{0},{1};r={2}", coordinates[0], coordinates[1], radius
        ),
        "q": query,
        "limit": limit,
        "lang": lang,
        "apiKey": self._api_key,
    }
    return self.__get(data)

search_in_country(coordinates, query, country_code, limit=20, lang='en-US')

Request a list of places based on a query string. Args: coordinates (List): List contains latitude and longitude in order. query (str): search term. country_code (str): ISO 3166-1 alpha-3 country code. limit (int): Limits items to return. Max value 100. lang (str): BCP47 compliant Language Code Returns: PlacesResponse Raises: HEREError

Source code in herepy/places_api.py
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
def search_in_country(
    self,
    coordinates: List[float],
    query: str,
    country_code: str,
    limit: int = 20,
    lang: str = "en-US",
) -> Optional[PlacesResponse]:
    """Request a list of places based on a query string.
    Args:
      coordinates (List):
        List contains latitude and longitude in order.
      query (str):
        search term.
      country_code (str):
        ISO 3166-1 alpha-3 country code.
      limit (int):
        Limits items to return. Max value 100.
      lang (str):
        BCP47 compliant Language Code
    Returns:
      PlacesResponse
    Raises:
      HEREError"""

    data = {
        "at": str.format("{0},{1}", coordinates[0], coordinates[1]),
        "q": query,
        "limit": limit,
        "in": "countryCode:" + country_code,
        "lang": lang,
        "apiKey": self._api_key,
    }
    return self.__get(data)