types-boto3-geo-maps 1.36.0__py3-none-any.whl → 1.37.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,10 @@
1
1
  """
2
2
  Main interface for geo-maps service.
3
3
 
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
4
8
  Usage::
5
9
 
6
10
  ```python
@@ -13,8 +17,6 @@ Usage::
13
17
  session = Session()
14
18
  client: LocationServiceMapsV2Client = session.client("geo-maps")
15
19
  ```
16
-
17
- Copyright 2025 Vlad Emelianov
18
20
  """
19
21
 
20
22
  from .client import LocationServiceMapsV2Client
@@ -1,6 +1,10 @@
1
1
  """
2
2
  Main interface for geo-maps service.
3
3
 
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
4
8
  Usage::
5
9
 
6
10
  ```python
@@ -13,8 +17,6 @@ Usage::
13
17
  session = Session()
14
18
  client: LocationServiceMapsV2Client = session.client("geo-maps")
15
19
  ```
16
-
17
- Copyright 2025 Vlad Emelianov
18
20
  """
19
21
 
20
22
  from .client import LocationServiceMapsV2Client
@@ -12,9 +12,9 @@ def print_info() -> None:
12
12
  Print package info to stdout.
13
13
  """
14
14
  sys.stdout.write(
15
- "Type annotations for boto3 LocationServiceMapsV2 1.36.0\n"
16
- "Version: 1.36.0\n"
17
- "Builder version: 8.8.0\n"
15
+ "Type annotations for boto3 LocationServiceMapsV2 1.37.0\n"
16
+ "Version: 1.37.0\n"
17
+ "Builder version: 8.9.2\n"
18
18
  "Docs: https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps//\n"
19
19
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#locationservicemapsv2\n"
20
20
  "Other services: https://pypi.org/project/boto3-stubs/\n"
@@ -26,7 +26,7 @@ def print_version() -> None:
26
26
  """
27
27
  Print package version to stdout.
28
28
  """
29
- sys.stdout.write("1.36.0\n")
29
+ sys.stdout.write("1.37.0\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -3,6 +3,8 @@ Type annotations for geo-maps service Client.
3
3
 
4
4
  [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/)
5
5
 
6
+ Copyright 2025 Vlad Emelianov
7
+
6
8
  Usage::
7
9
 
8
10
  ```python
@@ -12,8 +14,6 @@ Usage::
12
14
  session = Session()
13
15
  client: LocationServiceMapsV2Client = session.client("geo-maps")
14
16
  ```
15
-
16
- Copyright 2025 Vlad Emelianov
17
17
  """
18
18
 
19
19
  from __future__ import annotations
@@ -26,15 +26,15 @@ from botocore.errorfactory import BaseClientExceptions
26
26
  from botocore.exceptions import ClientError as BotocoreClientError
27
27
 
28
28
  from .type_defs import (
29
- GetGlyphsRequestRequestTypeDef,
29
+ GetGlyphsRequestTypeDef,
30
30
  GetGlyphsResponseTypeDef,
31
- GetSpritesRequestRequestTypeDef,
31
+ GetSpritesRequestTypeDef,
32
32
  GetSpritesResponseTypeDef,
33
- GetStaticMapRequestRequestTypeDef,
33
+ GetStaticMapRequestTypeDef,
34
34
  GetStaticMapResponseTypeDef,
35
- GetStyleDescriptorRequestRequestTypeDef,
35
+ GetStyleDescriptorRequestTypeDef,
36
36
  GetStyleDescriptorResponseTypeDef,
37
- GetTileRequestRequestTypeDef,
37
+ GetTileRequestTypeDef,
38
38
  GetTileResponseTypeDef,
39
39
  )
40
40
 
@@ -95,9 +95,7 @@ class LocationServiceMapsV2Client(BaseClient):
95
95
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#generate_presigned_url)
96
96
  """
97
97
 
98
- def get_glyphs(
99
- self, **kwargs: Unpack[GetGlyphsRequestRequestTypeDef]
100
- ) -> GetGlyphsResponseTypeDef:
98
+ def get_glyphs(self, **kwargs: Unpack[GetGlyphsRequestTypeDef]) -> GetGlyphsResponseTypeDef:
101
99
  """
