types-boto3-geo-maps 1.35.71__py3-none-any.whl → 1.35.93__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.
@@ -14,7 +14,7 @@ Usage::
14
14
  client: LocationServiceMapsV2Client = session.client("geo-maps")
15
15
  ```
16
16
 
17
- Copyright 2024 Vlad Emelianov
17
+ Copyright 2025 Vlad Emelianov
18
18
  """
19
19
 
20
20
  from .client import LocationServiceMapsV2Client
@@ -14,7 +14,7 @@ Usage::
14
14
  client: LocationServiceMapsV2Client = session.client("geo-maps")
15
15
  ```
16
16
 
17
- Copyright 2024 Vlad Emelianov
17
+ Copyright 2025 Vlad Emelianov
18
18
  """
19
19
 
20
20
  from .client import LocationServiceMapsV2Client
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Main CLI entrypoint.
3
3
 
4
- Copyright 2024 Vlad Emelianov
4
+ Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
7
  import sys
@@ -11,14 +11,14 @@ def print_info() -> None:
11
11
  """
12
12
  Print package info to stdout.
13
13
  """
14
- print(
15
- "Type annotations for boto3 LocationServiceMapsV2 1.35.71\n"
16
- "Version: 1.35.71\n"
17
- "Builder version: 8.4.1\n"
14
+ sys.stdout.write(
15
+ "Type annotations for boto3 LocationServiceMapsV2 1.35.93\n"
16
+ "Version: 1.35.93\n"
17
+ "Builder version: 8.8.0\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"
21
- "Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
21
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
22
22
  )
23
23
 
24
24
 
@@ -26,7 +26,7 @@ def print_version() -> None:
26
26
  """
27
27
  Print package version to stdout.
28
28
  """
29
- print("1.35.71")
29
+ sys.stdout.write("1.35.93\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -34,7 +34,8 @@ def main() -> None:
34
34
  Main CLI entrypoint.
35
35
  """
36
36
  if "--version" in sys.argv:
37
- return print_version()
37
+ print_version()
38
+ return
38
39
  print_info()
39
40
 
40
41
 
@@ -1,7 +1,7 @@
1
1
  """
2
- Type annotations for geo-maps service client.
2
+ Type annotations for geo-maps service Client.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/)
5
5
 
6
6
  Usage::
7
7
 
@@ -13,13 +13,17 @@ Usage::
13
13
  client: LocationServiceMapsV2Client = session.client("geo-maps")
14
14
  ```
15
15
 
16
- Copyright 2024 Vlad Emelianov
16
+ Copyright 2025 Vlad Emelianov
17
17
  """
18
18
 
19
+ from __future__ import annotations
20
+
19
21
  import sys
20
- from typing import Any, Dict, Mapping, Type
22
+ from typing import Any
21
23
 
22
24
  from botocore.client import BaseClient, ClientMeta
25
+ from botocore.errorfactory import BaseClientExceptions
26
+ from botocore.exceptions import ClientError as BotocoreClientError
23
27
 
24
28
  from .type_defs import (
25
29
  GetGlyphsRequestRequestTypeDef,
@@ -34,6 +38,11 @@ from .type_defs import (
34
38
  GetTileResponseTypeDef,
35
39
  )
36
40
 
41
+ if sys.version_info >= (3, 9):
42
+ from builtins import type as Type
43
+ from collections.abc import Mapping
44
+ else:
45
+ from typing import Mapping, Type
37
46
  if sys.version_info >= (3, 12):
38
47
  from typing import Unpack
39
48
  else:
@@ -43,15 +52,7 @@ else:
43
52
  __all__ = ("LocationServiceMapsV2Client",)
44
53
 
45
54
 
46
- class BotocoreClientError(Exception):
47
- MSG_TEMPLATE: str
48
-
49
- def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
50
- self.response: Dict[str, Any]
51
- self.operation_name: str
52
-
53
-
54
- class Exceptions:
55
+ class Exceptions(BaseClientExceptions):
55
56
  AccessDeniedException: Type[BotocoreClientError]
56
57
  ClientError: Type[BotocoreClientError]
57
58
  InternalServerException: Type[BotocoreClientError]
@@ -94,12 +95,6 @@ class LocationServiceMapsV2Client(BaseClient):
94
95
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#generate_presigned_url)
95
96
  """
96
97
 
97
- def close(self) -> None:
98
- """
99
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/close.html)
100
- [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#close)
101
- """
102
-
103
98
  def get_glyphs(
104
99
  self, **kwargs: Unpack[GetGlyphsRequestRequestTypeDef]
105
100
  ) -> GetGlyphsResponseTypeDef:
@@ -1,7 +1,7 @@
1
1
  """
2
- Type annotations for geo-maps service client.
2
+ Type annotations for geo-maps service Client.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/)
5
5
 
