mypy-boto3-geo-maps 1.35.52__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.
- mypy_boto3_geo_maps/__init__.py +2 -0
- mypy_boto3_geo_maps/__init__.pyi +2 -0
- mypy_boto3_geo_maps/__main__.py +11 -8
- mypy_boto3_geo_maps/client.py +23 -32
- mypy_boto3_geo_maps/client.pyi +23 -31
- mypy_boto3_geo_maps/literals.py +21 -4
- mypy_boto3_geo_maps/literals.pyi +21 -4
- mypy_boto3_geo_maps/type_defs.py +107 -123
- mypy_boto3_geo_maps/type_defs.pyi +96 -123
- mypy_boto3_geo_maps/version.py +3 -1
- {mypy_boto3_geo_maps-1.35.52.dist-info → mypy_boto3_geo_maps-1.35.93.dist-info}/LICENSE +1 -1
- {mypy_boto3_geo_maps-1.35.52.dist-info → mypy_boto3_geo_maps-1.35.93.dist-info}/METADATA +77 -21
- mypy_boto3_geo_maps-1.35.93.dist-info/RECORD +16 -0
- {mypy_boto3_geo_maps-1.35.52.dist-info → mypy_boto3_geo_maps-1.35.93.dist-info}/WHEEL +1 -1
- mypy_boto3_geo_maps-1.35.52.dist-info/RECORD +0 -16
- {mypy_boto3_geo_maps-1.35.52.dist-info → mypy_boto3_geo_maps-1.35.93.dist-info}/top_level.txt +0 -0
mypy_boto3_geo_maps/__init__.py
CHANGED
mypy_boto3_geo_maps/__init__.pyi
CHANGED
mypy_boto3_geo_maps/__main__.py
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
|
+
|
|
4
|
+
Copyright 2025 Vlad Emelianov
|
|
3
5
|
"""
|
|
4
6
|
|
|
5
7
|
import sys
|
|
@@ -9,14 +11,14 @@ def print_info() -> None:
|
|
|
9
11
|
"""
|
|
10
12
|
Print package info to stdout.
|
|
11
13
|
"""
|
|
12
|
-
|
|
13
|
-
"Type annotations for boto3
|
|
14
|
-
"Version: 1.35.
|
|
15
|
-
"Builder version: 8.
|
|
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"
|
|
16
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps//\n"
|
|
17
|
-
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#
|
|
19
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#locationservicemapsv2\n"
|
|
18
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
19
|
-
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
21
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
|
|
20
22
|
)
|
|
21
23
|
|
|
22
24
|
|
|
@@ -24,7 +26,7 @@ def print_version() -> None:
|
|
|
24
26
|
"""
|
|
25
27
|
Print package version to stdout.
|
|
26
28
|
"""
|
|
27
|
-
|
|
29
|
+
sys.stdout.write("1.35.93\n")
|
|
28
30
|
|
|
29
31
|
|
|
30
32
|
def main() -> None:
|
|
@@ -32,7 +34,8 @@ def main() -> None:
|
|
|
32
34
|
Main CLI entrypoint.
|
|
33
35
|
"""
|
|
34
36
|
if "--version" in sys.argv:
|
|
35
|
-
|
|
37
|
+
print_version()
|
|
38
|
+
return
|
|
36
39
|
print_info()
|
|
37
40
|
|
|
38
41
|
|
mypy_boto3_geo_maps/client.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for geo-maps service
|
|
2
|
+
Type annotations for geo-maps service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -12,12 +12,18 @@ Usage::
|
|
|
12
12
|
session = Session()
|
|
13
13
|
client: LocationServiceMapsV2Client = session.client("geo-maps")
|
|
14
14
|
```
|
|
15
|
+
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
15
17
|
"""
|
|
16
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
17
21
|
import sys
|
|
18
|
-
from typing import Any
|
|
22
|
+
from typing import Any
|
|
19
23
|
|
|
20
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
21
27
|
|
|
22
28
|
from .type_defs import (
|
|
23
29
|
GetGlyphsRequestRequestTypeDef,
|
|
@@ -32,6 +38,11 @@ from .type_defs import (
|
|
|
32
38
|
GetTileResponseTypeDef,
|
|
33
39
|
)
|
|
34
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
|
|
35
46
|
if sys.version_info >= (3, 12):
|
|
36
47
|
from typing import Unpack
|
|
37
48
|
else:
|
|
@@ -41,15 +52,7 @@ else:
|
|
|
41
52
|
__all__ = ("LocationServiceMapsV2Client",)
|
|
42
53
|
|
|
43
54
|
|
|
44
|
-
class
|
|
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
|
-
|
|
52
|
-
class Exceptions:
|
|
55
|
+
class Exceptions(BaseClientExceptions):
|
|
53
56
|
AccessDeniedException: Type[BotocoreClientError]
|
|
54
57
|
ClientError: Type[BotocoreClientError]
|
|
55
58
|
InternalServerException: Type[BotocoreClientError]
|
|
@@ -70,26 +73,16 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
70
73
|
"""
|
|
71
74
|
LocationServiceMapsV2Client exceptions.
|
|
72
75
|
|
|
73
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client
|
|
76
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client)
|
|
74
77
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#exceptions)
|
|
75
78
|
"""
|
|
76
79
|
|
|
77
80
|
def can_paginate(self, operation_name: str) -> bool:
|
|
78
81
|
"""
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client.can_paginate)
|
|
82
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/can_paginate.html)
|
|
82
83
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#can_paginate)
|
|
83
84
|
"""
|
|
84
85
|
|
|
85
|
-
def close(self) -> None:
|
|
86
|
-
"""
|
|
87
|
-
Closes underlying endpoint connections.
|
|
88
|
-
|
|
89
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client.close)
|
|
90
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#close)
|
|
91
|
-
"""
|
|
92
|
-
|
|
93
86
|
def generate_presigned_url(
|
|
94
87
|
self,
|
|
95
88
|
ClientMethod: str,
|
|
@@ -98,9 +91,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
98
91
|
HttpMethod: str = ...,
|
|
99
92
|
) -> str:
|
|
100
93
|
"""
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client.generate_presigned_url)
|
|
94
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/generate_presigned_url.html)
|
|
104
95
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#generate_presigned_url)
|
|
105
96
|
"""
|
|
106
97
|
|
|
@@ -110,7 +101,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
110
101
|
"""
|
|
111
102
|
Returns the map's glyphs.
|
|
112
103
|
|
|
113
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
104
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_glyphs.html)
|
|
114
105
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_glyphs)
|
|
115
106
|
"""
|
|
116
107
|
|
|
@@ -120,7 +111,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
120
111
|
"""
|
|
121
112
|
Returns the map's sprites.
|
|
122
113
|
|
|
123
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
114
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_sprites.html)
|
|
124
115
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_sprites)
|
|
125
116
|
"""
|
|
126
117
|
|
|
@@ -130,7 +121,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
130
121
|
"""
|
|
131
122
|
Provides high-quality static map images with customizable options.
|
|
132
123
|
|
|
133
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
124
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_static_map.html)
|
|
134
125
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_static_map)
|
|
135
126
|
"""
|
|
136
127
|
|
|
@@ -140,7 +131,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
140
131
|
"""
|
|
141
132
|
Returns information about the style.
|
|
142
133
|
|
|
143
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
134
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_style_descriptor.html)
|
|
144
135
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_style_descriptor)
|
|
145
136
|
"""
|
|
146
137
|
|
|
@@ -148,6 +139,6 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
148
139
|
"""
|
|
149
140
|
Returns a tile.
|
|
150
141
|
|
|
151
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
142
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_tile.html)
|
|
152
143
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_tile)
|
|
153
144
|
"""
|
mypy_boto3_geo_maps/client.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for geo-maps service
|
|
2
|
+
Type annotations for geo-maps service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -12,12 +12,18 @@ Usage::
|
|
|
12
12
|
session = Session()
|
|
13
13
|
client: LocationServiceMapsV2Client = session.client("geo-maps")
|
|
14
14
|
```
|
|
15
|
+
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
15
17
|
"""
|
|
16
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
17
21
|
import sys
|
|
18
|
-
from typing import Any
|
|
22
|
+
from typing import Any
|
|
19
23
|
|
|
20
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
21
27
|
|
|
22
28
|
from .type_defs import (
|
|
23
29
|
GetGlyphsRequestRequestTypeDef,
|
|
@@ -32,6 +38,11 @@ from .type_defs import (
|
|
|
32
38
|
GetTileResponseTypeDef,
|
|
33
39
|
)
|
|
34
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
|
|
35
46
|
if sys.version_info >= (3, 12):
|
|
36
47
|
from typing import Unpack
|
|
37
48
|
else:
|
|
@@ -39,14 +50,7 @@ else:
|
|
|
39
50
|
|
|
40
51
|
__all__ = ("LocationServiceMapsV2Client",)
|
|
41
52
|
|
|
42
|
-
class
|
|
43
|
-
MSG_TEMPLATE: str
|
|
44
|
-
|
|
45
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
46
|
-
self.response: Dict[str, Any]
|
|
47
|
-
self.operation_name: str
|
|
48
|
-
|
|
49
|
-
class Exceptions:
|
|
53
|
+
class Exceptions(BaseClientExceptions):
|
|
50
54
|
AccessDeniedException: Type[BotocoreClientError]
|
|
51
55
|
ClientError: Type[BotocoreClientError]
|
|
52
56
|
InternalServerException: Type[BotocoreClientError]
|
|
@@ -66,26 +70,16 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
66
70
|
"""
|
|
67
71
|
LocationServiceMapsV2Client exceptions.
|
|
68
72
|
|
|
69
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client
|
|
73
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client)
|
|
70
74
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#exceptions)
|
|
71
75
|
"""
|
|
72
76
|
|
|
73
77
|
def can_paginate(self, operation_name: str) -> bool:
|
|
74
78
|
"""
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client.can_paginate)
|
|
79
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/can_paginate.html)
|
|
78
80
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#can_paginate)
|
|
79
81
|
"""
|
|
80
82
|
|
|
81
|
-
def close(self) -> None:
|
|
82
|
-
"""
|
|
83
|
-
Closes underlying endpoint connections.
|
|
84
|
-
|
|
85
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client.close)
|
|
86
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#close)
|
|
87
|
-
"""
|
|
88
|
-
|
|
89
83
|
def generate_presigned_url(
|
|
90
84
|
self,
|
|
91
85
|
ClientMethod: str,
|
|
@@ -94,9 +88,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
94
88
|
HttpMethod: str = ...,
|
|
95
89
|
) -> str:
|
|
96
90
|
"""
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client.generate_presigned_url)
|
|
91
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/generate_presigned_url.html)
|
|
100
92
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#generate_presigned_url)
|
|
101
93
|
"""
|
|
102
94
|
|
|
@@ -106,7 +98,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
106
98
|
"""
|
|
107
99
|
Returns the map's glyphs.
|
|
108
100
|
|
|
109
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
101
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_glyphs.html)
|
|
110
102
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_glyphs)
|
|
111
103
|
"""
|
|
112
104
|
|
|
@@ -116,7 +108,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
116
108
|
"""
|
|
117
109
|
Returns the map's sprites.
|
|
118
110
|
|
|
119
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
111
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_sprites.html)
|
|
120
112
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_sprites)
|
|
121
113
|
"""
|
|
122
114
|
|
|
@@ -126,7 +118,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
126
118
|
"""
|
|
127
119
|
Provides high-quality static map images with customizable options.
|
|
128
120
|
|
|
129
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
121
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_static_map.html)
|
|
130
122
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_static_map)
|
|
131
123
|
"""
|
|
132
124
|
|
|
@@ -136,7 +128,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
136
128
|
"""
|
|
137
129
|
Returns information about the style.
|
|
138
130
|
|
|
139
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
131
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_style_descriptor.html)
|
|
140
132
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_style_descriptor)
|
|
141
133
|
"""
|
|
142
134
|
|
|
@@ -144,6 +136,6 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
144
136
|
"""
|
|
145
137
|
Returns a tile.
|
|
146
138
|
|
|
147
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
139
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_tile.html)
|
|
148
140
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_tile)
|
|
149
141
|
"""
|
mypy_boto3_geo_maps/literals.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for geo-maps service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -10,6 +10,8 @@ Usage::
|
|
|
10
10
|
|
|
11
11
|
data: ColorSchemeType = "Dark"
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
13
15
|
"""
|
|
14
16
|
|
|
15
17
|
import sys
|
|
@@ -22,13 +24,13 @@ else:
|
|
|
22
24
|
|
|
23
25
|
__all__ = (
|
|
24
26
|
"ColorSchemeType",
|
|
27
|
+
"LocationServiceMapsV2ServiceName",
|
|
25
28
|
"MapStyleType",
|
|
29
|
+
"ResourceServiceName",
|
|
26
30
|
"ScaleBarUnitType",
|
|
31
|
+
"ServiceName",
|
|
27
32
|
"StaticMapStyleType",
|
|
28
33
|
"VariantType",
|
|
29
|
-
"LocationServiceMapsV2ServiceName",
|
|
30
|
-
"ServiceName",
|
|
31
|
-
"ResourceServiceName",
|
|
32
34
|
)
|
|
33
35
|
|
|
34
36
|
|
|
@@ -73,12 +75,17 @@ ServiceName = Literal[
|
|
|
73
75
|
"b2bi",
|
|
74
76
|
"backup",
|
|
75
77
|
"backup-gateway",
|
|
78
|
+
"backupsearch",
|
|
76
79
|
"batch",
|
|
77
80
|
"bcm-data-exports",
|
|
81
|
+
"bcm-pricing-calculator",
|
|
78
82
|
"bedrock",
|
|
79
83
|
"bedrock-agent",
|
|
80
84
|
"bedrock-agent-runtime",
|
|
85
|
+
"bedrock-data-automation",
|
|
86
|
+
"bedrock-data-automation-runtime",
|
|
81
87
|
"bedrock-runtime",
|
|
88
|
+
"billing",
|
|
82
89
|
"billingconductor",
|
|
83
90
|
"braket",
|
|
84
91
|
"budgets",
|
|
@@ -127,6 +134,7 @@ ServiceName = Literal[
|
|
|
127
134
|
"connect",
|
|
128
135
|
"connect-contact-lens",
|
|
129
136
|
"connectcampaigns",
|
|
137
|
+
"connectcampaignsv2",
|
|
130
138
|
"connectcases",
|
|
131
139
|
"connectparticipant",
|
|
132
140
|
"controlcatalog",
|
|
@@ -153,6 +161,7 @@ ServiceName = Literal[
|
|
|
153
161
|
"drs",
|
|
154
162
|
"ds",
|
|
155
163
|
"ds-data",
|
|
164
|
+
"dsql",
|
|
156
165
|
"dynamodb",
|
|
157
166
|
"dynamodbstreams",
|
|
158
167
|
"ebs",
|
|
@@ -209,6 +218,7 @@ ServiceName = Literal[
|
|
|
209
218
|
"inspector-scan",
|
|
210
219
|
"inspector2",
|
|
211
220
|
"internetmonitor",
|
|
221
|
+
"invoicing",
|
|
212
222
|
"iot",
|
|
213
223
|
"iot-data",
|
|
214
224
|
"iot-jobs-data",
|
|
@@ -295,9 +305,13 @@ ServiceName = Literal[
|
|
|
295
305
|
"neptune-graph",
|
|
296
306
|
"neptunedata",
|
|
297
307
|
"network-firewall",
|
|
308
|
+
"networkflowmonitor",
|
|
298
309
|
"networkmanager",
|
|
299
310
|
"networkmonitor",
|
|
311
|
+
"notifications",
|
|
312
|
+
"notificationscontacts",
|
|
300
313
|
"oam",
|
|
314
|
+
"observabilityadmin",
|
|
301
315
|
"omics",
|
|
302
316
|
"opensearch",
|
|
303
317
|
"opensearchserverless",
|
|
@@ -307,6 +321,7 @@ ServiceName = Literal[
|
|
|
307
321
|
"osis",
|
|
308
322
|
"outposts",
|
|
309
323
|
"panorama",
|
|
324
|
+
"partnercentral-selling",
|
|
310
325
|
"payment-cryptography",
|
|
311
326
|
"payment-cryptography-data",
|
|
312
327
|
"pca-connector-ad",
|
|
@@ -357,6 +372,7 @@ ServiceName = Literal[
|
|
|
357
372
|
"s3",
|
|
358
373
|
"s3control",
|
|
359
374
|
"s3outposts",
|
|
375
|
+
"s3tables",
|
|
360
376
|
"sagemaker",
|
|
361
377
|
"sagemaker-a2i-runtime",
|
|
362
378
|
"sagemaker-edge",
|
|
@@ -369,6 +385,7 @@ ServiceName = Literal[
|
|
|
369
385
|
"schemas",
|
|
370
386
|
"sdb",
|
|
371
387
|
"secretsmanager",
|
|
388
|
+
"security-ir",
|
|
372
389
|
"securityhub",
|
|
373
390
|
"securitylake",
|
|
374
391
|
"serverlessrepo",
|
mypy_boto3_geo_maps/literals.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for geo-maps service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -10,6 +10,8 @@ Usage::
|
|
|
10
10
|
|
|
11
11
|
data: ColorSchemeType = "Dark"
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
13
15
|
"""
|
|
14
16
|
|
|
15
17
|
import sys
|
|
@@ -21,13 +23,13 @@ else:
|
|
|
21
23
|
|
|
22
24
|
__all__ = (
|
|
23
25
|
"ColorSchemeType",
|
|
26
|
+
"LocationServiceMapsV2ServiceName",
|
|
24
27
|
"MapStyleType",
|
|
28
|
+
"ResourceServiceName",
|
|
25
29
|
"ScaleBarUnitType",
|
|
30
|
+
"ServiceName",
|
|
26
31
|
"StaticMapStyleType",
|
|
27
32
|
"VariantType",
|
|
28
|
-
"LocationServiceMapsV2ServiceName",
|
|
29
|
-
"ServiceName",
|
|
30
|
-
"ResourceServiceName",
|
|
31
33
|
)
|
|
32
34
|
|
|
33
35
|
ColorSchemeType = Literal["Dark", "Light"]
|
|
@@ -71,12 +73,17 @@ ServiceName = Literal[
|
|
|
71
73
|
"b2bi",
|
|
72
74
|
"backup",
|
|
73
75
|
"backup-gateway",
|
|
76
|
+
"backupsearch",
|
|
74
77
|
"batch",
|
|
75
78
|
"bcm-data-exports",
|
|
79
|
+
"bcm-pricing-calculator",
|
|
76
80
|
"bedrock",
|
|
77
81
|
"bedrock-agent",
|
|
78
82
|
"bedrock-agent-runtime",
|
|
83
|
+
"bedrock-data-automation",
|
|
84
|
+
"bedrock-data-automation-runtime",
|
|
79
85
|
"bedrock-runtime",
|
|
86
|
+
"billing",
|
|
80
87
|
"billingconductor",
|
|
81
88
|
"braket",
|
|
82
89
|
"budgets",
|
|
@@ -125,6 +132,7 @@ ServiceName = Literal[
|
|
|
125
132
|
"connect",
|
|
126
133
|
"connect-contact-lens",
|
|
127
134
|
"connectcampaigns",
|
|
135
|
+
"connectcampaignsv2",
|
|
128
136
|
"connectcases",
|
|
129
137
|
"connectparticipant",
|
|
130
138
|
"controlcatalog",
|
|
@@ -151,6 +159,7 @@ ServiceName = Literal[
|
|
|
151
159
|
"drs",
|
|
152
160
|
"ds",
|
|
153
161
|
"ds-data",
|
|
162
|
+
"dsql",
|
|
154
163
|
"dynamodb",
|
|
155
164
|
"dynamodbstreams",
|
|
156
165
|
"ebs",
|
|
@@ -207,6 +216,7 @@ ServiceName = Literal[
|
|
|
207
216
|
"inspector-scan",
|
|
208
217
|
"inspector2",
|
|
209
218
|
"internetmonitor",
|
|
219
|
+
"invoicing",
|
|
210
220
|
"iot",
|
|
211
221
|
"iot-data",
|
|
212
222
|
"iot-jobs-data",
|
|
@@ -293,9 +303,13 @@ ServiceName = Literal[
|
|
|
293
303
|
"neptune-graph",
|
|
294
304
|
"neptunedata",
|
|
295
305
|
"network-firewall",
|
|
306
|
+
"networkflowmonitor",
|
|
296
307
|
"networkmanager",
|
|
297
308
|
"networkmonitor",
|
|
309
|
+
"notifications",
|
|
310
|
+
"notificationscontacts",
|
|
298
311
|
"oam",
|
|
312
|
+
"observabilityadmin",
|
|
299
313
|
"omics",
|
|
300
314
|
"opensearch",
|
|
301
315
|
"opensearchserverless",
|
|
@@ -305,6 +319,7 @@ ServiceName = Literal[
|
|
|
305
319
|
"osis",
|
|
306
320
|
"outposts",
|
|
307
321
|
"panorama",
|
|
322
|
+
"partnercentral-selling",
|
|
308
323
|
"payment-cryptography",
|
|
309
324
|
"payment-cryptography-data",
|
|
310
325
|
"pca-connector-ad",
|
|
@@ -355,6 +370,7 @@ ServiceName = Literal[
|
|
|
355
370
|
"s3",
|
|
356
371
|
"s3control",
|
|
357
372
|
"s3outposts",
|
|
373
|
+
"s3tables",
|
|
358
374
|
"sagemaker",
|
|
359
375
|
"sagemaker-a2i-runtime",
|
|
360
376
|
"sagemaker-edge",
|
|
@@ -367,6 +383,7 @@ ServiceName = Literal[
|
|
|
367
383
|
"schemas",
|
|
368
384
|
"sdb",
|
|
369
385
|
"secretsmanager",
|
|
386
|
+
"security-ir",
|
|
370
387
|
"securityhub",
|
|
371
388
|
"securitylake",
|
|
372
389
|
"serverlessrepo",
|
mypy_boto3_geo_maps/type_defs.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for geo-maps service type definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/type_defs/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -10,15 +10,22 @@ Usage::
|
|
|
10
10
|
|
|
11
11
|
data: GetGlyphsRequestRequestTypeDef = ...
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
13
15
|
"""
|
|
14
16
|
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
15
19
|
import sys
|
|
16
|
-
from typing import Dict
|
|
17
20
|
|
|
18
21
|
from botocore.response import StreamingBody
|
|
19
22
|
|
|
20
23
|
from .literals import ColorSchemeType, MapStyleType, ScaleBarUnitType
|
|
21
24
|
|
|
25
|
+
if sys.version_info >= (3, 9):
|
|
26
|
+
from builtins import dict as Dict
|
|
27
|
+
else:
|
|
28
|
+
from typing import Dict
|
|
22
29
|
if sys.version_info >= (3, 12):
|
|
23
30
|
from typing import Literal, NotRequired, TypedDict
|
|
24
31
|
else:
|
|
@@ -27,131 +34,108 @@ else:
|
|
|
27
34
|
|
|
28
35
|
__all__ = (
|
|
29
36
|
"GetGlyphsRequestRequestTypeDef",
|
|
30
|
-
"ResponseMetadataTypeDef",
|
|
31
|
-
"GetSpritesRequestRequestTypeDef",
|
|
32
|
-
"GetStaticMapRequestRequestTypeDef",
|
|
33
|
-
"GetStyleDescriptorRequestRequestTypeDef",
|
|
34
|
-
"GetTileRequestRequestTypeDef",
|
|
35
37
|
"GetGlyphsResponseTypeDef",
|
|
36
|
-
"GetSpritesResponseTypeDef",
|
|
37
|
-
"GetStaticMapResponseTypeDef",
|
|
38
|
-
"GetStyleDescriptorResponseTypeDef",
|
|
39
|
-
"GetTileResponseTypeDef",
|
|
40
|
-
)
|
|
41
|
-
|
|
42
|
-
GetGlyphsRequestRequestTypeDef = TypedDict(
|
|
43
|
-
"GetGlyphsRequestRequestTypeDef",
|
|
44
|
-
{
|
|
45
|
-
"FontStack": str,
|
|
46
|
-
"FontUnicodeRange": str,
|
|
47
|
-
},
|
|
48
|
-
)
|
|
49
|
-
ResponseMetadataTypeDef = TypedDict(
|
|
50
|
-
"ResponseMetadataTypeDef",
|
|
51
|
-
{
|
|
52
|
-
"RequestId": str,
|
|
53
|
-
"HTTPStatusCode": int,
|
|
54
|
-
"HTTPHeaders": Dict[str, str],
|
|
55
|
-
"RetryAttempts": int,
|
|
56
|
-
"HostId": NotRequired[str],
|
|
57
|
-
},
|
|
58
|
-
)
|
|
59
|
-
GetSpritesRequestRequestTypeDef = TypedDict(
|
|
60
38
|
"GetSpritesRequestRequestTypeDef",
|
|
61
|
-
{
|
|
62
|
-
"FileName": str,
|
|
63
|
-
"Style": MapStyleType,
|
|
64
|
-
"ColorScheme": ColorSchemeType,
|
|
65
|
-
"Variant": Literal["Default"],
|
|
66
|
-
},
|
|
67
|
-
)
|
|
68
|
-
GetStaticMapRequestRequestTypeDef = TypedDict(
|
|
69
|
-
"GetStaticMapRequestRequestTypeDef",
|
|
70
|
-
{
|
|
71
|
-
"Height": int,
|
|
72
|
-
"FileName": str,
|
|
73
|
-
"Width": int,
|
|
74
|
-
"BoundingBox": NotRequired[str],
|
|
75
|
-
"BoundedPositions": NotRequired[str],
|
|
76
|
-
"Center": NotRequired[str],
|
|
77
|
-
"CompactOverlay": NotRequired[str],
|
|
78
|
-
"GeoJsonOverlay": NotRequired[str],
|
|
79
|
-
"Key": NotRequired[str],
|
|
80
|
-
"Padding": NotRequired[int],
|
|
81
|
-
"Radius": NotRequired[int],
|
|
82
|
-
"ScaleBarUnit": NotRequired[ScaleBarUnitType],
|
|
83
|
-
"Style": NotRequired[Literal["Satellite"]],
|
|
84
|
-
"Zoom": NotRequired[float],
|
|
85
|
-
},
|
|
86
|
-
)
|
|
87
|
-
GetStyleDescriptorRequestRequestTypeDef = TypedDict(
|
|
88
|
-
"GetStyleDescriptorRequestRequestTypeDef",
|
|
89
|
-
{
|
|
90
|
-
"Style": MapStyleType,
|
|
91
|
-
"ColorScheme": NotRequired[ColorSchemeType],
|
|
92
|
-
"PoliticalView": NotRequired[str],
|
|
93
|
-
"Key": NotRequired[str],
|
|
94
|
-
},
|
|
95
|
-
)
|
|
96
|
-
GetTileRequestRequestTypeDef = TypedDict(
|
|
97
|
-
"GetTileRequestRequestTypeDef",
|
|
98
|
-
{
|
|
99
|
-
"Tileset": str,
|
|
100
|
-
"Z": str,
|
|
101
|
-
"X": str,
|
|
102
|
-
"Y": str,
|
|
103
|
-
"Key": NotRequired[str],
|
|
104
|
-
},
|
|
105
|
-
)
|
|
106
|
-
GetGlyphsResponseTypeDef = TypedDict(
|
|
107
|
-
"GetGlyphsResponseTypeDef",
|
|
108
|
-
{
|
|
109
|
-
"Blob": StreamingBody,
|
|
110
|
-
"ContentType": str,
|
|
111
|
-
"CacheControl": str,
|
|
112
|
-
"ETag": str,
|
|
113
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
114
|
-
},
|
|
115
|
-
)
|
|
116
|
-
GetSpritesResponseTypeDef = TypedDict(
|
|
117
39
|
"GetSpritesResponseTypeDef",
|
|
118
|
-
|
|
119
|
-
"Blob": StreamingBody,
|
|
120
|
-
"ContentType": str,
|
|
121
|
-
"CacheControl": str,
|
|
122
|
-
"ETag": str,
|
|
123
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
124
|
-
},
|
|
125
|
-
)
|
|
126
|
-
GetStaticMapResponseTypeDef = TypedDict(
|
|
40
|
+
"GetStaticMapRequestRequestTypeDef",
|
|
127
41
|
"GetStaticMapResponseTypeDef",
|
|
128
|
-
|
|
129
|
-
"Blob": StreamingBody,
|
|
130
|
-
"ContentType": str,
|
|
131
|
-
"CacheControl": str,
|
|
132
|
-
"ETag": str,
|
|
133
|
-
"PricingBucket": str,
|
|
134
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
135
|
-
},
|
|
136
|
-
)
|
|
137
|
-
GetStyleDescriptorResponseTypeDef = TypedDict(
|
|
42
|
+
"GetStyleDescriptorRequestRequestTypeDef",
|
|
138
43
|
"GetStyleDescriptorResponseTypeDef",
|
|
139
|
-
|
|
140
|
-
"Blob": StreamingBody,
|
|
141
|
-
"ContentType": str,
|
|
142
|
-
"CacheControl": str,
|
|
143
|
-
"ETag": str,
|
|
144
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
145
|
-
},
|
|
146
|
-
)
|
|
147
|
-
GetTileResponseTypeDef = TypedDict(
|
|
44
|
+
"GetTileRequestRequestTypeDef",
|
|
148
45
|
"GetTileResponseTypeDef",
|
|
149
|
-
|
|
150
|
-
"Blob": StreamingBody,
|
|
151
|
-
"ContentType": str,
|
|
152
|
-
"CacheControl": str,
|
|
153
|
-
"ETag": str,
|
|
154
|
-
"PricingBucket": str,
|
|
155
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
156
|
-
},
|
|
46
|
+
"ResponseMetadataTypeDef",
|
|
157
47
|
)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
class GetGlyphsRequestRequestTypeDef(TypedDict):
|
|
51
|
+
FontStack: str
|
|
52
|
+
FontUnicodeRange: str
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
class ResponseMetadataTypeDef(TypedDict):
|
|
56
|
+
RequestId: str
|
|
57
|
+
HTTPStatusCode: int
|
|
58
|
+
HTTPHeaders: Dict[str, str]
|
|
59
|
+
RetryAttempts: int
|
|
60
|
+
HostId: NotRequired[str]
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
class GetSpritesRequestRequestTypeDef(TypedDict):
|
|
64
|
+
FileName: str
|
|
65
|
+
Style: MapStyleType
|
|
66
|
+
ColorScheme: ColorSchemeType
|
|
67
|
+
Variant: Literal["Default"]
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
class GetStaticMapRequestRequestTypeDef(TypedDict):
|
|
71
|
+
Height: int
|
|
72
|
+
FileName: str
|
|
73
|
+
Width: int
|
|
74
|
+
BoundingBox: NotRequired[str]
|
|
75
|
+
BoundedPositions: NotRequired[str]
|
|
76
|
+
Center: NotRequired[str]
|
|
77
|
+
CompactOverlay: NotRequired[str]
|
|
78
|
+
GeoJsonOverlay: NotRequired[str]
|
|
79
|
+
Key: NotRequired[str]
|
|
80
|
+
Padding: NotRequired[int]
|
|
81
|
+
Radius: NotRequired[int]
|
|
82
|
+
ScaleBarUnit: NotRequired[ScaleBarUnitType]
|
|
83
|
+
Style: NotRequired[Literal["Satellite"]]
|
|
84
|
+
Zoom: NotRequired[float]
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
class GetStyleDescriptorRequestRequestTypeDef(TypedDict):
|
|
88
|
+
Style: MapStyleType
|
|
89
|
+
ColorScheme: NotRequired[ColorSchemeType]
|
|
90
|
+
PoliticalView: NotRequired[str]
|
|
91
|
+
Key: NotRequired[str]
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
class GetTileRequestRequestTypeDef(TypedDict):
|
|
95
|
+
Tileset: str
|
|
96
|
+
Z: str
|
|
97
|
+
X: str
|
|
98
|
+
Y: str
|
|
99
|
+
Key: NotRequired[str]
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
class GetGlyphsResponseTypeDef(TypedDict):
|
|
103
|
+
Blob: StreamingBody
|
|
104
|
+
ContentType: str
|
|
105
|
+
CacheControl: str
|
|
106
|
+
ETag: str
|
|
107
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
class GetSpritesResponseTypeDef(TypedDict):
|
|
111
|
+
Blob: StreamingBody
|
|
112
|
+
ContentType: str
|
|
113
|
+
CacheControl: str
|
|
114
|
+
ETag: str
|
|
115
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
class GetStaticMapResponseTypeDef(TypedDict):
|
|
119
|
+
Blob: StreamingBody
|
|
120
|
+
ContentType: str
|
|
121
|
+
CacheControl: str
|
|
122
|
+
ETag: str
|
|
123
|
+
PricingBucket: str
|
|
124
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
class GetStyleDescriptorResponseTypeDef(TypedDict):
|
|
128
|
+
Blob: StreamingBody
|
|
129
|
+
ContentType: str
|
|
130
|
+
CacheControl: str
|
|
131
|
+
ETag: str
|
|
132
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
class GetTileResponseTypeDef(TypedDict):
|
|
136
|
+
Blob: StreamingBody
|
|
137
|
+
ContentType: str
|
|
138
|
+
CacheControl: str
|
|
139
|
+
ETag: str
|
|
140
|
+
PricingBucket: str
|
|
141
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for geo-maps service type definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/type_defs/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -10,15 +10,22 @@ Usage::
|
|
|
10
10
|
|
|
11
11
|
data: GetGlyphsRequestRequestTypeDef = ...
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
13
15
|
"""
|
|
14
16
|
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
15
19
|
import sys
|
|
16
|
-
from typing import Dict
|
|
17
20
|
|
|
18
21
|
from botocore.response import StreamingBody
|
|
19
22
|
|
|
20
23
|
from .literals import ColorSchemeType, MapStyleType, ScaleBarUnitType
|
|
21
24
|
|
|
25
|
+
if sys.version_info >= (3, 9):
|
|
26
|
+
from builtins import dict as Dict
|
|
27
|
+
else:
|
|
28
|
+
from typing import Dict
|
|
22
29
|
if sys.version_info >= (3, 12):
|
|
23
30
|
from typing import Literal, NotRequired, TypedDict
|
|
24
31
|
else:
|
|
@@ -26,131 +33,97 @@ else:
|
|
|
26
33
|
|
|
27
34
|
__all__ = (
|
|
28
35
|
"GetGlyphsRequestRequestTypeDef",
|
|
29
|
-
"ResponseMetadataTypeDef",
|
|
30
|
-
"GetSpritesRequestRequestTypeDef",
|
|
31
|
-
"GetStaticMapRequestRequestTypeDef",
|
|
32
|
-
"GetStyleDescriptorRequestRequestTypeDef",
|
|
33
|
-
"GetTileRequestRequestTypeDef",
|
|
34
36
|
"GetGlyphsResponseTypeDef",
|
|
35
|
-
"GetSpritesResponseTypeDef",
|
|
36
|
-
"GetStaticMapResponseTypeDef",
|
|
37
|
-
"GetStyleDescriptorResponseTypeDef",
|
|
38
|
-
"GetTileResponseTypeDef",
|
|
39
|
-
)
|
|
40
|
-
|
|
41
|
-
GetGlyphsRequestRequestTypeDef = TypedDict(
|
|
42
|
-
"GetGlyphsRequestRequestTypeDef",
|
|
43
|
-
{
|
|
44
|
-
"FontStack": str,
|
|
45
|
-
"FontUnicodeRange": str,
|
|
46
|
-
},
|
|
47
|
-
)
|
|
48
|
-
ResponseMetadataTypeDef = TypedDict(
|
|
49
|
-
"ResponseMetadataTypeDef",
|
|
50
|
-
{
|
|
51
|
-
"RequestId": str,
|
|
52
|
-
"HTTPStatusCode": int,
|
|
53
|
-
"HTTPHeaders": Dict[str, str],
|
|
54
|
-
"RetryAttempts": int,
|
|
55
|
-
"HostId": NotRequired[str],
|
|
56
|
-
},
|
|
57
|
-
)
|
|
58
|
-
GetSpritesRequestRequestTypeDef = TypedDict(
|
|
59
37
|
"GetSpritesRequestRequestTypeDef",
|
|
60
|
-
{
|
|
61
|
-
"FileName": str,
|
|
62
|
-
"Style": MapStyleType,
|
|
63
|
-
"ColorScheme": ColorSchemeType,
|
|
64
|
-
"Variant": Literal["Default"],
|
|
65
|
-
},
|
|
66
|
-
)
|
|
67
|
-
GetStaticMapRequestRequestTypeDef = TypedDict(
|
|
68
|
-
"GetStaticMapRequestRequestTypeDef",
|
|
69
|
-
{
|
|
70
|
-
"Height": int,
|
|
71
|
-
"FileName": str,
|
|
72
|
-
"Width": int,
|
|
73
|
-
"BoundingBox": NotRequired[str],
|
|
74
|
-
"BoundedPositions": NotRequired[str],
|
|
75
|
-
"Center": NotRequired[str],
|
|
76
|
-
"CompactOverlay": NotRequired[str],
|
|
77
|
-
"GeoJsonOverlay": NotRequired[str],
|
|
78
|
-
"Key": NotRequired[str],
|
|
79
|
-
"Padding": NotRequired[int],
|
|
80
|
-
"Radius": NotRequired[int],
|
|
81
|
-
"ScaleBarUnit": NotRequired[ScaleBarUnitType],
|
|
82
|
-
"Style": NotRequired[Literal["Satellite"]],
|
|
83
|
-
"Zoom": NotRequired[float],
|
|
84
|
-
},
|
|
85
|
-
)
|
|
86
|
-
GetStyleDescriptorRequestRequestTypeDef = TypedDict(
|
|
87
|
-
"GetStyleDescriptorRequestRequestTypeDef",
|
|
88
|
-
{
|
|
89
|
-
"Style": MapStyleType,
|
|
90
|
-
"ColorScheme": NotRequired[ColorSchemeType],
|
|
91
|
-
"PoliticalView": NotRequired[str],
|
|
92
|
-
"Key": NotRequired[str],
|
|
93
|
-
},
|
|
94
|
-
)
|
|
95
|
-
GetTileRequestRequestTypeDef = TypedDict(
|
|
96
|
-
"GetTileRequestRequestTypeDef",
|
|
97
|
-
{
|
|
98
|
-
"Tileset": str,
|
|
99
|
-
"Z": str,
|
|
100
|
-
"X": str,
|
|
101
|
-
"Y": str,
|
|
102
|
-
"Key": NotRequired[str],
|
|
103
|
-
},
|
|
104
|
-
)
|
|
105
|
-
GetGlyphsResponseTypeDef = TypedDict(
|
|
106
|
-
"GetGlyphsResponseTypeDef",
|
|
107
|
-
{
|
|
108
|
-
"Blob": StreamingBody,
|
|
109
|
-
"ContentType": str,
|
|
110
|
-
"CacheControl": str,
|
|
111
|
-
"ETag": str,
|
|
112
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
113
|
-
},
|
|
114
|
-
)
|
|
115
|
-
GetSpritesResponseTypeDef = TypedDict(
|
|
116
38
|
"GetSpritesResponseTypeDef",
|
|
117
|
-
|
|
118
|
-
"Blob": StreamingBody,
|
|
119
|
-
"ContentType": str,
|
|
120
|
-
"CacheControl": str,
|
|
121
|
-
"ETag": str,
|
|
122
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
123
|
-
},
|
|
124
|
-
)
|
|
125
|
-
GetStaticMapResponseTypeDef = TypedDict(
|
|
39
|
+
"GetStaticMapRequestRequestTypeDef",
|
|
126
40
|
"GetStaticMapResponseTypeDef",
|
|
127
|
-
|
|
128
|
-
"Blob": StreamingBody,
|
|
129
|
-
"ContentType": str,
|
|
130
|
-
"CacheControl": str,
|
|
131
|
-
"ETag": str,
|
|
132
|
-
"PricingBucket": str,
|
|
133
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
134
|
-
},
|
|
135
|
-
)
|
|
136
|
-
GetStyleDescriptorResponseTypeDef = TypedDict(
|
|
41
|
+
"GetStyleDescriptorRequestRequestTypeDef",
|
|
137
42
|
"GetStyleDescriptorResponseTypeDef",
|
|
138
|
-
|
|
139
|
-
"Blob": StreamingBody,
|
|
140
|
-
"ContentType": str,
|
|
141
|
-
"CacheControl": str,
|
|
142
|
-
"ETag": str,
|
|
143
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
144
|
-
},
|
|
145
|
-
)
|
|
146
|
-
GetTileResponseTypeDef = TypedDict(
|
|
43
|
+
"GetTileRequestRequestTypeDef",
|
|
147
44
|
"GetTileResponseTypeDef",
|
|
148
|
-
|
|
149
|
-
"Blob": StreamingBody,
|
|
150
|
-
"ContentType": str,
|
|
151
|
-
"CacheControl": str,
|
|
152
|
-
"ETag": str,
|
|
153
|
-
"PricingBucket": str,
|
|
154
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
155
|
-
},
|
|
45
|
+
"ResponseMetadataTypeDef",
|
|
156
46
|
)
|
|
47
|
+
|
|
48
|
+
class GetGlyphsRequestRequestTypeDef(TypedDict):
|
|
49
|
+
FontStack: str
|
|
50
|
+
FontUnicodeRange: str
|
|
51
|
+
|
|
52
|
+
class ResponseMetadataTypeDef(TypedDict):
|
|
53
|
+
RequestId: str
|
|
54
|
+
HTTPStatusCode: int
|
|
55
|
+
HTTPHeaders: Dict[str, str]
|
|
56
|
+
RetryAttempts: int
|
|
57
|
+
HostId: NotRequired[str]
|
|
58
|
+
|
|
59
|
+
class GetSpritesRequestRequestTypeDef(TypedDict):
|
|
60
|
+
FileName: str
|
|
61
|
+
Style: MapStyleType
|
|
62
|
+
ColorScheme: ColorSchemeType
|
|
63
|
+
Variant: Literal["Default"]
|
|
64
|
+
|
|
65
|
+
class GetStaticMapRequestRequestTypeDef(TypedDict):
|
|
66
|
+
Height: int
|
|
67
|
+
FileName: str
|
|
68
|
+
Width: int
|
|
69
|
+
BoundingBox: NotRequired[str]
|
|
70
|
+
BoundedPositions: NotRequired[str]
|
|
71
|
+
Center: NotRequired[str]
|
|
72
|
+
CompactOverlay: NotRequired[str]
|
|
73
|
+
GeoJsonOverlay: NotRequired[str]
|
|
74
|
+
Key: NotRequired[str]
|
|
75
|
+
Padding: NotRequired[int]
|
|
76
|
+
Radius: NotRequired[int]
|
|
77
|
+
ScaleBarUnit: NotRequired[ScaleBarUnitType]
|
|
78
|
+
Style: NotRequired[Literal["Satellite"]]
|
|
79
|
+
Zoom: NotRequired[float]
|
|
80
|
+
|
|
81
|
+
class GetStyleDescriptorRequestRequestTypeDef(TypedDict):
|
|
82
|
+
Style: MapStyleType
|
|
83
|
+
ColorScheme: NotRequired[ColorSchemeType]
|
|
84
|
+
PoliticalView: NotRequired[str]
|
|
85
|
+
Key: NotRequired[str]
|
|
86
|
+
|
|
87
|
+
class GetTileRequestRequestTypeDef(TypedDict):
|
|
88
|
+
Tileset: str
|
|
89
|
+
Z: str
|
|
90
|
+
X: str
|
|
91
|
+
Y: str
|
|
92
|
+
Key: NotRequired[str]
|
|
93
|
+
|
|
94
|
+
class GetGlyphsResponseTypeDef(TypedDict):
|
|
95
|
+
Blob: StreamingBody
|
|
96
|
+
ContentType: str
|
|
97
|
+
CacheControl: str
|
|
98
|
+
ETag: str
|
|
99
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
100
|
+
|
|
101
|
+
class GetSpritesResponseTypeDef(TypedDict):
|
|
102
|
+
Blob: StreamingBody
|
|
103
|
+
ContentType: str
|
|
104
|
+
CacheControl: str
|
|
105
|
+
ETag: str
|
|
106
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
107
|
+
|
|
108
|
+
class GetStaticMapResponseTypeDef(TypedDict):
|
|
109
|
+
Blob: StreamingBody
|
|
110
|
+
ContentType: str
|
|
111
|
+
CacheControl: str
|
|
112
|
+
ETag: str
|
|
113
|
+
PricingBucket: str
|
|
114
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
115
|
+
|
|
116
|
+
class GetStyleDescriptorResponseTypeDef(TypedDict):
|
|
117
|
+
Blob: StreamingBody
|
|
118
|
+
ContentType: str
|
|
119
|
+
CacheControl: str
|
|
120
|
+
ETag: str
|
|
121
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
122
|
+
|
|
123
|
+
class GetTileResponseTypeDef(TypedDict):
|
|
124
|
+
Blob: StreamingBody
|
|
125
|
+
ContentType: str
|
|
126
|
+
CacheControl: str
|
|
127
|
+
ETag: str
|
|
128
|
+
PricingBucket: str
|
|
129
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
mypy_boto3_geo_maps/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-geo-maps
|
|
3
|
-
Version: 1.35.
|
|
4
|
-
Summary: Type annotations for boto3
|
|
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/boto3_stubs_docs/mypy_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
|
|
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
|
|
@@ -23,47 +23,49 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.11
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.12
|
|
25
25
|
Classifier: Programming Language :: Python :: 3.13
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
26
27
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
27
28
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
28
29
|
Classifier: Typing :: Stubs Only
|
|
29
30
|
Requires-Python: >=3.8
|
|
30
31
|
Description-Content-Type: text/markdown
|
|
31
32
|
License-File: LICENSE
|
|
32
|
-
Requires-Dist: typing-extensions
|
|
33
|
+
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
33
34
|
|
|
34
35
|
<a id="mypy-boto3-geo-maps"></a>
|
|
35
36
|
|
|
36
37
|
# mypy-boto3-geo-maps
|
|
37
38
|
|
|
38
|
-
[](https://pypi.org/project/mypy-boto3-geo-maps)
|
|
39
|
-
[](https://pypi.org/project/mypy-boto3-geo-maps)
|
|
40
|
-
[](https://youtype.github.io/boto3_stubs_docs/
|
|
41
|
-
[](https://
|
|
39
|
+
[](https://pypi.org/project/mypy-boto3-geo-maps/)
|
|
40
|
+
[](https://pypi.org/project/mypy-boto3-geo-maps/)
|
|
41
|
+
[](https://youtype.github.io/boto3_stubs_docs/)
|
|
42
|
+
[](https://pypistats.org/packages/mypy-boto3-geo-maps)
|
|
42
43
|
|
|
43
44
|

|
|
44
45
|
|
|
45
46
|
Type annotations for
|
|
46
|
-
[boto3
|
|
47
|
-
|
|
47
|
+
[boto3 LocationServiceMapsV2 1.35.93](https://pypi.org/project/boto3/)
|
|
48
|
+
compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
49
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
50
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
50
51
|
[Sublime Text](https://www.sublimetext.com/),
|
|
51
52
|
[mypy](https://github.com/python/mypy),
|
|
52
53
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
54
|
|
|
54
|
-
Generated
|
|
55
|
-
[mypy-boto3-builder 8.
|
|
55
|
+
Generated with
|
|
56
|
+
[mypy-boto3-builder 8.8.0](https://github.com/youtype/mypy_boto3_builder).
|
|
56
57
|
|
|
57
58
|
More information can be found on
|
|
58
59
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
59
60
|
[mypy-boto3-geo-maps docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/).
|
|
60
61
|
|
|
61
|
-
See how it helps
|
|
62
|
+
See how it helps you find and fix potential bugs:
|
|
62
63
|
|
|
63
|
-

|
|
64
65
|
|
|
65
66
|
- [mypy-boto3-geo-maps](#mypy-boto3-geo-maps)
|
|
66
67
|
- [How to install](#how-to-install)
|
|
68
|
+
- [Generate locally (recommended)](<#generate-locally-(recommended)>)
|
|
67
69
|
- [VSCode extension](#vscode-extension)
|
|
68
70
|
- [From PyPI with pip](#from-pypi-with-pip)
|
|
69
71
|
- [How to uninstall](#how-to-uninstall)
|
|
@@ -75,6 +77,7 @@ See how it helps to find and fix potential bugs:
|
|
|
75
77
|
- [Other IDEs](#other-ides)
|
|
76
78
|
- [mypy](#mypy)
|
|
77
79
|
- [pyright](#pyright)
|
|
80
|
+
- [Pylint compatibility](#pylint-compatibility)
|
|
78
81
|
- [Explicit type annotations](#explicit-type-annotations)
|
|
79
82
|
- [Client annotations](#client-annotations)
|
|
80
83
|
- [Literals](#literals)
|
|
@@ -92,6 +95,21 @@ See how it helps to find and fix potential bugs:
|
|
|
92
95
|
|
|
93
96
|
## How to install
|
|
94
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-stubs` AWS SDK.
|
|
110
|
+
3. Add `LocationServiceMapsV2` service.
|
|
111
|
+
4. Use provided commands to install generated packages.
|
|
112
|
+
|
|
95
113
|
<a id="vscode-extension"></a>
|
|
96
114
|
|
|
97
115
|
### VSCode extension
|
|
@@ -112,12 +130,10 @@ Install `boto3-stubs` for `LocationServiceMapsV2` service.
|
|
|
112
130
|
# install with boto3 type annotations
|
|
113
131
|
python -m pip install 'boto3-stubs[geo-maps]'
|
|
114
132
|
|
|
115
|
-
|
|
116
133
|
# Lite version does not provide session.client/resource overloads
|
|
117
134
|
# it is more RAM-friendly, but requires explicit type annotations
|
|
118
135
|
python -m pip install 'boto3-stubs-lite[geo-maps]'
|
|
119
136
|
|
|
120
|
-
|
|
121
137
|
# standalone installation
|
|
122
138
|
python -m pip install mypy-boto3-geo-maps
|
|
123
139
|
```
|
|
@@ -156,16 +172,31 @@ annotations required, write your `boto3` code as usual.
|
|
|
156
172
|
|
|
157
173
|
### PyCharm
|
|
158
174
|
|
|
159
|
-
|
|
175
|
+
> ⚠️ Due to slow PyCharm performance on `Literal` overloads (issue
|
|
176
|
+
> [PY-40997](https://youtrack.jetbrains.com/issue/PY-40997)), it is recommended
|
|
177
|
+
> to use [boto3-stubs-lite](https://pypi.org/project/boto3-stubs-lite/) until
|
|
178
|
+
> the issue is resolved.
|
|
179
|
+
|
|
180
|
+
> ⚠️ If you experience slow performance and high CPU usage, try to disable
|
|
181
|
+
> `PyCharm` type checker and use [mypy](https://github.com/python/mypy) or
|
|
182
|
+
> [pyright](https://github.com/microsoft/pyright) instead.
|
|
183
|
+
|
|
184
|
+
> ⚠️ To continue using `PyCharm` type checker, you can try to replace
|
|
185
|
+
> `boto3-stubs` with
|
|
186
|
+
> [boto3-stubs-lite](https://pypi.org/project/boto3-stubs-lite/):
|
|
160
187
|
|
|
161
188
|
```bash
|
|
162
|
-
|
|
189
|
+
pip uninstall boto3-stubs
|
|
190
|
+
pip install boto3-stubs-lite
|
|
163
191
|
```
|
|
164
192
|
|
|
165
|
-
|
|
166
|
-
annotations **are required**.
|
|
193
|
+
Install `boto3-stubs[geo-maps]` in your environment:
|
|
167
194
|
|
|
168
|
-
|
|
195
|
+
```bash
|
|
196
|
+
python -m pip install 'boto3-stubs[geo-maps]'
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
Both type checking and code completion should now work.
|
|
169
200
|
|
|
170
201
|
<a id="emacs"></a>
|
|
171
202
|
|
|
@@ -251,6 +282,31 @@ Optionally, you can install `boto3-stubs` to `typings` directory.
|
|
|
251
282
|
Type checking should now work. No explicit type annotations required, write
|
|
252
283
|
your `boto3` code as usual.
|
|
253
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
|
+
`mypy-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 mypy_boto3_ec2 import EC2Client, EC2ServiceResource
|
|
299
|
+
from mypy_boto3_ec2.waiters import BundleTaskCompleteWaiter
|
|
300
|
+
from mypy_boto3_ec2.paginators import DescribeVolumesPaginator
|
|
301
|
+
else:
|
|
302
|
+
EC2Client = object
|
|
303
|
+
EC2ServiceResource = object
|
|
304
|
+
BundleTaskCompleteWaiter = object
|
|
305
|
+
DescribeVolumesPaginator = object
|
|
306
|
+
|
|
307
|
+
...
|
|
308
|
+
```
|
|
309
|
+
|
|
254
310
|
<a id="explicit-type-annotations"></a>
|
|
255
311
|
|
|
256
312
|
## Explicit type annotations
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
mypy_boto3_geo_maps/__init__.py,sha256=aVNFdtlnZigeaGH1XgvBSY5i3nj3Lwj-0YOmP7RSDlM,478
|
|
2
|
+
mypy_boto3_geo_maps/__init__.pyi,sha256=VYLM-auSZTe-aEkjzfAvip9DO7mfWbdjC3m6ARGsIyk,477
|
|
3
|
+
mypy_boto3_geo_maps/__main__.py,sha256=mssto3UjFQ4qgeMxaIIf7fBMX2gMUW9atJWbHDZ6eKI,1013
|
|
4
|
+
mypy_boto3_geo_maps/client.py,sha256=i4jR8YibGvmNGFxNmvz2Znhy5_JwnfYyroGJxcIQ83A,5562
|
|
5
|
+
mypy_boto3_geo_maps/client.pyi,sha256=sgDuIo7tRBSYT3NJXa2Cb3lDzztLa2u-lH9VKrE-M_I,5559
|
|
6
|
+
mypy_boto3_geo_maps/literals.py,sha256=WLRvHi0LNi4URw0S3p-1K1MOJwAhB9W4ojPKlB-OGnI,9195
|
|
7
|
+
mypy_boto3_geo_maps/literals.pyi,sha256=r1lNHTTQGdTOjjWAAtIGxbUfqWQzC9bZwy-XD75e7H8,9193
|
|
8
|
+
mypy_boto3_geo_maps/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
mypy_boto3_geo_maps/type_defs.py,sha256=yIULYly4B4QbAudluh2QsL73nCJIzNiEwp_jRQYcPjk,3336
|
|
10
|
+
mypy_boto3_geo_maps/type_defs.pyi,sha256=Nt6ERKHK8qXWICu0gxtcjJk6Q6ItJ9vC8zUPMYVYbFI,3324
|
|
11
|
+
mypy_boto3_geo_maps/version.py,sha256=n6wyMBvI3Tp0INYol4fUJ84y0BqM9ti-SkLRGfsif5s,93
|
|
12
|
+
mypy_boto3_geo_maps-1.35.93.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
13
|
+
mypy_boto3_geo_maps-1.35.93.dist-info/METADATA,sha256=PxKFw-wc7abT7u82Dhzw8hA80PoKFcZYnBGN16r29r0,14080
|
|
14
|
+
mypy_boto3_geo_maps-1.35.93.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
15
|
+
mypy_boto3_geo_maps-1.35.93.dist-info/top_level.txt,sha256=WPnOzE1pGsGrccApXhu7_fYvJZ5YU49SEXjApxqprW0,20
|
|
16
|
+
mypy_boto3_geo_maps-1.35.93.dist-info/RECORD,,
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
mypy_boto3_geo_maps/__init__.py,sha256=nVuszhDEKskV_5g_qhDoQj33tCwI2QlbOjuB-n1w80M,447
|
|
2
|
-
mypy_boto3_geo_maps/__init__.pyi,sha256=HuQpgga4kwIcFDkhgW-O5G-rpvofzZOnjMJbpLBsV6I,446
|
|
3
|
-
mypy_boto3_geo_maps/__main__.py,sha256=goSG6_Wfgil1UEyZQLf3FoyU5gjRrSy_877ASxzqsEA,948
|
|
4
|
-
mypy_boto3_geo_maps/client.py,sha256=2pZg3ZBsYW18EWdEBYKDGV3gj-sn7ObeIpdk9ZwZdT4,6120
|
|
5
|
-
mypy_boto3_geo_maps/client.pyi,sha256=SskSRzKleM5ahb6CjswpE8JGQEWnFICMPDiZ_hNnn5M,6116
|
|
6
|
-
mypy_boto3_geo_maps/literals.py,sha256=qvz55Hqq0wtX4syGlCTyL5yEsiACBL6i5dLN1XAdBVQ,8812
|
|
7
|
-
mypy_boto3_geo_maps/literals.pyi,sha256=0D3pMXmYIKm2FHIkCEy0lpdVJst8yN8tfdZnXeeODMo,8810
|
|
8
|
-
mypy_boto3_geo_maps/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
mypy_boto3_geo_maps/type_defs.py,sha256=SfbxxsAZB21QrY3X9SXJUTdvVzDQ7FEfU3oQOr30ePo,4114
|
|
10
|
-
mypy_boto3_geo_maps/type_defs.pyi,sha256=iHOtxeLYk50KVLH7ntFKeqApbczZJb55FLLsel5rDUc,4113
|
|
11
|
-
mypy_boto3_geo_maps/version.py,sha256=QzJ4mtQBMuwtVt4oxK9BXOs3Cp_Bhmdl52imBjh1t7c,62
|
|
12
|
-
mypy_boto3_geo_maps-1.35.52.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
13
|
-
mypy_boto3_geo_maps-1.35.52.dist-info/METADATA,sha256=2_j9TJws7o4PRqEGyjLjyF1J1Yj16hVccRvlJJEEiuk,12201
|
|
14
|
-
mypy_boto3_geo_maps-1.35.52.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
15
|
-
mypy_boto3_geo_maps-1.35.52.dist-info/top_level.txt,sha256=WPnOzE1pGsGrccApXhu7_fYvJZ5YU49SEXjApxqprW0,20
|
|
16
|
-
mypy_boto3_geo_maps-1.35.52.dist-info/RECORD,,
|
{mypy_boto3_geo_maps-1.35.52.dist-info → mypy_boto3_geo_maps-1.35.93.dist-info}/top_level.txt
RENAMED
|
File without changes
|