102
100
  Returns the map's glyphs.
103
101
 
@@ -105,9 +103,7 @@ class LocationServiceMapsV2Client(BaseClient):
105
103
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_glyphs)
106
104
  """
107
105
 
108
- def get_sprites(
109
- self, **kwargs: Unpack[GetSpritesRequestRequestTypeDef]
110
- ) -> GetSpritesResponseTypeDef:
106
+ def get_sprites(self, **kwargs: Unpack[GetSpritesRequestTypeDef]) -> GetSpritesResponseTypeDef:
111
107
  """
112
108
  Returns the map's sprites.
113
109
 
@@ -116,7 +112,7 @@ class LocationServiceMapsV2Client(BaseClient):
116
112
  """
117
113
 
118
114
  def get_static_map(
119
- self, **kwargs: Unpack[GetStaticMapRequestRequestTypeDef]
115
+ self, **kwargs: Unpack[GetStaticMapRequestTypeDef]
120
116
  ) -> GetStaticMapResponseTypeDef:
121
117
  """
122
118
  Provides high-quality static map images with customizable options.
@@ -126,7 +122,7 @@ class LocationServiceMapsV2Client(BaseClient):
126
122
  """
127
123
 
128
124
  def get_style_descriptor(
129
- self, **kwargs: Unpack[GetStyleDescriptorRequestRequestTypeDef]
125
+ self, **kwargs: Unpack[GetStyleDescriptorRequestTypeDef]
130
126
  ) -> GetStyleDescriptorResponseTypeDef:
131
127
  """
132
128
  Returns information about the style.
@@ -135,7 +131,7 @@ class LocationServiceMapsV2Client(BaseClient):
135
131
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_style_descriptor)
136
132
  """
137
133
 
138
- def get_tile(self, **kwargs: Unpack[GetTileRequestRequestTypeDef]) -> GetTileResponseTypeDef:
134
+ def get_tile(self, **kwargs: Unpack[GetTileRequestTypeDef]) -> GetTileResponseTypeDef:
139
135
  """
140
136
  Returns a tile.
141
137
 
@@ -3,6 +3,8 @@ Type annotations for geo-maps service Client.
3
3
 
4
4
  [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/)
5
5
 
6
+ Copyright 2025 Vlad Emelianov
7
+
6
8
  Usage::
7
9
 
8
10
  ```python
@@ -12,8 +14,6 @@ Usage::
12
14
  session = Session()
13
15
  client: LocationServiceMapsV2Client = session.client("geo-maps")
14
16
  ```
15
-
16
- Copyright 2025 Vlad Emelianov
17
17
  """
18
18
 
19
19
  from __future__ import annotations
@@ -26,15 +26,15 @@ from botocore.errorfactory import BaseClientExceptions
26
26
  from botocore.exceptions import ClientError as BotocoreClientError
27
27
 
28
28
  from .type_defs import (
29
- GetGlyphsRequestRequestTypeDef,
29
+ GetGlyphsRequestTypeDef,
30
30
  GetGlyphsResponseTypeDef,
31
- GetSpritesRequestRequestTypeDef,
31
+ GetSpritesRequestTypeDef,
32
32
  GetSpritesResponseTypeDef,
33
- GetStaticMapRequestRequestTypeDef,
33
+ GetStaticMapRequestTypeDef,
34
34
  GetStaticMapResponseTypeDef,
35
- GetStyleDescriptorRequestRequestTypeDef,
35
+ GetStyleDescriptorRequestTypeDef,
36
36
  GetStyleDescriptorResponseTypeDef,
37
- GetTileRequestRequestTypeDef,
37
+ GetTileRequestTypeDef,
38
38
  GetTileResponseTypeDef,
39
39
  )
40
40
 
@@ -92,9 +92,7 @@ class LocationServiceMapsV2Client(BaseClient):
92
92
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#generate_presigned_url)
93
93
  """