6
6
  Usage::
7
7
 
@@ -13,13 +13,17 @@ Usage::
13
13
  client: LocationServiceMapsV2Client = session.client("geo-maps")
14
14
  ```
15
15
 
16
- Copyright 2024 Vlad Emelianov
16
+ Copyright 2025 Vlad Emelianov
17
17
  """
18
18
 
19
+ from __future__ import annotations
20
+
19
21
  import sys
20
- from typing import Any, Dict, Mapping, Type
22
+ from typing import Any
21
23
 
22
24
  from botocore.client import BaseClient, ClientMeta
25
+ from botocore.errorfactory import BaseClientExceptions
26
+ from botocore.exceptions import ClientError as BotocoreClientError
23
27
 
24
28
  from .type_defs import (
25
29
  GetGlyphsRequestRequestTypeDef,
@@ -34,6 +38,11 @@ from .type_defs import (
34
38
  GetTileResponseTypeDef,
35
39
  )
36
40
 
41
+ if sys.version_info >= (3, 9):
42
+ from builtins import type as Type
43
+ from collections.abc import Mapping
44
+ else:
45
+ from typing import Mapping, Type
37
46
  if sys.version_info >= (3, 12):
38
47
  from typing import Unpack
39
48
  else:
@@ -41,14 +50,7 @@ else:
41
50
 
42
51
  __all__ = ("LocationServiceMapsV2Client",)
43
52
 
44
- class BotocoreClientError(Exception):
45
- MSG_TEMPLATE: str
46
-
47
- def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
48
- self.response: Dict[str, Any]
49
- self.operation_name: str
50
-
51
- class Exceptions:
53
+ class Exceptions(BaseClientExceptions):
52
54
  AccessDeniedException: Type[BotocoreClientError]
53
55
  ClientError: Type[BotocoreClientError]
54
56
  InternalServerException: Type[BotocoreClientError]
@@ -90,12 +92,6 @@ class LocationServiceMapsV2Client(BaseClient):
90
92
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#generate_presigned_url)
91
93
  """
92
94
 
93
- def close(self) -> None:
94
- """
95
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/close.html)
96
- [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#close)
97
- """
98
-
99
95
  def get_glyphs(
100
96
  self, **kwargs: Unpack[GetGlyphsRequestRequestTypeDef]
101
97
  ) -> GetGlyphsResponseTypeDef:
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for geo-maps service literal definitions.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/literals/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/literals/)
5
5
 
6
6
  Usage::
7
7
 
@@ -11,7 +11,7 @@ Usage::
11
11
  data: ColorSchemeType = "Dark"
12
12
  ```
13
13
 
14
- Copyright 2024 Vlad Emelianov
14
+ Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
17
  import sys
