botocore-stubs 1.40.33__py3-none-any.whl → 1.40.50__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.
Potentially problematic release.
This version of botocore-stubs might be problematic. Click here for more details.
- botocore-stubs/client.pyi +6 -3
- botocore-stubs/credentials.pyi +2 -1
- botocore-stubs/endpoint_provider.pyi +3 -3
- botocore-stubs/handlers.pyi +3 -0
- botocore-stubs/plugin.pyi +8 -8
- botocore-stubs/serialize.pyi +14 -5
- botocore-stubs/signers.pyi +1 -0
- botocore-stubs/tokens.pyi +3 -1
- botocore-stubs/useragent.pyi +2 -0
- botocore-stubs/utils.pyi +16 -1
- {botocore_stubs-1.40.33.dist-info → botocore_stubs-1.40.50.dist-info}/METADATA +2 -24
- {botocore_stubs-1.40.33.dist-info → botocore_stubs-1.40.50.dist-info}/RECORD +15 -15
- {botocore_stubs-1.40.33.dist-info → botocore_stubs-1.40.50.dist-info}/WHEEL +0 -0
- {botocore_stubs-1.40.33.dist-info → botocore_stubs-1.40.50.dist-info}/licenses/LICENSE +0 -0
- {botocore_stubs-1.40.33.dist-info → botocore_stubs-1.40.50.dist-info}/top_level.txt +0 -0
botocore-stubs/client.pyi
CHANGED
|
@@ -4,9 +4,9 @@ Type annotations for botocore.client module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from collections.abc import
|
|
7
|
+
from collections.abc import Mapping
|
|
8
8
|
from logging import Logger
|
|
9
|
-
from typing import Any
|
|
9
|
+
from typing import Any, Protocol
|
|
10
10
|
|
|
11
11
|
from botocore.args import ClientArgsCreator as ClientArgsCreator
|
|
12
12
|
from botocore.auth import AUTH_TYPE_MAPS as AUTH_TYPE_MAPS
|
|
@@ -53,6 +53,9 @@ from botocore.waiter import Waiter
|
|
|
53
53
|
logger: Logger = ...
|
|
54
54
|
history_recorder: HistoryRecorder = ...
|
|
55
55
|
|
|
56
|
+
class _AuthTokenResolver(Protocol):
|
|
57
|
+
def __call__(self, *, signing_name: str) -> str: ...
|
|
58
|
+
|
|
56
59
|
class ClientCreator:
|
|
57
60
|
def __init__(
|
|
58
61
|
self,
|
|
@@ -66,7 +69,7 @@ class ClientCreator:
|
|
|
66
69
|
exceptions_factory: ClientExceptionsFactory | None = ...,
|
|
67
70
|
config_store: ConfigValueStore | None = ...,
|
|
68
71
|
user_agent_creator: UserAgentString | None = ...,
|
|
69
|
-
auth_token_resolver:
|
|
72
|
+
auth_token_resolver: _AuthTokenResolver | None = None,
|
|
70
73
|
) -> None: ...
|
|
71
74
|
def create_client(
|
|
72
75
|
self,
|
botocore-stubs/credentials.pyi
CHANGED
|
@@ -264,10 +264,11 @@ class BotoProvider(CredentialProvider):
|
|
|
264
264
|
|
|
265
265
|
class AssumeRoleProvider(CredentialProvider):
|
|
266
266
|
METHOD: str = ...
|
|
267
|
-
CANONICAL_NAME: None = ...
|
|
267
|
+
CANONICAL_NAME: str | None = ...
|
|
268
268
|
ROLE_CONFIG_VAR: str = ...
|
|
269
269
|
WEB_IDENTITY_TOKE_FILE_VAR: str = ...
|
|
270
270
|
EXPIRY_WINDOW_SECONDS: int = ...
|
|
271
|
+
NAMED_PROVIDER_FEATURE_MAP: dict[str, str] = ...
|
|
271
272
|
def __init__(
|
|
272
273
|
self,
|
|
273
274
|
load_config: Callable[[], Mapping[str, Any]],
|
|
@@ -119,9 +119,9 @@ class RuleCreator:
|
|
|
119
119
|
def create(cls, **kwargs: Any) -> BaseRule: ...
|
|
120
120
|
|
|
121
121
|
class ParameterType(Enum):
|
|
122
|
-
string =
|
|
123
|
-
boolean =
|
|
124
|
-
stringarray =
|
|
122
|
+
string = ...
|
|
123
|
+
boolean = ...
|
|
124
|
+
stringarray = ...
|
|
125
125
|
|
|
126
126
|
class ParameterDefinition:
|
|
127
127
|
def __init__(
|
botocore-stubs/handlers.pyi
CHANGED
|
@@ -135,6 +135,9 @@ def remove_qbusiness_chat(class_attributes: Mapping[str, Any], **kwargs: Any) ->
|
|
|
135
135
|
def remove_bedrock_runtime_invoke_model_with_bidirectional_stream(
|
|
136
136
|
class_attributes: Mapping[str, Any], **kwargs: Any
|
|
137
137
|
) -> None: ...
|
|
138
|
+
def enable_millisecond_timestamp_precision(
|
|
139
|
+
serializer_kwargs: Mapping[str, Any], **kwargs: Any
|
|
140
|
+
) -> None: ...
|
|
138
141
|
def add_retry_headers(request: Request, **kwargs: Any) -> None: ...
|
|
139
142
|
def remove_bucket_from_url_paths_from_model(
|
|
140
143
|
params: Mapping[str, Any], model: OperationModel, context: Mapping[str, Any], **kwargs: Any
|
botocore-stubs/plugin.pyi
CHANGED
|
@@ -4,21 +4,21 @@ Type annotations for botocore.plugin module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
import
|
|
8
|
-
from contextvars import
|
|
7
|
+
from collections.abc import Mapping
|
|
8
|
+
from contextvars import Token
|
|
9
9
|
from dataclasses import dataclass
|
|
10
|
-
from
|
|
10
|
+
from logging import Logger
|
|
11
11
|
|
|
12
12
|
from botocore.client import BaseClient
|
|
13
13
|
|
|
14
|
-
log:
|
|
14
|
+
log: Logger = ...
|
|
15
15
|
|
|
16
16
|
@dataclass
|
|
17
17
|
class PluginContext:
|
|
18
18
|
plugins: str | None = ...
|
|
19
19
|
|
|
20
|
-
def get_plugin_context() ->
|
|
21
|
-
def set_plugin_context(ctx:
|
|
22
|
-
def reset_plugin_context(token:
|
|
20
|
+
def get_plugin_context() -> PluginContext | None: ...
|
|
21
|
+
def set_plugin_context(ctx: PluginContext) -> Token[PluginContext]: ...
|
|
22
|
+
def reset_plugin_context(token: Token[PluginContext]) -> None: ...
|
|
23
23
|
def get_botocore_plugins() -> str | None: ...
|
|
24
|
-
def load_client_plugins(client: BaseClient, plugins:
|
|
24
|
+
def load_client_plugins(client: BaseClient, plugins: Mapping[str, str]) -> None: ...
|
botocore-stubs/serialize.pyi
CHANGED
|
@@ -13,18 +13,27 @@ from botocore.model import OperationModel
|
|
|
13
13
|
from botocore.utils import is_json_value_header as is_json_value_header
|
|
14
14
|
from botocore.utils import parse_to_aware_datetime as parse_to_aware_datetime
|
|
15
15
|
from botocore.utils import percent_encode as percent_encode
|
|
16
|
+
from botocore.validate import ParamValidationDecorator
|
|
16
17
|
|
|
17
|
-
DEFAULT_TIMESTAMP_FORMAT: str
|
|
18
|
-
ISO8601: str
|
|
19
|
-
ISO8601_MICRO: str
|
|
20
|
-
HOST_PREFIX_RE: Pattern[str]
|
|
18
|
+
DEFAULT_TIMESTAMP_FORMAT: str = ...
|
|
19
|
+
ISO8601: str = ...
|
|
20
|
+
ISO8601_MICRO: str = ...
|
|
21
|
+
HOST_PREFIX_RE: Pattern[str] = ...
|
|
21
22
|
|
|
22
|
-
|
|
23
|
+
TIMESTAMP_PRECISION_DEFAULT: str = ...
|
|
24
|
+
TIMESTAMP_PRECISION_MILLISECOND: str = ...
|
|
25
|
+
TIMESTAMP_PRECISION_OPTIONS: tuple[str, ...] = ...
|
|
26
|
+
|
|
27
|
+
def create_serializer(
|
|
28
|
+
protocol_name: str, include_validation: bool = ..., timestamp_precision: str = ...
|
|
29
|
+
) -> ParamValidationDecorator: ...
|
|
23
30
|
|
|
24
31
|
class Serializer:
|
|
25
32
|
DEFAULT_METHOD: str = ...
|
|
26
33
|
MAP_TYPE: type[dict[str, Any]] = ...
|
|
27
34
|
DEFAULT_ENCODING: str = ...
|
|
35
|
+
|
|
36
|
+
def __init__(self, timestamp_precision: str = ...) -> None: ...
|
|
28
37
|
def serialize_to_request(
|
|
29
38
|
self, parameters: Mapping[str, Any], operation_model: OperationModel
|
|
30
39
|
) -> dict[str, Any]: ...
|
botocore-stubs/signers.pyi
CHANGED
botocore-stubs/tokens.pyi
CHANGED
|
@@ -49,4 +49,6 @@ class SSOTokenProvider:
|
|
|
49
49
|
class ScopedEnvTokenProvider:
|
|
50
50
|
METHOD: str = ...
|
|
51
51
|
def __init__(self, session: Session, environ: Mapping[str, Any] | None = ...) -> None: ...
|
|
52
|
-
def load_token(
|
|
52
|
+
def load_token(
|
|
53
|
+
self, *, signing_name: str | None = ..., **kwargs: Any
|
|
54
|
+
) -> FrozenAuthToken | None: ...
|
botocore-stubs/useragent.pyi
CHANGED
|
@@ -5,6 +5,7 @@ Copyright 2025 Vlad Emelianov
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import logging
|
|
8
|
+
from collections.abc import Iterable
|
|
8
9
|
from typing import Any, NamedTuple, TypeVar
|
|
9
10
|
|
|
10
11
|
from botocore.awsrequest import AWSRequest
|
|
@@ -15,6 +16,7 @@ _R = TypeVar("_R")
|
|
|
15
16
|
logger: logging.Logger = ...
|
|
16
17
|
|
|
17
18
|
def register_feature_id(feature_id: str) -> None: ...
|
|
19
|
+
def register_feature_ids(feature_ids: Iterable[str]) -> None: ...
|
|
18
20
|
def sanitize_user_agent_string_component(raw_str: str, allow_hash: bool) -> str: ...
|
|
19
21
|
|
|
20
22
|
class UserAgentComponentSizeConfig:
|
botocore-stubs/utils.pyi
CHANGED
|
@@ -21,6 +21,7 @@ from botocore.compat import urlparse as urlparse
|
|
|
21
21
|
from botocore.compat import urlsplit as urlsplit
|
|
22
22
|
from botocore.compat import urlunsplit as urlunsplit
|
|
23
23
|
from botocore.compat import zip_longest as zip_longest
|
|
24
|
+
from botocore.config import Config
|
|
24
25
|
from botocore.credentials import Credentials
|
|
25
26
|
from botocore.exceptions import ClientError as ClientError
|
|
26
27
|
from botocore.exceptions import ConfigNotFound as ConfigNotFound
|
|
@@ -89,7 +90,21 @@ def set_value_from_jmespath(
|
|
|
89
90
|
source: dict[str, Any], expression: str, value: Any, is_first: bool = ...
|
|
90
91
|
) -> None: ...
|
|
91
92
|
def is_global_accesspoint(context: Any) -> bool: ...
|
|
92
|
-
def create_nested_client(
|
|
93
|
+
def create_nested_client(
|
|
94
|
+
session: Session,
|
|
95
|
+
service_name: str,
|
|
96
|
+
*,
|
|
97
|
+
region_name: str | None = ...,
|
|
98
|
+
api_version: str | None = ...,
|
|
99
|
+
use_ssl: bool | None = ...,
|
|
100
|
+
verify: bool | str | None = ...,
|
|
101
|
+
endpoint_url: str | None = ...,
|
|
102
|
+
aws_access_key_id: str | None = ...,
|
|
103
|
+
aws_secret_access_key: str | None = ...,
|
|
104
|
+
aws_session_token: str | None = ...,
|
|
105
|
+
config: Config | None = ...,
|
|
106
|
+
aws_account_id: str | None = ...,
|
|
107
|
+
) -> BaseClient: ...
|
|
93
108
|
|
|
94
109
|
class _RetriesExceededError(Exception): ...
|
|
95
110
|
|
|
@@ -1,30 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: botocore-stubs
|
|
3
|
-
Version: 1.40.
|
|
3
|
+
Version: 1.40.50
|
|
4
4
|
Summary: Type annotations and code completion for botocore
|
|
5
5
|
Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
|
|
6
|
-
License: MIT
|
|
7
|
-
|
|
8
|
-
Copyright (c) 2022 Vlad Emelianov
|
|
9
|
-
|
|
10
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
-
in the Software without restriction, including without limitation the rights
|
|
13
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
-
furnished to do so, subject to the following conditions:
|
|
16
|
-
|
|
17
|
-
The above copyright notice and this permission notice shall be included in all
|
|
18
|
-
copies or substantial portions of the Software.
|
|
19
|
-
|
|
20
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
-
SOFTWARE.
|
|
27
|
-
|
|
6
|
+
License-Expression: MIT
|
|
28
7
|
Project-URL: Homepage, https://github.com/youtype/botocore-stubs
|
|
29
8
|
Project-URL: Documentation, https://youtype.github.io/mypy_boto3_builder/
|
|
30
9
|
Project-URL: Repository, https://github.com/youtype/botocore-stubs
|
|
@@ -33,7 +12,6 @@ Project-URL: Issues, https://github.com/youtype/botocore-stubs/issues
|
|
|
33
12
|
Keywords: botocore,type-annotations,pyright,mypy,boto3
|
|
34
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
35
14
|
Classifier: Environment :: Console
|
|
36
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
37
15
|
Classifier: Natural Language :: English
|
|
38
16
|
Classifier: Operating System :: OS Independent
|
|
39
17
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -2,21 +2,21 @@ botocore-stubs/__init__.pyi,sha256=XwYGr47sSGlobSDgt5vYmjnDZ1GZjPSPAOFQHTlPUGo,6
|
|
|
2
2
|
botocore-stubs/args.pyi,sha256=qeF-Kzp-6C0eRGsJmC_ajTvML5-LQM-Vq4obvhpeDLk,3567
|
|
3
3
|
botocore-stubs/auth.pyi,sha256=4zkWbymfpzYTtkNg3Wr-5joTGx9lS3yJoha4M7e_zcw,5591
|
|
4
4
|
botocore-stubs/awsrequest.pyi,sha256=iCCPx5AWEO_GpSROadB1Iud1Td9v__eSo7oZDmZi-I8,4164
|
|
5
|
-
botocore-stubs/client.pyi,sha256=
|
|
5
|
+
botocore-stubs/client.pyi,sha256=DPukbH3ingErY5P6JFwQ1XZ8S67ia71BLcdzio1ZRHo,6594
|
|
6
6
|
botocore-stubs/compat.pyi,sha256=0qbzwzP25Shx3qqg4iNMLoAA5-wKf3qK-VVLNgtVB8M,2701
|
|
7
7
|
botocore-stubs/compress.pyi,sha256=oY4mKCZfoUPbAhzxYjzQQdh7PMKYrzsLanVz9SRC60s,665
|
|
8
8
|
botocore-stubs/config.pyi,sha256=-g8MSC_w8fk_lQ9EZiRJB8D2IGVZ0kBqnJTWdugW7nY,3098
|
|
9
9
|
botocore-stubs/configloader.pyi,sha256=5sUsnqeN2TDL22KSMSCZOfzircr9xHGQxSB9-lFghDk,420
|
|
10
10
|
botocore-stubs/configprovider.pyi,sha256=ZDstAepWaKR0zrbqpNDoNuMSMO4L5tsGHNnvG4aDIQ8,4125
|
|
11
11
|
botocore-stubs/context.pyi,sha256=Qo3WqgcasKya9xhUbQ6D9e0nSMaLYoNzxu_DXc6YIl0,904
|
|
12
|
-
botocore-stubs/credentials.pyi,sha256=
|
|
12
|
+
botocore-stubs/credentials.pyi,sha256=iC0tyMQkEp5G4q96of0g58qBDn-9QhemP_ygZpRqIh8,12539
|
|
13
13
|
botocore-stubs/discovery.pyi,sha256=sxs2vcjXoUlOxRl4cdsaMd18rz46s--XlcGspLx44mE,2626
|
|
14
14
|
botocore-stubs/endpoint.pyi,sha256=Fk5d27-EJbd5oIH9NpZfIpmydrck-awzW5dV6VD7jsw,2518
|
|
15
|
-
botocore-stubs/endpoint_provider.pyi,sha256=
|
|
15
|
+
botocore-stubs/endpoint_provider.pyi,sha256=H16Bun6uPiRsyx6xuvwVPl5pFUt9WK6iY51xy5SeqrU,6212
|
|
16
16
|
botocore-stubs/errorfactory.pyi,sha256=aP6HK_mtXyH3gU10Q7VBYRsmEVQFmWdegDuG-iuMnEc,816
|
|
17
17
|
botocore-stubs/eventstream.pyi,sha256=zzQsEDUmS6JP2zDDxOm9x3qIFRSxINflAY72HmoCz-w,3568
|
|
18
18
|
botocore-stubs/exceptions.pyi,sha256=lEmuUmf4Nuvxw7ak_8DCqIeRchJ88W-qdPZGasa_ViY,21646
|
|
19
|
-
botocore-stubs/handlers.pyi,sha256=
|
|
19
|
+
botocore-stubs/handlers.pyi,sha256=YGyqTNMWvFz_Ac_YV-T7CGoYxI1xYwk9O_CTOmnm1WY,7912
|
|
20
20
|
botocore-stubs/history.pyi,sha256=dwdRDn3XSr3i4lZP1nKEekyJG1homWE35E-ooTShYRk,643
|
|
21
21
|
botocore-stubs/hooks.pyi,sha256=-mqYP_nlEjpbOx23T5PIg0BlIlHvsVVKEZt7R4CHkIE,3077
|
|
22
22
|
botocore-stubs/httpchecksum.pyi,sha256=K_qQHik82WWPY3VtgmU8NyGECUW20hBlr56mlspQc4Y,2841
|
|
@@ -26,19 +26,19 @@ botocore-stubs/model.pyi,sha256=WuDKt0gmq_fApmllWf_JwQn9bTFf3Bm6SEpylc7FN64,6931
|
|
|
26
26
|
botocore-stubs/monitoring.pyi,sha256=N_3pWVtt1KMAq52UWFrCtaVIW7Z4Rdub_Ji8jjpjyLg,2920
|
|
27
27
|
botocore-stubs/paginate.pyi,sha256=K4rLydRaj9U4kQyD5pHBC_cfbGZNVNGdYidqAH7cWYw,2314
|
|
28
28
|
botocore-stubs/parsers.pyi,sha256=xC6qZHI9hIIMCcXnNEnDyxFjI0cUM9wQWdLGPcpBYV4,2843
|
|
29
|
-
botocore-stubs/plugin.pyi,sha256=
|
|
29
|
+
botocore-stubs/plugin.pyi,sha256=9m-ieJCJZbdRZc4OjF64hdbiKGJbEKpqLdY04yg05Ok,659
|
|
30
30
|
botocore-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
31
|
botocore-stubs/regions.pyi,sha256=_4F2Z9WHtQrys2OanQASK_HGDEJMlChajffvbhtWdUA,3732
|
|
32
32
|
botocore-stubs/response.pyi,sha256=BfotsuLLNwi8HG_sS8vsLDImWvUTxCm5wftqiSMh728,1170
|
|
33
33
|
botocore-stubs/retryhandler.pyi,sha256=KSdUIFnTc0exhqw1AoH41nYin2k1VUUC-yWnf74xhmw,2600
|
|
34
|
-
botocore-stubs/serialize.pyi,sha256=
|
|
34
|
+
botocore-stubs/serialize.pyi,sha256=c5oXBDGbSM8wrjA6vhZvHYL6tZqLTXRSUA9na9If6hk,2632
|
|
35
35
|
botocore-stubs/session.pyi,sha256=ZBeaJl-ZhqbREdnIw__bo6ooeWWTzLzA09T5dSI9txI,7005
|
|
36
|
-
botocore-stubs/signers.pyi,sha256=
|
|
36
|
+
botocore-stubs/signers.pyi,sha256=4XPAHoPP0BFnyHC8v0bsVNZRJRDRsq9d5uLPj9S1C9k,4176
|
|
37
37
|
botocore-stubs/stub.pyi,sha256=aY60rHM5EhvH-MbUqL8Q0IMrd9ERHUIY0oGxrQZ1Zs8,1891
|
|
38
|
-
botocore-stubs/tokens.pyi,sha256=
|
|
38
|
+
botocore-stubs/tokens.pyi,sha256=X8w2jEX5dBoHHwEXBJlNhtqkgryuO-IFRp8TBD6nLXI,1559
|
|
39
39
|
botocore-stubs/translate.pyi,sha256=H-HiVmWZZEPdD9xc49sS-QLhXoPeOGWhASwJbuxcUhU,491
|
|
40
|
-
botocore-stubs/useragent.pyi,sha256=
|
|
41
|
-
botocore-stubs/utils.pyi,sha256
|
|
40
|
+
botocore-stubs/useragent.pyi,sha256=7jl0M3yTl4H2J0eh1APowiiFRsvGWBjjg6JO0Prhelw,1866
|
|
41
|
+
botocore-stubs/utils.pyi,sha256=-dZ7Di310U8NjCUBWuKT8eBRbf62U58uV_DRncAmqxo,14959
|
|
42
42
|
botocore-stubs/validate.pyi,sha256=MU0Kov9nrH1FMG2XTEpcvQhcKJIWB5SXNG8Y2O_0GOo,1284
|
|
43
43
|
botocore-stubs/waiter.pyi,sha256=6KipYNT-vx-Vg3h2zKq1eVU_LrOVxAt_qn86IreC0vQ,1687
|
|
44
44
|
botocore-stubs/crt/__init__.pyi,sha256=37HBtXm11YTFxQAu5exKmHiq1t0WHC3fmC2O9DgIFD0,130
|
|
@@ -68,8 +68,8 @@ botocore-stubs/retries/quota.pyi,sha256=Z4sBLvnNBtnNE0JV_cHbhLDWGjQYdRyLR0bDG5dR
|
|
|
68
68
|
botocore-stubs/retries/special.pyi,sha256=mEmYwXUqdWtpKoxOO0-DZ-lrc91le_WmdO8X4j_UQ1A,530
|
|
69
69
|
botocore-stubs/retries/standard.pyi,sha256=GzEKonxr8ircu3ZNKA1fNuC2VP4BFYwlDj8QGx7bmww,4478
|
|
70
70
|
botocore-stubs/retries/throttling.pyi,sha256=mpd__xuiUjY4Uc8ocquxgD_D2azuXOtBs1J-XoObvwE,582
|
|
71
|
-
botocore_stubs-1.40.
|
|
72
|
-
botocore_stubs-1.40.
|
|
73
|
-
botocore_stubs-1.40.
|
|
74
|
-
botocore_stubs-1.40.
|
|
75
|
-
botocore_stubs-1.40.
|
|
71
|
+
botocore_stubs-1.40.50.dist-info/licenses/LICENSE,sha256=YIdUJ_cFRZScLZQFyRT_O8yCCxXFhFKmXaqgDpe3rpM,1071
|
|
72
|
+
botocore_stubs-1.40.50.dist-info/METADATA,sha256=gsFzL_npA1H3Q-wxvzRd91ZQLMGHxkDKoygUE7MO_xQ,3354
|
|
73
|
+
botocore_stubs-1.40.50.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
74
|
+
botocore_stubs-1.40.50.dist-info/top_level.txt,sha256=hB4vH6fIntn8CrZExgrgxRrlukQb06YRGFcOvWZ2th8,15
|
|
75
|
+
botocore_stubs-1.40.50.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|