types-boto3-geo-maps 1.40.59__py3-none-any.whl → 1.41.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.
- types_boto3_geo_maps/__main__.py +4 -4
- types_boto3_geo_maps/client.py +7 -11
- types_boto3_geo_maps/client.pyi +7 -11
- types_boto3_geo_maps/literals.py +3 -7
- types_boto3_geo_maps/literals.pyi +3 -7
- types_boto3_geo_maps/type_defs.py +2 -6
- types_boto3_geo_maps/type_defs.pyi +2 -6
- types_boto3_geo_maps/version.py +1 -1
- {types_boto3_geo_maps-1.40.59.dist-info → types_boto3_geo_maps-1.41.0.dist-info}/METADATA +11 -25
- types_boto3_geo_maps-1.41.0.dist-info/RECORD +16 -0
- types_boto3_geo_maps-1.40.59.dist-info/RECORD +0 -16
- {types_boto3_geo_maps-1.40.59.dist-info → types_boto3_geo_maps-1.41.0.dist-info}/WHEEL +0 -0
- {types_boto3_geo_maps-1.40.59.dist-info → types_boto3_geo_maps-1.41.0.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_geo_maps-1.40.59.dist-info → types_boto3_geo_maps-1.41.0.dist-info}/top_level.txt +0 -0
types_boto3_geo_maps/__main__.py
CHANGED
|
@@ -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.
|
|
16
|
-
"Version: 1.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 LocationServiceMapsV2 1.41.0\n"
|
|
16
|
+
"Version: 1.41.0\n"
|
|
17
|
+
"Builder version: 8.12.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"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.
|
|
29
|
+
sys.stdout.write("1.41.0\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
types_boto3_geo_maps/client.py
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
22
23
|
from typing import Any
|
|
23
24
|
|
|
24
25
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -38,11 +39,6 @@ from .type_defs import (
|
|
|
38
39
|
GetTileResponseTypeDef,
|
|
39
40
|
)
|
|
40
41
|
|
|
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
|
|
46
42
|
if sys.version_info >= (3, 12):
|
|
47
43
|
from typing import Unpack
|
|
48
44
|
else:
|
|
@@ -53,12 +49,12 @@ __all__ = ("LocationServiceMapsV2Client",)
|
|
|
53
49
|
|
|
54
50
|
|
|
55
51
|
class Exceptions(BaseClientExceptions):
|
|
56
|
-
AccessDeniedException:
|
|
57
|
-
ClientError:
|
|
58
|
-
InternalServerException:
|
|
59
|
-
ResourceNotFoundException:
|
|
60
|
-
ThrottlingException:
|
|
61
|
-
ValidationException:
|
|
52
|
+
AccessDeniedException: type[BotocoreClientError]
|
|
53
|
+
ClientError: type[BotocoreClientError]
|
|
54
|
+
InternalServerException: type[BotocoreClientError]
|
|
55
|
+
ResourceNotFoundException: type[BotocoreClientError]
|
|
56
|
+
ThrottlingException: type[BotocoreClientError]
|
|
57
|
+
ValidationException: type[BotocoreClientError]
|
|
62
58
|
|
|
63
59
|
|
|
64
60
|
class LocationServiceMapsV2Client(BaseClient):
|
types_boto3_geo_maps/client.pyi
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
22
23
|
from typing import Any
|
|
23
24
|
|
|
24
25
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -38,11 +39,6 @@ from .type_defs import (
|
|
|
38
39
|
GetTileResponseTypeDef,
|
|
39
40
|
)
|
|
40
41
|
|
|
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
|
|
46
42
|
if sys.version_info >= (3, 12):
|
|
47
43
|
from typing import Unpack
|
|
48
44
|
else:
|
|
@@ -51,12 +47,12 @@ else:
|
|
|
51
47
|
__all__ = ("LocationServiceMapsV2Client",)
|
|
52
48
|
|
|
53
49
|
class Exceptions(BaseClientExceptions):
|
|
54
|
-
AccessDeniedException:
|
|
55
|
-
ClientError:
|
|
56
|
-
InternalServerException:
|
|
57
|
-
ResourceNotFoundException:
|
|
58
|
-
ThrottlingException:
|
|
59
|
-
ValidationException:
|
|
50
|
+
AccessDeniedException: type[BotocoreClientError]
|
|
51
|
+
ClientError: type[BotocoreClientError]
|
|
52
|
+
InternalServerException: type[BotocoreClientError]
|
|
53
|
+
ResourceNotFoundException: type[BotocoreClientError]
|
|
54
|
+
ThrottlingException: type[BotocoreClientError]
|
|
55
|
+
ValidationException: type[BotocoreClientError]
|
|
60
56
|
|
|
61
57
|
class LocationServiceMapsV2Client(BaseClient):
|
|
62
58
|
"""
|
types_boto3_geo_maps/literals.py
CHANGED
|
@@ -80,7 +80,6 @@ ServiceName = Literal[
|
|
|
80
80
|
"apprunner",
|
|
81
81
|
"appstream",
|
|
82
82
|
"appsync",
|
|
83
|
-
"apptest",
|
|
84
83
|
"arc-region-switch",
|
|
85
84
|
"arc-zonal-shift",
|
|
86
85
|
"artifact",
|
|
@@ -248,7 +247,6 @@ ServiceName = Literal[
|
|
|
248
247
|
"iotdeviceadvisor",
|
|
249
248
|
"iotevents",
|
|
250
249
|
"iotevents-data",
|
|
251
|
-
"iotfleethub",
|
|
252
250
|
"iotfleetwise",
|
|
253
251
|
"iotsecuretunneling",
|
|
254
252
|
"iotsitewise",
|
|
@@ -287,8 +285,6 @@ ServiceName = Literal[
|
|
|
287
285
|
"location",
|
|
288
286
|
"logs",
|
|
289
287
|
"lookoutequipment",
|
|
290
|
-
"lookoutmetrics",
|
|
291
|
-
"lookoutvision",
|
|
292
288
|
"m2",
|
|
293
289
|
"machinelearning",
|
|
294
290
|
"macie2",
|
|
@@ -323,6 +319,7 @@ ServiceName = Literal[
|
|
|
323
319
|
"mq",
|
|
324
320
|
"mturk",
|
|
325
321
|
"mwaa",
|
|
322
|
+
"mwaa-serverless",
|
|
326
323
|
"neptune",
|
|
327
324
|
"neptune-graph",
|
|
328
325
|
"neptunedata",
|
|
@@ -342,6 +339,7 @@ ServiceName = Literal[
|
|
|
342
339
|
"osis",
|
|
343
340
|
"outposts",
|
|
344
341
|
"panorama",
|
|
342
|
+
"partnercentral-channel",
|
|
345
343
|
"partnercentral-selling",
|
|
346
344
|
"payment-cryptography",
|
|
347
345
|
"payment-cryptography-data",
|
|
@@ -363,8 +361,6 @@ ServiceName = Literal[
|
|
|
363
361
|
"qapps",
|
|
364
362
|
"qbusiness",
|
|
365
363
|
"qconnect",
|
|
366
|
-
"qldb",
|
|
367
|
-
"qldb-session",
|
|
368
364
|
"quicksight",
|
|
369
365
|
"ram",
|
|
370
366
|
"rbin",
|
|
@@ -379,7 +375,6 @@ ServiceName = Literal[
|
|
|
379
375
|
"resource-explorer-2",
|
|
380
376
|
"resource-groups",
|
|
381
377
|
"resourcegroupstaggingapi",
|
|
382
|
-
"robomaker",
|
|
383
378
|
"rolesanywhere",
|
|
384
379
|
"route53",
|
|
385
380
|
"route53-recovery-cluster",
|
|
@@ -419,6 +414,7 @@ ServiceName = Literal[
|
|
|
419
414
|
"sesv2",
|
|
420
415
|
"shield",
|
|
421
416
|
"signer",
|
|
417
|
+
"signin",
|
|
422
418
|
"simspaceweaver",
|
|
423
419
|
"snow-device-management",
|
|
424
420
|
"snowball",
|
|
@@ -78,7 +78,6 @@ ServiceName = Literal[
|
|
|
78
78
|
"apprunner",
|
|
79
79
|
"appstream",
|
|
80
80
|
"appsync",
|
|
81
|
-
"apptest",
|
|
82
81
|
"arc-region-switch",
|
|
83
82
|
"arc-zonal-shift",
|
|
84
83
|
"artifact",
|
|
@@ -246,7 +245,6 @@ ServiceName = Literal[
|
|
|
246
245
|
"iotdeviceadvisor",
|
|
247
246
|
"iotevents",
|
|
248
247
|
"iotevents-data",
|
|
249
|
-
"iotfleethub",
|
|
250
248
|
"iotfleetwise",
|
|
251
249
|
"iotsecuretunneling",
|
|
252
250
|
"iotsitewise",
|
|
@@ -285,8 +283,6 @@ ServiceName = Literal[
|
|
|
285
283
|
"location",
|
|
286
284
|
"logs",
|
|
287
285
|
"lookoutequipment",
|
|
288
|
-
"lookoutmetrics",
|
|
289
|
-
"lookoutvision",
|
|
290
286
|
"m2",
|
|
291
287
|
"machinelearning",
|
|
292
288
|
"macie2",
|
|
@@ -321,6 +317,7 @@ ServiceName = Literal[
|
|
|
321
317
|
"mq",
|
|
322
318
|
"mturk",
|
|
323
319
|
"mwaa",
|
|
320
|
+
"mwaa-serverless",
|
|
324
321
|
"neptune",
|
|
325
322
|
"neptune-graph",
|
|
326
323
|
"neptunedata",
|
|
@@ -340,6 +337,7 @@ ServiceName = Literal[
|
|
|
340
337
|
"osis",
|
|
341
338
|
"outposts",
|
|
342
339
|
"panorama",
|
|
340
|
+
"partnercentral-channel",
|
|
343
341
|
"partnercentral-selling",
|
|
344
342
|
"payment-cryptography",
|
|
345
343
|
"payment-cryptography-data",
|
|
@@ -361,8 +359,6 @@ ServiceName = Literal[
|
|
|
361
359
|
"qapps",
|
|
362
360
|
"qbusiness",
|
|
363
361
|
"qconnect",
|
|
364
|
-
"qldb",
|
|
365
|
-
"qldb-session",
|
|
366
362
|
"quicksight",
|
|
367
363
|
"ram",
|
|
368
364
|
"rbin",
|
|
@@ -377,7 +373,6 @@ ServiceName = Literal[
|
|
|
377
373
|
"resource-explorer-2",
|
|
378
374
|
"resource-groups",
|
|
379
375
|
"resourcegroupstaggingapi",
|
|
380
|
-
"robomaker",
|
|
381
376
|
"rolesanywhere",
|
|
382
377
|
"route53",
|
|
383
378
|
"route53-recovery-cluster",
|
|
@@ -417,6 +412,7 @@ ServiceName = Literal[
|
|
|
417
412
|
"sesv2",
|
|
418
413
|
"shield",
|
|
419
414
|
"signer",
|
|
415
|
+
"signin",
|
|
420
416
|
"simspaceweaver",
|
|
421
417
|
"snow-device-management",
|
|
422
418
|
"snowball",
|
|
@@ -17,6 +17,7 @@ Usage::
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
|
+
from collections.abc import Sequence
|
|
20
21
|
|
|
21
22
|
from botocore.response import StreamingBody
|
|
22
23
|
|
|
@@ -31,11 +32,6 @@ from .literals import (
|
|
|
31
32
|
TravelModeType,
|
|
32
33
|
)
|
|
33
34
|
|
|
34
|
-
if sys.version_info >= (3, 9):
|
|
35
|
-
from builtins import dict as Dict
|
|
36
|
-
from collections.abc import Sequence
|
|
37
|
-
else:
|
|
38
|
-
from typing import Dict, Sequence
|
|
39
35
|
if sys.version_info >= (3, 12):
|
|
40
36
|
from typing import Literal, NotRequired, TypedDict
|
|
41
37
|
else:
|
|
@@ -65,7 +61,7 @@ class GetGlyphsRequestTypeDef(TypedDict):
|
|
|
65
61
|
class ResponseMetadataTypeDef(TypedDict):
|
|
66
62
|
RequestId: str
|
|
67
63
|
HTTPStatusCode: int
|
|
68
|
-
HTTPHeaders:
|
|
64
|
+
HTTPHeaders: dict[str, str]
|
|
69
65
|
RetryAttempts: int
|
|
70
66
|
HostId: NotRequired[str]
|
|
71
67
|
|
|
@@ -17,6 +17,7 @@ Usage::
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
|
+
from collections.abc import Sequence
|
|
20
21
|
|
|
21
22
|
from botocore.response import StreamingBody
|
|
22
23
|
|
|
@@ -31,11 +32,6 @@ from .literals import (
|
|
|
31
32
|
TravelModeType,
|
|
32
33
|
)
|
|
33
34
|
|
|
34
|
-
if sys.version_info >= (3, 9):
|
|
35
|
-
from builtins import dict as Dict
|
|
36
|
-
from collections.abc import Sequence
|
|
37
|
-
else:
|
|
38
|
-
from typing import Dict, Sequence
|
|
39
35
|
if sys.version_info >= (3, 12):
|
|
40
36
|
from typing import Literal, NotRequired, TypedDict
|
|
41
37
|
else:
|
|
@@ -62,7 +58,7 @@ class GetGlyphsRequestTypeDef(TypedDict):
|
|
|
62
58
|
class ResponseMetadataTypeDef(TypedDict):
|
|
63
59
|
RequestId: str
|
|
64
60
|
HTTPStatusCode: int
|
|
65
|
-
HTTPHeaders:
|
|
61
|
+
HTTPHeaders: dict[str, str]
|
|
66
62
|
RetryAttempts: int
|
|
67
63
|
HostId: NotRequired[str]
|
|
68
64
|
|
types_boto3_geo_maps/version.py
CHANGED
|
@@ -1,23 +1,21 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: types-boto3-geo-maps
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 LocationServiceMapsV2 1.
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
License: MIT License
|
|
3
|
+
Version: 1.41.0
|
|
4
|
+
Summary: Type annotations for boto3 LocationServiceMapsV2 1.41.0 service generated with mypy-boto3-builder 8.12.0
|
|
5
|
+
Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
|
|
9
8
|
Project-URL: Documentation, https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/
|
|
10
9
|
Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
|
|
11
10
|
Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
|
|
12
|
-
Keywords: boto3
|
|
11
|
+
Keywords: boto3,geo-maps,boto3-stubs,type-annotations,mypy,typeshed,autocomplete
|
|
12
|
+
Platform: any
|
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
15
|
Classifier: Environment :: Console
|
|
16
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
17
16
|
Classifier: Natural Language :: English
|
|
18
17
|
Classifier: Operating System :: OS Independent
|
|
19
18
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
21
19
|
Classifier: Programming Language :: Python :: 3.9
|
|
22
20
|
Classifier: Programming Language :: Python :: 3.10
|
|
23
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -27,23 +25,11 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
27
25
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
28
26
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
27
|
Classifier: Typing :: Stubs Only
|
|
30
|
-
Requires-Python: >=3.
|
|
28
|
+
Requires-Python: >=3.9
|
|
31
29
|
Description-Content-Type: text/markdown
|
|
32
30
|
License-File: LICENSE
|
|
33
31
|
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
34
|
-
Dynamic: author
|
|
35
|
-
Dynamic: author-email
|
|
36
|
-
Dynamic: classifier
|
|
37
|
-
Dynamic: description
|
|
38
|
-
Dynamic: description-content-type
|
|
39
|
-
Dynamic: home-page
|
|
40
|
-
Dynamic: keywords
|
|
41
|
-
Dynamic: license
|
|
42
32
|
Dynamic: license-file
|
|
43
|
-
Dynamic: project-url
|
|
44
|
-
Dynamic: requires-dist
|
|
45
|
-
Dynamic: requires-python
|
|
46
|
-
Dynamic: summary
|
|
47
33
|
|
|
48
34
|
<a id="types-boto3-geo-maps"></a>
|
|
49
35
|
|
|
@@ -57,7 +43,7 @@ Dynamic: summary
|
|
|
57
43
|

|
|
58
44
|
|
|
59
45
|
Type annotations for
|
|
60
|
-
[boto3 LocationServiceMapsV2 1.
|
|
46
|
+
[boto3 LocationServiceMapsV2 1.41.0](https://pypi.org/project/boto3/)
|
|
61
47
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
62
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
63
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -66,7 +52,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
66
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
67
53
|
|
|
68
54
|
Generated with
|
|
69
|
-
[mypy-boto3-builder 8.
|
|
55
|
+
[mypy-boto3-builder 8.12.0](https://github.com/youtype/mypy_boto3_builder).
|
|
70
56
|
|
|
71
57
|
More information can be found on
|
|
72
58
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -118,7 +104,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
118
104
|
isolation.
|
|
119
105
|
|
|
120
106
|
1. Run mypy-boto3-builder in your package root directory:
|
|
121
|
-
`uvx --with 'boto3==1.
|
|
107
|
+
`uvx --with 'boto3==1.41.0' mypy-boto3-builder`
|
|
122
108
|
2. Select `boto3` AWS SDK.
|
|
123
109
|
3. Add `LocationServiceMapsV2` service.
|
|
124
110
|
4. Use provided commands to install generated packages.
|
|
@@ -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=cLh1faJwVkc7Wu8yaXeQqsLEk9NDhFbsYudwUVtErD8,1012
|
|
4
|
+
types_boto3_geo_maps/client.py,sha256=iEHIjngufbPs3VhZeVzH2g8fSa1vCwcAO6HxpibAQjU,5550
|
|
5
|
+
types_boto3_geo_maps/client.pyi,sha256=yA7g34uC22Y1L4wFKiyMmcoEcszpcnOyRI2AFFGF-zs,5547
|
|
6
|
+
types_boto3_geo_maps/literals.py,sha256=tBh9Y-Yf76IGJEa-IFLu7pXM6iD6LIg3IOsSfqd8IoA,9782
|
|
7
|
+
types_boto3_geo_maps/literals.pyi,sha256=f_lovSgtygjDTQsqYtcdBBSLovv5kG8Rtmv4hPbTxl0,9780
|
|
8
|
+
types_boto3_geo_maps/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
types_boto3_geo_maps/type_defs.py,sha256=nTxOaruLSBt1uYGLpNFtOS7GTc2oAZNz5dQoHlC84Mo,3832
|
|
10
|
+
types_boto3_geo_maps/type_defs.pyi,sha256=SBoyBe8dCJRrb6fzExdOp8CQEzv7yM_8ARGMeYuN8bk,3820
|
|
11
|
+
types_boto3_geo_maps/version.py,sha256=ZtEblsbAVbZWuGFYY23SYRu3T8sCoiDNfG49dV1XWUA,92
|
|
12
|
+
types_boto3_geo_maps-1.41.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
13
|
+
types_boto3_geo_maps-1.41.0.dist-info/METADATA,sha256=Pjxilql1_AqKzit0wFYhq6m2LV1aBHTUACwGqDUOKRc,14139
|
|
14
|
+
types_boto3_geo_maps-1.41.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
15
|
+
types_boto3_geo_maps-1.41.0.dist-info/top_level.txt,sha256=CwmcVINVZ93FRQXEIzN9dWnvPhak6LqhxvD3gPv3SkU,21
|
|
16
|
+
types_boto3_geo_maps-1.41.0.dist-info/RECORD,,
|
|
@@ -1,16 +0,0 @@
|
|
|
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=mzlLr4zzjOzt9TgyOQvIQYuNvjoKwGBav-yVwfpjp5E,1015
|
|
4
|
-
types_boto3_geo_maps/client.py,sha256=KY3W1QudxtSxKxLc7xxrmcu41SXbZUYMBhphRXxVFKg,5666
|
|
5
|
-
types_boto3_geo_maps/client.pyi,sha256=u-V3Lvmu8Sr4WFqGP6HIJHIz3HjkGx-zczFY6LdAfjA,5663
|
|
6
|
-
types_boto3_geo_maps/literals.py,sha256=2vmjnY4_YxZh1VTc4CkO17teaEW0HogsQOYuMboEmV0,9841
|
|
7
|
-
types_boto3_geo_maps/literals.pyi,sha256=06dYKNHAzNBk0-BZz1eMvXyPobQ12d20CznMZtLazF4,9839
|
|
8
|
-
types_boto3_geo_maps/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
types_boto3_geo_maps/type_defs.py,sha256=7PVXn20tHl_C8SRZqzHDae8mIwpzRvj4fEctVU9K70Y,3949
|
|
10
|
-
types_boto3_geo_maps/type_defs.pyi,sha256=MD15vpo3jV9Rt4bQZSsnz6G1qoBELSBFpSjpkMPSqjk,3937
|
|
11
|
-
types_boto3_geo_maps/version.py,sha256=XA2R_dkriHQcJS9kMNz6sK7ztyDIjWSHFcUN2P6VDKk,93
|
|
12
|
-
types_boto3_geo_maps-1.40.59.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
13
|
-
types_boto3_geo_maps-1.40.59.dist-info/METADATA,sha256=CT7ofeZ6XF6IAJrmVQnnxGSIOw1m-9TSJ37wbZH3_ko,14474
|
|
14
|
-
types_boto3_geo_maps-1.40.59.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
15
|
-
types_boto3_geo_maps-1.40.59.dist-info/top_level.txt,sha256=CwmcVINVZ93FRQXEIzN9dWnvPhak6LqhxvD3gPv3SkU,21
|
|
16
|
-
types_boto3_geo_maps-1.40.59.dist-info/RECORD,,
|
|
File without changes
|
{types_boto3_geo_maps-1.40.59.dist-info → types_boto3_geo_maps-1.41.0.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{types_boto3_geo_maps-1.40.59.dist-info → types_boto3_geo_maps-1.41.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|