@@ -75,12 +75,15 @@ ServiceName = Literal[
75
75
  "b2bi",
76
76
  "backup",
77
77
  "backup-gateway",
78
+ "backupsearch",
78
79
  "batch",
79
80
  "bcm-data-exports",
80
81
  "bcm-pricing-calculator",
81
82
  "bedrock",
82
83
  "bedrock-agent",
83
84
  "bedrock-agent-runtime",
85
+ "bedrock-data-automation",
86
+ "bedrock-data-automation-runtime",
84
87
  "bedrock-runtime",
85
88
  "billing",
86
89
  "billingconductor",
@@ -158,6 +161,7 @@ ServiceName = Literal[
158
161
  "drs",
159
162
  "ds",
160
163
  "ds-data",
164
+ "dsql",
161
165
  "dynamodb",
162
166
  "dynamodbstreams",
163
167
  "ebs",
@@ -214,6 +218,7 @@ ServiceName = Literal[
214
218
  "inspector-scan",
215
219
  "inspector2",
216
220
  "internetmonitor",
221
+ "invoicing",
217
222
  "iot",
218
223
  "iot-data",
219
224
  "iot-jobs-data",
@@ -300,6 +305,7 @@ ServiceName = Literal[
300
305
  "neptune-graph",
301
306
  "neptunedata",
302
307
  "network-firewall",
308
+ "networkflowmonitor",
303
309
  "networkmanager",
304
310
  "networkmonitor",
305
311
  "notifications",
@@ -366,6 +372,7 @@ ServiceName = Literal[
366
372
  "s3",
367
373
  "s3control",
368
374
  "s3outposts",
375
+ "s3tables",
369
376
  "sagemaker",
370
377
  "sagemaker-a2i-runtime",
371
378
  "sagemaker-edge",
@@ -378,6 +385,7 @@ ServiceName = Literal[
378
385
  "schemas",
379
386
  "sdb",
380
387
  "secretsmanager",
388
+ "security-ir",
381
389
  "securityhub",
382
390
  "securitylake",
383
391
  "serverlessrepo",
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for geo-maps service literal definitions.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/literals/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/literals/)
5
5
 
6
6
  Usage::
7
7
 
@@ -11,7 +11,7 @@ Usage::
11
11
  data: ColorSchemeType = "Dark"
12
12
  ```
13
13
 
14
- Copyright 2024 Vlad Emelianov
14
+ Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
17
  import sys
@@ -73,12 +73,15 @@ ServiceName = Literal[
73
73
  "b2bi",
74
74
  "backup",
75
75
  "backup-gateway",
76
+ "backupsearch",
76
77
  "batch",
77
78
  "bcm-data-exports",
78
79
  "bcm-pricing-calculator",
79
80
  "bedrock",
80
81
  "bedrock-agent",
81
82
  "bedrock-agent-runtime",
83
+ "bedrock-data-automation",
84
+ "bedrock-data-automation-runtime",
82
85
  "bedrock-runtime",
83
86
  "billing",
84
87
  "billingconductor",
@@ -156,6 +159,7 @@ ServiceName = Literal[
156
159
  "drs",
157
160
  "ds",
158
161
  "ds-data",
162
+ "dsql",
159
163
  "dynamodb",
160
164
  "dynamodbstreams",
161
165
  "ebs",
@@ -212,6 +216,7 @@ ServiceName = Literal[
212
216
  "inspector-scan",
213
217
  "inspector2",
214
218
  "internetmonitor",
219
+ "invoicing",
215
220
  "iot",
216
221
  "iot-data",
217
222
  "iot-jobs-data",
@@ -298,6 +303,7 @@ ServiceName = Literal[
298
303
  "neptune-graph",
299
304
  "neptunedata",
300
305
  "network-firewall",
306
+ "networkflowmonitor",
301
307
  "networkmanager",
302
308
  "networkmonitor",
303
309
  "notifications",
@@ -364,6 +370,7 @@ ServiceName = Literal[
364
370
  "s3",
365
371
  "s3control",
366
372
  "s3outposts",
373
+ "s3tables",
367
374
  "sagemaker",
368
375
  "sagemaker-a2i-runtime",
369
376
  "sagemaker-edge",
@@ -376,6 +383,7 @@ ServiceName = Literal[
376
383
  "schemas",
377
384
  "sdb",
378
385
  "secretsmanager",
386
+ "security-ir",
379
387
  "securityhub",
380
388
  "securitylake",
381
389
  "serverlessrepo",
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for geo-maps service type definitions.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/type_defs/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/type_defs/)
5
5
 
6
6
  Usage::
7
7
 
@@ -11,16 +11,21 @@ Usage::
11
11
  data: GetGlyphsRequestRequestTypeDef = ...
12
12
  ```
13
13
 
14
- Copyright 2024 Vlad Emelianov
14
+ Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
+ from __future__ import annotations
18
+
17
19
  import sys
18
- from typing import Dict
19
20
 
20
21
  from botocore.response import StreamingBody
21
22
 
22
23
  from .literals import ColorSchemeType, MapStyleType, ScaleBarUnitType
23
24
 
25
+ if sys.version_info >= (3, 9):
26
+ from builtins import dict as Dict
27
+ else:
28
+ from typing import Dict
24
29
  if sys.version_info >= (3, 12):
25
30
  from typing import Literal, NotRequired, TypedDict
26
31
  else:
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for geo-maps service type definitions.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/type_defs/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/type_defs/)
5
5
 
6
6
  Usage::
7
7
 
@@ -11,16 +11,21 @@ Usage::
11
11
  data: GetGlyphsRequestRequestTypeDef = ...
12
12
  ```
13
13
 
14
- Copyright 2024 Vlad Emelianov
14
+ Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
+ from __future__ import annotations
18
+
17
19
  import sys
18
- from typing import Dict
19
20
 
20
21
  from botocore.response import StreamingBody
21
22
 
22
23
  from .literals import ColorSchemeType, MapStyleType, ScaleBarUnitType
23
24
 
25
+ if sys.version_info >= (3, 9):
26
+ from builtins import dict as Dict
27
+ else:
28
+ from typing import Dict
24
29
  if sys.version_info >= (3, 12):
25
30
  from typing import Literal, NotRequired, TypedDict
26
31
  else:
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Source of truth for version.
3
3
 
4
- Copyright 2024 Vlad Emelianov
4
+ Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.35.71"
7
+ __version__ = "1.35.93"
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 Vlad Emelianov
3
+ Copyright (c) 2025 Vlad Emelianov
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: types-boto3-geo-maps
3
- Version: 1.35.71
4
- Summary: Type annotations for boto3 LocationServiceMapsV2 1.35.71 service generated with mypy-boto3-builder 8.4.1
3
+ Version: 1.35.93
4
+ Summary: Type annotations for boto3 LocationServiceMapsV2 1.35.93 service generated with mypy-boto3-builder 8.8.0
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
@@ -9,7 +9,7 @@ License: MIT License
9
9
  Project-URL: Documentation, https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/
10
10
  Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
11
11
  Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
12
- Keywords: boto3 geo-maps type-annotations botocore mypy typeshed autocomplete
12
+ Keywords: boto3 geo-maps boto3-stubs type-annotations mypy typeshed autocomplete
13
13
  Classifier: Development Status :: 5 - Production/Stable
14
14
  Classifier: Intended Audience :: Developers
15
15
  Classifier: Environment :: Console
@@ -30,7 +30,7 @@ Classifier: Typing :: Stubs Only
30
30
  Requires-Python: >=3.8
31
31
  Description-Content-Type: text/markdown
32
32
  License-File: LICENSE
33
- Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
33
+ Requires-Dist: typing-extensions; python_version < "3.12"
34
34
 
35
35
  <a id="types-boto3-geo-maps"></a>
36
36
 
@@ -44,7 +44,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
44
44
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
45
45
 
46
46
  Type annotations for
47
- [boto3 LocationServiceMapsV2 1.35.71](https://pypi.org/project/boto3/)
47
+ [boto3 LocationServiceMapsV2 1.35.93](https://pypi.org/project/boto3/)
48
48
  compatible with [VSCode](https://code.visualstudio.com/),
49
49
  [PyCharm](https://www.jetbrains.com/pycharm/),
50
50
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -52,8 +52,8 @@ compatible with [VSCode](https://code.visualstudio.com/),
52
52
  [mypy](https://github.com/python/mypy),
53
53
  [pyright](https://github.com/microsoft/pyright) and other tools.
54
54
 
55
- Generated by
56
- [mypy-boto3-builder 8.4.1](https://github.com/youtype/mypy_boto3_builder).
55
+ Generated with
56
+ [mypy-boto3-builder 8.8.0](https://github.com/youtype/mypy_boto3_builder).
57
57
 
58
58
  More information can be found on
59
59
  [types-boto3](https://pypi.org/project/types-boto3/) page and in
@@ -61,10 +61,11 @@ More information can be found on
61
61
 
62
62
  See how it helps you find and fix potential bugs:
63
63
 
64
- ![boto3-stubs demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)
64
+ ![types-boto3 demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)
65
65
 
66
66
  - [types-boto3-geo-maps](#types-boto3-geo-maps)
67
67
  - [How to install](#how-to-install)
68
+ - [Generate locally (recommended)](<#generate-locally-(recommended)>)
68
69
  - [VSCode extension](#vscode-extension)
69
70
  - [From PyPI with pip](#from-pypi-with-pip)
70
71
  - [How to uninstall](#how-to-uninstall)
@@ -76,6 +77,7 @@ See how it helps you find and fix potential bugs:
76
77
  - [Other IDEs](#other-ides)
77
78
  - [mypy](#mypy)
78
79
  - [pyright](#pyright)
80
+ - [Pylint compatibility](#pylint-compatibility)
79
81
  - [Explicit type annotations](#explicit-type-annotations)
80
82
  - [Client annotations](#client-annotations)
81
83
  - [Literals](#literals)
@@ -93,6 +95,21 @@ See how it helps you find and fix potential bugs:
93
95
 
94
96
  ## How to install
95
97
 
98
+ <a id="generate-locally-(recommended)"></a>
99
+
100
+ ### Generate locally (recommended)
101
+
102
+ You can generate type annotations for `boto3` package locally with
103
+ `mypy_boto3_builder`. Use
104
+ [uv](https://docs.astral.sh/uv/getting-started/installation/) for build
105
+ isolation.
106
+
107
+ 1. Run mypy-boto3-builder in your package root directory:
108
+ `uvx --with 'boto3==1.35.93' mypy_boto3_builder`
109
+ 2. Select `boto3` AWS SDK.
110
+ 3. Add `LocationServiceMapsV2` service.
111
+ 4. Use provided commands to install generated packages.
112
+
96
113
  <a id="vscode-extension"></a>
97
114
 
98
115
  ### VSCode extension
@@ -113,12 +130,10 @@ Install `types-boto3` for `LocationServiceMapsV2` service.
113
130
  # install with boto3 type annotations
114
131
  python -m pip install 'types-boto3[geo-maps]'
115
132
 
116
-
117
133
  # Lite version does not provide session.client/resource overloads
118
134
  # it is more RAM-friendly, but requires explicit type annotations
119
135
  python -m pip install 'types-boto3-lite[geo-maps]'
120
136
 
121
-
122
137
  # standalone installation
123
138
  python -m pip install types-boto3-geo-maps
124
139
  ```
@@ -267,6 +282,31 @@ Optionally, you can install `types-boto3` to `typings` directory.
267
282
  Type checking should now work. No explicit type annotations required, write
268
283
  your `boto3` code as usual.
269
284
 
285
+ <a id="pylint-compatibility"></a>
286
+
287
+ ### Pylint compatibility
288
+
289
+ It is totally safe to use `TYPE_CHECKING` flag in order to avoid
290
+ `types-boto3-geo-maps` dependency in production. However, there is an issue in
291
+ `pylint` that it complains about undefined variables. To fix it, set all types
292
+ to `object` in non-`TYPE_CHECKING` mode.
293
+
294
+ ```python
295
+ from typing import TYPE_CHECKING
296
+
297
+ if TYPE_CHECKING:
298
+ from types_boto3_ec2 import EC2Client, EC2ServiceResource
299
+ from types_boto3_ec2.waiters import BundleTaskCompleteWaiter
300
+ from types_boto3_ec2.paginators import DescribeVolumesPaginator
301
+ else:
302
+ EC2Client = object
303
+ EC2ServiceResource = object
304
+ BundleTaskCompleteWaiter = object
305
+ DescribeVolumesPaginator = object
306
+
307
+ ...
308
+ ```
309
+
270
310
  <a id="explicit-type-annotations"></a>
271
311
 
272
312
  ## Explicit type annotations
@@ -0,0 +1,16 @@
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=ADXYgWcROK2Zhbb52OogJeBpQruN1gSTB7t7cwEEvAg,1014
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=OPurws-7K07mfOZTOMlmY_vy1oqN58olvOOyhMR32aQ,9197
7
+ types_boto3_geo_maps/literals.pyi,sha256=XF4wBbxl8zWOrGvR9J1lZDuKF4bHArmDb5STTJWSH90,9195
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=n6wyMBvI3Tp0INYol4fUJ84y0BqM9ti-SkLRGfsif5s,93
12
+ types_boto3_geo_maps-1.35.93.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
13
+ types_boto3_geo_maps-1.35.93.dist-info/METADATA,sha256=4DIrDHVlzVLKe5DgEfn2HV8fjSVOZycoaduowR2isNc,14104
14
+ types_boto3_geo_maps-1.35.93.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
15
+ types_boto3_geo_maps-1.35.93.dist-info/top_level.txt,sha256=CwmcVINVZ93FRQXEIzN9dWnvPhak6LqhxvD3gPv3SkU,21
16
+ types_boto3_geo_maps-1.35.93.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (75.7.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,16 +0,0 @@
1
- types_boto3_geo_maps/__init__.py,sha256=mFcsYrfYorUkIleUfnkxB_LCq5wTZaXds1w5I6asKhM,479
2
- types_boto3_geo_maps/__init__.pyi,sha256=TmI9ueOuvNcT8vIRajlLj4gdEy7UuAYR16LIQZ-TTv0,478
3
- types_boto3_geo_maps/__main__.py,sha256=H4qbnGBNc4-Vd4buqW1X3heJYWzoBB-ttebWyQ4Bm6U,980
4
- types_boto3_geo_maps/client.py,sha256=iwABltTVmhAy3zt-zZLVvvfC0veprxIkPLGHHrciI0E,5801
5
- types_boto3_geo_maps/client.pyi,sha256=Cb8bvXGx9ovJjKqYw3hduN_Y-coG27rO9YeEJxQdtVg,5797
6
- types_boto3_geo_maps/literals.py,sha256=6TPsaORvt7YFq9B4c3_dHqg1AYpibPfis5-cOHSFae0,9022
7
- types_boto3_geo_maps/literals.pyi,sha256=8mvZmHab5MT9kfvZDHCUEVgAukso54M_0Zndyg5rbvM,9020
8
- types_boto3_geo_maps/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
- types_boto3_geo_maps/type_defs.py,sha256=Io7dzBS0AmK8xFkciaow5R4dXEv-ElONQt5Wxg8CoV4,3228
10
- types_boto3_geo_maps/type_defs.pyi,sha256=7Nuk20hBUthSTHtQksbKf8oRChPNlkcMvXc-THk5tKA,3216
11
- types_boto3_geo_maps/version.py,sha256=eIS36a5iw2-mD_eS7zeepUtx_w_DQOn6RiPaBDeB7EQ,93
12
- types_boto3_geo_maps-1.35.71.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
13
- types_boto3_geo_maps-1.35.71.dist-info/METADATA,sha256=SPpaeRyoNkwwDq2oTS136nHwHutqaQkMFTnrSHtVwE4,12760
14
- types_boto3_geo_maps-1.35.71.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
15
- types_boto3_geo_maps-1.35.71.dist-info/top_level.txt,sha256=CwmcVINVZ93FRQXEIzN9dWnvPhak6LqhxvD3gPv3SkU,21
16
- types_boto3_geo_maps-1.35.71.dist-info/RECORD,,