Skip to content

Examples#

Index > LocationServicePlacesV2 > Examples

Auto-generated documentation for LocationServicePlacesV2 type annotations stubs module types-boto3-geo-places.

Client#

Implicit type annotations#

Can be used with types-boto3[geo-places] package installed.

Write your LocationServicePlacesV2 code as usual, type checking and code completion should work out of the box.

# LocationServicePlacesV2Client usage example

from boto3.session import Session


session = Session()

client = session.client("geo-places")  # (1)
result = client.autocomplete()  # (2)
  1. client: LocationServicePlacesV2Client
  2. result: AutocompleteResponseTypeDef

Explicit type annotations#

With types-boto3-lite[geo-places] or a standalone types_boto3_geo_places package, you have to explicitly specify client: LocationServicePlacesV2Client type annotation.

All other type annotations are optional, as types should be discovered automatically. However, these type annotations can be helpful in your functions and methods.

# LocationServicePlacesV2Client usage example with type annotations

from boto3.session import Session

from types_boto3_geo_places.client import LocationServicePlacesV2Client
from types_boto3_geo_places.type_defs import AutocompleteResponseTypeDef
from types_boto3_geo_places.type_defs import AutocompleteRequestRequestTypeDef


session = Session()

client: LocationServicePlacesV2Client = session.client("geo-places")

kwargs: AutocompleteRequestRequestTypeDef = {...}
result: AutocompleteResponseTypeDef = client.autocomplete(**kwargs)