94
94
 
95
- def get_glyphs(
96
- self, **kwargs: Unpack[GetGlyphsRequestRequestTypeDef]
97
- ) -> GetGlyphsResponseTypeDef:
95
+ def get_glyphs(self, **kwargs: Unpack[GetGlyphsRequestTypeDef]) -> GetGlyphsResponseTypeDef:
98
96
  """
99
97
  Returns the map's glyphs.
100
98
 
@@ -102,9 +100,7 @@ class LocationServiceMapsV2Client(BaseClient):
102
100
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_glyphs)
103
101
  """
104
102
 
105
- def get_sprites(
106
- self, **kwargs: Unpack[GetSpritesRequestRequestTypeDef]
107
- ) -> GetSpritesResponseTypeDef:
103
+ def get_sprites(self, **kwargs: Unpack[GetSpritesRequestTypeDef]) -> GetSpritesResponseTypeDef:
108
104
  """
109
105
  Returns the map's sprites.
110
106
 
@@ -113,7 +109,7 @@ class LocationServiceMapsV2Client(BaseClient):
113
109
  """
114
110
 
115
111
  def get_static_map(
116
- self, **kwargs: Unpack[GetStaticMapRequestRequestTypeDef]
112
+ self, **kwargs: Unpack[GetStaticMapRequestTypeDef]
117
113
  ) -> GetStaticMapResponseTypeDef:
118
114
  """
119
115
  Provides high-quality static map images with customizable options.
@@ -123,7 +119,7 @@ class LocationServiceMapsV2Client(BaseClient):
123
119
  """
124
120
 
125
121
  def get_style_descriptor(
126
- self, **kwargs: Unpack[GetStyleDescriptorRequestRequestTypeDef]
122
+ self, **kwargs: Unpack[GetStyleDescriptorRequestTypeDef]
127
123
  ) -> GetStyleDescriptorResponseTypeDef:
128
124
  """
129
125
  Returns information about the style.
@@ -132,7 +128,7 @@ class LocationServiceMapsV2Client(BaseClient):
132
128
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_style_descriptor)
133
129
  """
134
130
 
135
- def get_tile(self, **kwargs: Unpack[GetTileRequestRequestTypeDef]) -> GetTileResponseTypeDef:
131
+ def get_tile(self, **kwargs: Unpack[GetTileRequestTypeDef]) -> GetTileResponseTypeDef:
136
132
  """
137
133
  Returns a tile.
138
134
 
@@ -3,6 +3,8 @@ Type annotations for geo-maps service literal definitions.
3
3
 
4
4
  [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/literals/)
5
5
 
6
+ Copyright 2025 Vlad Emelianov
7
+
6
8
  Usage::
7
9
 
8
10
  ```python
@@ -10,8 +12,6 @@ Usage::
10
12
 
11
13
  data: ColorSchemeType = "Dark"
12
14
  ```
13
-
14
- Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
17
  import sys
@@ -173,7 +173,6 @@ ServiceName = Literal[
173
173
  "efs",
174
174
  "eks",
175
175
  "eks-auth",
176
- "elastic-inference",
177
176
  "elasticache",
178
177
  "elasticbeanstalk",
179
178
  "elastictranscoder",
@@ -3,6 +3,8 @@ Type annotations for geo-maps service literal definitions.
3
3
 
4
4
  [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/literals/)
5
5
 
6
+ Copyright 2025 Vlad Emelianov
7
+
6
8
  Usage::
7
9
 
8
10
  ```python
@@ -10,8 +12,6 @@ Usage::
10
12
 
11
13
  data: ColorSchemeType = "Dark"
12
14
  ```
13
-
14
- Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
17
  import sys
@@ -171,7 +171,6 @@ ServiceName = Literal[
171
171
  "efs",
172
172
  "eks",
173
173
  "eks-auth",
174
- "elastic-inference",
175
174
  "elasticache",
176
175
  "elasticbeanstalk",
177
176
  "elastictranscoder",
@@ -3,15 +3,15 @@ Type annotations for geo-maps service type definitions.
3
3
 
4
4
  [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/type_defs/)
5
5
 
6
+ Copyright 2025 Vlad Emelianov
7
+
6
8
  Usage::
7
9
 
8
10
  ```python
9
- from types_boto3_geo_maps.type_defs import GetGlyphsRequestRequestTypeDef
11
+ from types_boto3_geo_maps.type_defs import GetGlyphsRequestTypeDef
10
12
 
11
- data: GetGlyphsRequestRequestTypeDef = ...
13
+ data: GetGlyphsRequestTypeDef = ...
12
14
  ```
13
-
14
- Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
17
  from __future__ import annotations
@@ -33,21 +33,21 @@ else:
33
33
 
34
34
 
35
35
  __all__ = (
36
- "GetGlyphsRequestRequestTypeDef",
36
+ "GetGlyphsRequestTypeDef",
37
37
  "GetGlyphsResponseTypeDef",
38
- "GetSpritesRequestRequestTypeDef",
38
+ "GetSpritesRequestTypeDef",
39
39
  "GetSpritesResponseTypeDef",
40
- "GetStaticMapRequestRequestTypeDef",
40
+ "GetStaticMapRequestTypeDef",
41
41
  "GetStaticMapResponseTypeDef",
42
- "GetStyleDescriptorRequestRequestTypeDef",
42
+ "GetStyleDescriptorRequestTypeDef",
43
43
  "GetStyleDescriptorResponseTypeDef",
44
- "GetTileRequestRequestTypeDef",
44
+ "GetTileRequestTypeDef",
45
45
  "GetTileResponseTypeDef",
46
46
  "ResponseMetadataTypeDef",
47
47
  )
48
48
 
49
49
 
50
- class GetGlyphsRequestRequestTypeDef(TypedDict):
50
+ class GetGlyphsRequestTypeDef(TypedDict):
51
51
  FontStack: str
52
52
  FontUnicodeRange: str
53
53
 
@@ -60,14 +60,14 @@ class ResponseMetadataTypeDef(TypedDict):
60
60
  HostId: NotRequired[str]
61
61
 
62
62
 
63
- class GetSpritesRequestRequestTypeDef(TypedDict):
63
+ class GetSpritesRequestTypeDef(TypedDict):
64
64
  FileName: str
65
65
  Style: MapStyleType
66
66
  ColorScheme: ColorSchemeType
67
67
  Variant: Literal["Default"]
68
68
 
69
69
 
70
- class GetStaticMapRequestRequestTypeDef(TypedDict):
70
+ class GetStaticMapRequestTypeDef(TypedDict):
71
71
  Height: int
72
72
  FileName: str
73
73
  Width: int
@@ -84,14 +84,14 @@ class GetStaticMapRequestRequestTypeDef(TypedDict):
84
84
  Zoom: NotRequired[float]
85
85
 
86
86
 
87
- class GetStyleDescriptorRequestRequestTypeDef(TypedDict):
87
+ class GetStyleDescriptorRequestTypeDef(TypedDict):
88
88
  Style: MapStyleType
89
89
  ColorScheme: NotRequired[ColorSchemeType]
90
90
  PoliticalView: NotRequired[str]
91
91
  Key: NotRequired[str]
92
92
 
93
93
 
94
- class GetTileRequestRequestTypeDef(TypedDict):
94
+ class GetTileRequestTypeDef(TypedDict):
95
95
  Tileset: str
96
96
  Z: str
97
97
  X: str
@@ -3,15 +3,15 @@ Type annotations for geo-maps service type definitions.
3
3
 
4
4
  [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/type_defs/)
5
5
 
6
+ Copyright 2025 Vlad Emelianov
7
+
6
8
  Usage::
7
9
 
8
10
  ```python
9
- from types_boto3_geo_maps.type_defs import GetGlyphsRequestRequestTypeDef
11
+ from types_boto3_geo_maps.type_defs import GetGlyphsRequestTypeDef
10
12
 
11
- data: GetGlyphsRequestRequestTypeDef = ...
13
+ data: GetGlyphsRequestTypeDef = ...
12
14
  ```
13
-
14
- Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
17
  from __future__ import annotations
@@ -32,20 +32,20 @@ else:
32
32
  from typing_extensions import Literal, NotRequired, TypedDict
33
33
 
34
34
  __all__ = (
35
- "GetGlyphsRequestRequestTypeDef",
35
+ "GetGlyphsRequestTypeDef",
36
36
  "GetGlyphsResponseTypeDef",
37
- "GetSpritesRequestRequestTypeDef",
37
+ "GetSpritesRequestTypeDef",
38
38
  "GetSpritesResponseTypeDef",
39
- "GetStaticMapRequestRequestTypeDef",
39
+ "GetStaticMapRequestTypeDef",
40
40
  "GetStaticMapResponseTypeDef",
41
- "GetStyleDescriptorRequestRequestTypeDef",
41
+ "GetStyleDescriptorRequestTypeDef",
42
42
  "GetStyleDescriptorResponseTypeDef",
43
- "GetTileRequestRequestTypeDef",
43
+ "GetTileRequestTypeDef",
44
44
  "GetTileResponseTypeDef",
45
45
  "ResponseMetadataTypeDef",
46
46
  )
47
47
 
48
- class GetGlyphsRequestRequestTypeDef(TypedDict):
48
+ class GetGlyphsRequestTypeDef(TypedDict):
49
49
  FontStack: str
50
50
  FontUnicodeRange: str
51
51
 
@@ -56,13 +56,13 @@ class ResponseMetadataTypeDef(TypedDict):
56
56
  RetryAttempts: int
57
57
  HostId: NotRequired[str]
58
58
 
59
- class GetSpritesRequestRequestTypeDef(TypedDict):
59
+ class GetSpritesRequestTypeDef(TypedDict):
60
60
  FileName: str
61
61
  Style: MapStyleType
62
62
  ColorScheme: ColorSchemeType
63
63
  Variant: Literal["Default"]
64
64
 
65
- class GetStaticMapRequestRequestTypeDef(TypedDict):
65
+ class GetStaticMapRequestTypeDef(TypedDict):
66
66
  Height: int
67
67
  FileName: str
68
68
  Width: int
@@ -78,13 +78,13 @@ class GetStaticMapRequestRequestTypeDef(TypedDict):
78
78
  Style: NotRequired[Literal["Satellite"]]
79
79
  Zoom: NotRequired[float]
80
80
 
81
- class GetStyleDescriptorRequestRequestTypeDef(TypedDict):
81
+ class GetStyleDescriptorRequestTypeDef(TypedDict):
82
82
  Style: MapStyleType
83
83
  ColorScheme: NotRequired[ColorSchemeType]
84
84
  PoliticalView: NotRequired[str]
85
85
  Key: NotRequired[str]
86
86
 
87
- class GetTileRequestRequestTypeDef(TypedDict):
87
+ class GetTileRequestTypeDef(TypedDict):
88
88
  Tileset: str
89
89
  Z: str
90
90
  X: str
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.36.0"
7
+ __version__ = "1.37.0"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: types-boto3-geo-maps
3
- Version: 1.36.0
4
- Summary: Type annotations for boto3 LocationServiceMapsV2 1.36.0 service generated with mypy-boto3-builder 8.8.0
3
+ Version: 1.37.0
4
+ Summary: Type annotations for boto3 LocationServiceMapsV2 1.37.0 service generated with mypy-boto3-builder 8.9.2
5
5
  Home-page: https://github.com/youtype/mypy_boto3_builder
6
6
  Author: Vlad Emelianov
7
7
  Author-email: vlad.emelianov.nz@gmail.com
@@ -56,7 +56,7 @@ Dynamic: summary
56
56
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
57
57
 
58
58
  Type annotations for
59
- [boto3 LocationServiceMapsV2 1.36.0](https://pypi.org/project/boto3/)
59
+ [boto3 LocationServiceMapsV2 1.37.0](https://pypi.org/project/boto3/)
60
60
  compatible with [VSCode](https://code.visualstudio.com/),
61
61
  [PyCharm](https://www.jetbrains.com/pycharm/),
62
62
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -65,7 +65,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
65
65
  [pyright](https://github.com/microsoft/pyright) and other tools.
66
66
 
67
67
  Generated with
68
- [mypy-boto3-builder 8.8.0](https://github.com/youtype/mypy_boto3_builder).
68
+ [mypy-boto3-builder 8.9.2](https://github.com/youtype/mypy_boto3_builder).
69
69
 
70
70
  More information can be found on
71
71
  [types-boto3](https://pypi.org/project/types-boto3/) page and in
@@ -112,12 +112,12 @@ See how it helps you find and fix potential bugs:
112
112
  ### Generate locally (recommended)
113
113
 
114
114
  You can generate type annotations for `boto3` package locally with
115
- `mypy_boto3_builder`. Use
115
+ `mypy-boto3-builder`. Use
116
116
  [uv](https://docs.astral.sh/uv/getting-started/installation/) for build
117
117
  isolation.
118
118
 
119
119
  1. Run mypy-boto3-builder in your package root directory:
120
- `uvx --with 'boto3==1.36.0' mypy_boto3_builder`
120
+ `uvx --with 'boto3==1.37.0' mypy-boto3-builder`
121
121
  2. Select `boto3` AWS SDK.
122
122
  3. Add `LocationServiceMapsV2` service.
123
123
  4. Use provided commands to install generated packages.
@@ -368,11 +368,14 @@ Full list of `LocationServiceMapsV2` TypeDefs can be found in
368
368
  [docs](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/type_defs/).
369
369
 
370
370
  ```python
371
- from types_boto3_geo_maps.type_defs import GetGlyphsRequestRequestTypeDef
371
+ # TypedDict usage example
372
+ from types_boto3_geo_maps.type_defs import GetGlyphsRequestTypeDef
372
373
 
373
374
 
374
- def get_value() -> GetGlyphsRequestRequestTypeDef:
375
- return {...}
375
+ def get_value() -> GetGlyphsRequestTypeDef:
376
+ return {
377
+ "FontStack": ...,
378
+ }
376
379
  ```
377
380
 
378
381
  <a id="how-it-works"></a>
@@ -426,7 +429,8 @@ Builder changelog can be found in
426
429
  ## Versioning
427
430
 
428
431
  `types-boto3-geo-maps` version is the same as related `boto3` version and
429
- follows [PEP 440](https://www.python.org/dev/peps/pep-0440/) format.
432
+ follows
433
+ [Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
430
434
 
431
435
  <a id="thank-you"></a>
432
436
 
@@ -0,0 +1,16 @@
1
+ types_boto3_geo_maps/__init__.py,sha256=pbB2VXYGmOPqtiNDMak53MSVRLSpBQmz3oVk0tu_uQs,562
2
+ types_boto3_geo_maps/__init__.pyi,sha256=1FajWFPCYNVzlr2NVL4AsOvJ7R08BWpnVniusZjvxVE,561
3
+ types_boto3_geo_maps/__main__.py,sha256=WiOR0vtYjhlTy4w36gmO2u1jCULFbiglY8c5XD3h4x4,1011
4
+ types_boto3_geo_maps/client.py,sha256=D2JARGelw-Kqw_7ADos2cm-Fb1_Jo2pIXEmJCczUZus,5475
5
+ types_boto3_geo_maps/client.pyi,sha256=9BmZp4JhctLieFnpTV0keMxpRNRdykL4-kbKdRD0oqM,5472
6
+ types_boto3_geo_maps/literals.py,sha256=HCpdjCgBQFjFKblz1IQqmx_wrGTApQ8Zz0P4EOuk-hc,9121
7
+ types_boto3_geo_maps/literals.pyi,sha256=FuhBr9p-BXKmEj_Rvmuazz5dFgHIQ43jzhwxJU4PQTQ,9119
8
+ types_boto3_geo_maps/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ types_boto3_geo_maps/type_defs.py,sha256=kzUifd90-HeqVfgJ0r2_arFfF8F-J6MkH5KyP5kNHRo,3254
10
+ types_boto3_geo_maps/type_defs.pyi,sha256=ze6j1Oa2fmafL4z1_4UIeD-Mg2h4Wx55TbSAXA_Y8YY,3242
11
+ types_boto3_geo_maps/version.py,sha256=7dplwNyKC_M1NmYn8gNT0u-MAPuLyVgQc5Z98LiK1wM,92
12
+ types_boto3_geo_maps-1.37.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
13
+ types_boto3_geo_maps-1.37.0.dist-info/METADATA,sha256=4X89UlkuO6FmdDy0wC-k40Xj8MUmoxWlDyTvt9_R1Vg,14446
14
+ types_boto3_geo_maps-1.37.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
15
+ types_boto3_geo_maps-1.37.0.dist-info/top_level.txt,sha256=CwmcVINVZ93FRQXEIzN9dWnvPhak6LqhxvD3gPv3SkU,21
16
+ types_boto3_geo_maps-1.37.0.dist-info/RECORD,,
@@ -1,16 +0,0 @@
1
- types_boto3_geo_maps/__init__.py,sha256=kdU6VjPdnp1Wju1rMhNUagyalkd4R3EiNkoP51Cv_i4,479
2
- types_boto3_geo_maps/__init__.pyi,sha256=FGv4LRWic7QPFP32XoBsBVHeXQA2kmPn1Uqk7-wKsm8,478
3
- types_boto3_geo_maps/__main__.py,sha256=ht5-edya6nlvzjM86jqG65wmNeckongT3xBTLccgn6I,1011
4
- types_boto3_geo_maps/client.py,sha256=EEshr3mAB9FFtfHeyYyDohSPS_5OrNVs-1AMfbOv19s,5573
5
- types_boto3_geo_maps/client.pyi,sha256=hGkiYVuXUVk8r6e3Vu8mqMCjJxSHtzzwrKdRIXTF8ek,5570
6
- types_boto3_geo_maps/literals.py,sha256=8oR6LbnwS6XlrE6Xp2cpNtv91TEduqH9zh--_CSS0ys,9146
7
- types_boto3_geo_maps/literals.pyi,sha256=uhavitG1zLlHH9uZbakICUQvwQHZdcPet_Z0SCrYgVI,9144
8
- types_boto3_geo_maps/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
- types_boto3_geo_maps/type_defs.py,sha256=HYvBcWaLb4XrVzSO-7cj1YhouDhL-_7r7IL6wSEiHr8,3338
10
- types_boto3_geo_maps/type_defs.pyi,sha256=ebwFK1_ZUswfBygNHcTWrop96zCSVahn1ad5F-BjM0o,3326
11
- types_boto3_geo_maps/version.py,sha256=XqBLww9Ajk9GRr5oc1Ak2757Fsir4zxoRCWswSKh8Ro,92
12
- types_boto3_geo_maps-1.36.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
13
- types_boto3_geo_maps-1.36.0.dist-info/METADATA,sha256=Gn26cF_rMiunZaMD1jPjraLW8wqIQUr8tvkamgAXlOU,14353
14
- types_boto3_geo_maps-1.36.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
15
- types_boto3_geo_maps-1.36.0.dist-info/top_level.txt,sha256=CwmcVINVZ93FRQXEIzN9dWnvPhak6LqhxvD3gPv3SkU,21
16
- types_boto3_geo_maps-1.36.0.dist-info/RECORD,,