mypy-boto3-transfer 1.35.0__py3-none-any.whl → 1.35.72__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_transfer/__init__.py +11 -0
- mypy_boto3_transfer/__init__.pyi +10 -0
- mypy_boto3_transfer/__main__.py +7 -5
- mypy_boto3_transfer/client.py +467 -402
- mypy_boto3_transfer/client.pyi +466 -402
- mypy_boto3_transfer/literals.py +35 -8
- mypy_boto3_transfer/literals.pyi +33 -8
- mypy_boto3_transfer/paginator.py +95 -36
- mypy_boto3_transfer/paginator.pyi +89 -47
- mypy_boto3_transfer/type_defs.py +1477 -1618
- mypy_boto3_transfer/type_defs.pyi +1269 -1621
- mypy_boto3_transfer/version.py +3 -1
- mypy_boto3_transfer/waiter.py +20 -7
- mypy_boto3_transfer/waiter.pyi +19 -9
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/METADATA +68 -22
- mypy_boto3_transfer-1.35.72.dist-info/RECORD +20 -0
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/WHEEL +1 -1
- mypy_boto3_transfer-1.35.0.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/LICENSE +0 -0
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/top_level.txt +0 -0
mypy_boto3_transfer/version.py
CHANGED
mypy_boto3_transfer/waiter.py
CHANGED
|
@@ -20,36 +20,49 @@ Usage::
|
|
|
20
20
|
server_offline_waiter: ServerOfflineWaiter = client.get_waiter("server_offline")
|
|
21
21
|
server_online_waiter: ServerOnlineWaiter = client.get_waiter("server_online")
|
|
22
22
|
```
|
|
23
|
+
|
|
24
|
+
Copyright 2024 Vlad Emelianov
|
|
23
25
|
"""
|
|
24
26
|
|
|
27
|
+
import sys
|
|
28
|
+
|
|
25
29
|
from botocore.waiter import Waiter
|
|
26
30
|
|
|
27
|
-
from .type_defs import
|
|
31
|
+
from .type_defs import (
|
|
32
|
+
DescribeServerRequestServerOfflineWaitTypeDef,
|
|
33
|
+
DescribeServerRequestServerOnlineWaitTypeDef,
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
if sys.version_info >= (3, 12):
|
|
37
|
+
from typing import Unpack
|
|
38
|
+
else:
|
|
39
|
+
from typing_extensions import Unpack
|
|
40
|
+
|
|
28
41
|
|
|
29
42
|
__all__ = ("ServerOfflineWaiter", "ServerOnlineWaiter")
|
|
30
43
|
|
|
31
44
|
|
|
32
45
|
class ServerOfflineWaiter(Waiter):
|
|
33
46
|
"""
|
|
34
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Waiter.ServerOffline)
|
|
47
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/waiter/ServerOffline.html#Transfer.Waiter.ServerOffline)
|
|
35
48
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serverofflinewaiter)
|
|
36
49
|
"""
|
|
37
50
|
|
|
38
|
-
def wait(self,
|
|
51
|
+
def wait(self, **kwargs: Unpack[DescribeServerRequestServerOfflineWaitTypeDef]) -> None:
|
|
39
52
|
"""
|
|
40
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Waiter.ServerOffline.wait)
|
|
53
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/waiter/ServerOffline.html#Transfer.Waiter.ServerOffline.wait)
|
|
41
54
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serverofflinewaiter)
|
|
42
55
|
"""
|
|
43
56
|
|
|
44
57
|
|
|
45
58
|
class ServerOnlineWaiter(Waiter):
|
|
46
59
|
"""
|
|
47
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Waiter.ServerOnline)
|
|
60
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/waiter/ServerOnline.html#Transfer.Waiter.ServerOnline)
|
|
48
61
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serveronlinewaiter)
|
|
49
62
|
"""
|
|
50
63
|
|
|
51
|
-
def wait(self,
|
|
64
|
+
def wait(self, **kwargs: Unpack[DescribeServerRequestServerOnlineWaitTypeDef]) -> None:
|
|
52
65
|
"""
|
|
53
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Waiter.ServerOnline.wait)
|
|
66
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/waiter/ServerOnline.html#Transfer.Waiter.ServerOnline.wait)
|
|
54
67
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serveronlinewaiter)
|
|
55
68
|
"""
|
mypy_boto3_transfer/waiter.pyi
CHANGED
|
@@ -20,34 +20,44 @@ Usage::
|
|
|
20
20
|
server_offline_waiter: ServerOfflineWaiter = client.get_waiter("server_offline")
|
|
21
21
|
server_online_waiter: ServerOnlineWaiter = client.get_waiter("server_online")
|
|
22
22
|
```
|
|
23
|
+
|
|
24
|
+
Copyright 2024 Vlad Emelianov
|
|
23
25
|
"""
|
|
24
26
|
|
|
27
|
+
import sys
|
|
28
|
+
|
|
25
29
|
from botocore.waiter import Waiter
|
|
26
30
|
|
|
27
|
-
from .type_defs import
|
|
31
|
+
from .type_defs import (
|
|
32
|
+
DescribeServerRequestServerOfflineWaitTypeDef,
|
|
33
|
+
DescribeServerRequestServerOnlineWaitTypeDef,
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
if sys.version_info >= (3, 12):
|
|
37
|
+
from typing import Unpack
|
|
38
|
+
else:
|
|
39
|
+
from typing_extensions import Unpack
|
|
28
40
|
|
|
29
41
|
__all__ = ("ServerOfflineWaiter", "ServerOnlineWaiter")
|
|
30
42
|
|
|
31
43
|
class ServerOfflineWaiter(Waiter):
|
|
32
44
|
"""
|
|
33
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Waiter.ServerOffline)
|
|
45
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/waiter/ServerOffline.html#Transfer.Waiter.ServerOffline)
|
|
34
46
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serverofflinewaiter)
|
|
35
47
|
"""
|
|
36
|
-
|
|
37
|
-
def wait(self, *, ServerId: str, WaiterConfig: WaiterConfigTypeDef = ...) -> None:
|
|
48
|
+
def wait(self, **kwargs: Unpack[DescribeServerRequestServerOfflineWaitTypeDef]) -> None:
|
|
38
49
|
"""
|
|
39
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Waiter.ServerOffline.wait)
|
|
50
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/waiter/ServerOffline.html#Transfer.Waiter.ServerOffline.wait)
|
|
40
51
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serverofflinewaiter)
|
|
41
52
|
"""
|
|
42
53
|
|
|
43
54
|
class ServerOnlineWaiter(Waiter):
|
|
44
55
|
"""
|
|
45
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Waiter.ServerOnline)
|
|
56
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/waiter/ServerOnline.html#Transfer.Waiter.ServerOnline)
|
|
46
57
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serveronlinewaiter)
|
|
47
58
|
"""
|
|
48
|
-
|
|
49
|
-
def wait(self, *, ServerId: str, WaiterConfig: WaiterConfigTypeDef = ...) -> None:
|
|
59
|
+
def wait(self, **kwargs: Unpack[DescribeServerRequestServerOnlineWaitTypeDef]) -> None:
|
|
50
60
|
"""
|
|
51
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Waiter.ServerOnline.wait)
|
|
61
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/waiter/ServerOnline.html#Transfer.Waiter.ServerOnline.wait)
|
|
52
62
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serveronlinewaiter)
|
|
53
63
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-transfer
|
|
3
|
-
Version: 1.35.
|
|
4
|
-
Summary: Type annotations for boto3
|
|
3
|
+
Version: 1.35.72
|
|
4
|
+
Summary: Type annotations for boto3 Transfer 1.35.72 service generated with mypy-boto3-builder 8.5.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_transfer/
|
|
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 transfer type-annotations
|
|
12
|
+
Keywords: boto3 transfer 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,6 +23,7 @@ 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
|
|
@@ -35,16 +36,15 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
|
35
36
|
|
|
36
37
|
# mypy-boto3-transfer
|
|
37
38
|
|
|
38
|
-
[](https://pypi.org/project/mypy-boto3-transfer)
|
|
39
|
-
[](https://pypi.org/project/mypy-boto3-transfer)
|
|
40
|
-
[](https://youtype.github.io/boto3_stubs_docs/
|
|
41
|
-
[](https://
|
|
39
|
+
[](https://pypi.org/project/mypy-boto3-transfer/)
|
|
40
|
+
[](https://pypi.org/project/mypy-boto3-transfer/)
|
|
41
|
+
[](https://youtype.github.io/boto3_stubs_docs/)
|
|
42
|
+
[](https://pypistats.org/packages/mypy-boto3-transfer)
|
|
42
43
|
|
|
43
44
|

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

|
|
64
64
|
|
|
65
65
|
- [mypy-boto3-transfer](#mypy-boto3-transfer)
|
|
66
66
|
- [How to install](#how-to-install)
|
|
@@ -75,6 +75,7 @@ See how it helps to find and fix potential bugs:
|
|
|
75
75
|
- [Other IDEs](#other-ides)
|
|
76
76
|
- [mypy](#mypy)
|
|
77
77
|
- [pyright](#pyright)
|
|
78
|
+
- [Pylint compatibility](#pylint-compatibility)
|
|
78
79
|
- [Explicit type annotations](#explicit-type-annotations)
|
|
79
80
|
- [Client annotations](#client-annotations)
|
|
80
81
|
- [Paginators annotations](#paginators-annotations)
|
|
@@ -158,16 +159,31 @@ annotations required, write your `boto3` code as usual.
|
|
|
158
159
|
|
|
159
160
|
### PyCharm
|
|
160
161
|
|
|
161
|
-
|
|
162
|
+
> ⚠️ Due to slow PyCharm performance on `Literal` overloads (issue
|
|
163
|
+
> [PY-40997](https://youtrack.jetbrains.com/issue/PY-40997)), it is recommended
|
|
164
|
+
> to use [boto3-stubs-lite](https://pypi.org/project/boto3-stubs-lite/) until
|
|
165
|
+
> the issue is resolved.
|
|
166
|
+
|
|
167
|
+
> ⚠️ If you experience slow performance and high CPU usage, try to disable
|
|
168
|
+
> `PyCharm` type checker and use [mypy](https://github.com/python/mypy) or
|
|
169
|
+
> [pyright](https://github.com/microsoft/pyright) instead.
|
|
170
|
+
|
|
171
|
+
> ⚠️ To continue using `PyCharm` type checker, you can try to replace
|
|
172
|
+
> `boto3-stubs` with
|
|
173
|
+
> [boto3-stubs-lite](https://pypi.org/project/boto3-stubs-lite/):
|
|
162
174
|
|
|
163
175
|
```bash
|
|
164
|
-
|
|
176
|
+
pip uninstall boto3-stubs
|
|
177
|
+
pip install boto3-stubs-lite
|
|
165
178
|
```
|
|
166
179
|
|
|
167
|
-
|
|
168
|
-
annotations **are required**.
|
|
180
|
+
Install `boto3-stubs[transfer]` in your environment:
|
|
169
181
|
|
|
170
|
-
|
|
182
|
+
```bash
|
|
183
|
+
python -m pip install 'boto3-stubs[transfer]'
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
Both type checking and code completion should now work.
|
|
171
187
|
|
|
172
188
|
<a id="emacs"></a>
|
|
173
189
|
|
|
@@ -231,7 +247,7 @@ should work.
|
|
|
231
247
|
- Install `boto3-stubs[transfer]` in your environment:
|
|
232
248
|
|
|
233
249
|
```bash
|
|
234
|
-
python -m pip install 'boto3-stubs[transfer]'
|
|
250
|
+
python -m pip install 'boto3-stubs[transfer]'
|
|
235
251
|
```
|
|
236
252
|
|
|
237
253
|
Type checking should now work. No explicit type annotations required, write
|
|
@@ -248,11 +264,36 @@ your `boto3` code as usual.
|
|
|
248
264
|
python -m pip install 'boto3-stubs[transfer]'
|
|
249
265
|
```
|
|
250
266
|
|
|
251
|
-
Optionally, you can install `boto3-stubs` to `typings`
|
|
267
|
+
Optionally, you can install `boto3-stubs` to `typings` directory.
|
|
252
268
|
|
|
253
269
|
Type checking should now work. No explicit type annotations required, write
|
|
254
270
|
your `boto3` code as usual.
|
|
255
271
|
|
|
272
|
+
<a id="pylint-compatibility"></a>
|
|
273
|
+
|
|
274
|
+
### Pylint compatibility
|
|
275
|
+
|
|
276
|
+
It is totally safe to use `TYPE_CHECKING` flag in order to avoid
|
|
277
|
+
`mypy-boto3-transfer` dependency in production. However, there is an issue in
|
|
278
|
+
`pylint` that it complains about undefined variables. To fix it, set all types
|
|
279
|
+
to `object` in non-`TYPE_CHECKING` mode.
|
|
280
|
+
|
|
281
|
+
```python
|
|
282
|
+
from typing import TYPE_CHECKING
|
|
283
|
+
|
|
284
|
+
if TYPE_CHECKING:
|
|
285
|
+
from mypy_boto3_ec2 import EC2Client, EC2ServiceResource
|
|
286
|
+
from mypy_boto3_ec2.waiters import BundleTaskCompleteWaiter
|
|
287
|
+
from mypy_boto3_ec2.paginators import DescribeVolumesPaginator
|
|
288
|
+
else:
|
|
289
|
+
EC2Client = object
|
|
290
|
+
EC2ServiceResource = object
|
|
291
|
+
BundleTaskCompleteWaiter = object
|
|
292
|
+
DescribeVolumesPaginator = object
|
|
293
|
+
|
|
294
|
+
...
|
|
295
|
+
```
|
|
296
|
+
|
|
256
297
|
<a id="explicit-type-annotations"></a>
|
|
257
298
|
|
|
258
299
|
## Explicit type annotations
|
|
@@ -290,11 +331,13 @@ from mypy_boto3_transfer.paginator import (
|
|
|
290
331
|
ListCertificatesPaginator,
|
|
291
332
|
ListConnectorsPaginator,
|
|
292
333
|
ListExecutionsPaginator,
|
|
334
|
+
ListFileTransferResultsPaginator,
|
|
293
335
|
ListProfilesPaginator,
|
|
294
336
|
ListSecurityPoliciesPaginator,
|
|
295
337
|
ListServersPaginator,
|
|
296
338
|
ListTagsForResourcePaginator,
|
|
297
339
|
ListUsersPaginator,
|
|
340
|
+
ListWebAppsPaginator,
|
|
298
341
|
ListWorkflowsPaginator,
|
|
299
342
|
)
|
|
300
343
|
|
|
@@ -307,6 +350,9 @@ list_agreements_paginator: ListAgreementsPaginator = client.get_paginator("list_
|
|
|
307
350
|
list_certificates_paginator: ListCertificatesPaginator = client.get_paginator("list_certificates")
|
|
308
351
|
list_connectors_paginator: ListConnectorsPaginator = client.get_paginator("list_connectors")
|
|
309
352
|
list_executions_paginator: ListExecutionsPaginator = client.get_paginator("list_executions")
|
|
353
|
+
list_file_transfer_results_paginator: ListFileTransferResultsPaginator = client.get_paginator(
|
|
354
|
+
"list_file_transfer_results"
|
|
355
|
+
)
|
|
310
356
|
list_profiles_paginator: ListProfilesPaginator = client.get_paginator("list_profiles")
|
|
311
357
|
list_security_policies_paginator: ListSecurityPoliciesPaginator = client.get_paginator(
|
|
312
358
|
"list_security_policies"
|
|
@@ -316,6 +362,7 @@ list_tags_for_resource_paginator: ListTagsForResourcePaginator = client.get_pagi
|
|
|
316
362
|
"list_tags_for_resource"
|
|
317
363
|
)
|
|
318
364
|
list_users_paginator: ListUsersPaginator = client.get_paginator("list_users")
|
|
365
|
+
list_web_apps_paginator: ListWebAppsPaginator = client.get_paginator("list_web_apps")
|
|
319
366
|
list_workflows_paginator: ListWorkflowsPaginator = client.get_paginator("list_workflows")
|
|
320
367
|
```
|
|
321
368
|
|
|
@@ -388,8 +435,7 @@ updates. It delivers drop-in type annotations for you and makes sure that:
|
|
|
388
435
|
annotations extracted from `botocore` schemas.
|
|
389
436
|
- Type annotations include up-to-date documentation.
|
|
390
437
|
- Link to documentation is provided for every method.
|
|
391
|
-
- Code is processed by [
|
|
392
|
-
[isort](https://github.com/PyCQA/isort) for readability.
|
|
438
|
+
- Code is processed by [ruff](https://docs.astral.sh/ruff/) for readability.
|
|
393
439
|
|
|
394
440
|
<a id="what's-new"></a>
|
|
395
441
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_transfer/__init__.py,sha256=okE0iW5bzWS4WtCUwdU09Kg7k1g-prkNe3VstU92ebs,3308
|
|
2
|
+
mypy_boto3_transfer/__init__.pyi,sha256=5zGYXb2iTUKG74GUurE3ChKmB_FCEI9CJGFDicMOGmk,3307
|
|
3
|
+
mypy_boto3_transfer/__main__.py,sha256=3h2H3VFPcqaRlOZialy3tpJGdyuxcsx3RfpWaFuCeDI,953
|
|
4
|
+
mypy_boto3_transfer/client.py,sha256=saAqjLtX1sYIoyyKulyleax8unBXcq1XSdx5aWRNCUI,53024
|
|
5
|
+
mypy_boto3_transfer/client.pyi,sha256=LEI39Js0thA_0qpA5TNENFHAxG96yT2nN6KluwsONY0,53020
|
|
6
|
+
mypy_boto3_transfer/literals.py,sha256=29-LFCxa29XmQAjWSnzmKg9JNLKHAscmpa6nGvuluik,14159
|
|
7
|
+
mypy_boto3_transfer/literals.pyi,sha256=oH3oNWfKOgh8PxcYJmNeDjqo-Er_iG-inLZUK8htLs8,14157
|
|
8
|
+
mypy_boto3_transfer/paginator.py,sha256=IrNNvdakij4ylmuseK3x7RW3qncKO-5bxHxFJGy8DUk,15945
|
|
9
|
+
mypy_boto3_transfer/paginator.pyi,sha256=4bmqnUboFj3WUa69YsbHgnehWaY0kPNrFe7ukpuRBzw,15916
|
|
10
|
+
mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_transfer/type_defs.py,sha256=_tbRKuz35QQFGvkViXB2Dk56e-4iLVsPG7xdE_GAS-A,48395
|
|
12
|
+
mypy_boto3_transfer/type_defs.pyi,sha256=iQY5L9YDpdZvgCBENJe-SBki5N_WvxSkB8snaaV2uTE,48184
|
|
13
|
+
mypy_boto3_transfer/version.py,sha256=YQeegutf73cmLwsZE7d3vYIjpKh09ERGKV08ssq8iHk,93
|
|
14
|
+
mypy_boto3_transfer/waiter.py,sha256=CqbcOsdjkpk_ft8BRwRC3xxRI8eG-XiBurH-iEJtZZU,2587
|
|
15
|
+
mypy_boto3_transfer/waiter.pyi,sha256=PrPrhwMiD5htR6QwZv18NmX1NjuHFmKPztX56XeThIA,2582
|
|
16
|
+
mypy_boto3_transfer-1.35.72.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
mypy_boto3_transfer-1.35.72.dist-info/METADATA,sha256=hpkerA3HWTDdBbJpwB5pC3dOrU7rXdBqML56y45WXZ4,16234
|
|
18
|
+
mypy_boto3_transfer-1.35.72.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
19
|
+
mypy_boto3_transfer-1.35.72.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
+
mypy_boto3_transfer-1.35.72.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_transfer/__init__.py,sha256=7s1QISzwzsnzQHCfQvKCVBlPmRIKBl0DKPIWKK0x-cw,2854
|
|
2
|
-
mypy_boto3_transfer/__init__.pyi,sha256=7s1QISzwzsnzQHCfQvKCVBlPmRIKBl0DKPIWKK0x-cw,2854
|
|
3
|
-
mypy_boto3_transfer/__main__.py,sha256=x-8eErfxx6j_rvVrcBNaSPzRtPTpFm4iO9qJ9NWMCL4,920
|
|
4
|
-
mypy_boto3_transfer/client.py,sha256=XeP5NgpkMIo3xric9lU_O0f5GgG2zsoU1CXyuvHv6C0,48194
|
|
5
|
-
mypy_boto3_transfer/client.pyi,sha256=PwrtHGqk6Ta5tN8-jqmC21yEOKHOZccV-NgMZEYCkr8,48191
|
|
6
|
-
mypy_boto3_transfer/literals.py,sha256=1gphDju5usgWGd4pQgrsKS77Iz3JT3Wpu9Pyjew_slI,13408
|
|
7
|
-
mypy_boto3_transfer/literals.pyi,sha256=1gphDju5usgWGd4pQgrsKS77Iz3JT3Wpu9Pyjew_slI,13408
|
|
8
|
-
mypy_boto3_transfer/paginator.py,sha256=t0lcr_Cx89mq1B6Ml9qaudTxB9i0E4v-I1BR9J371XI,12188
|
|
9
|
-
mypy_boto3_transfer/paginator.pyi,sha256=1PAa9ndIE9WPuNuDlG9f2J4qvmZ9cE2uZfkbGtqUKPU,12176
|
|
10
|
-
mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_transfer/type_defs.py,sha256=XvseJLIepbUfV96qlOOtbbIcWAgqj9XOhbOow5wtK9U,55403
|
|
12
|
-
mypy_boto3_transfer/type_defs.pyi,sha256=XvseJLIepbUfV96qlOOtbbIcWAgqj9XOhbOow5wtK9U,55403
|
|
13
|
-
mypy_boto3_transfer/version.py,sha256=LGeN8DOPs0tRcJcxZVxCtqSh0iyZT7lFggGF3KkSqhA,61
|
|
14
|
-
mypy_boto3_transfer/waiter.py,sha256=i3jL0DsL0ra-yuCGruMYY0dXXefP37JKKjqZy0PV3as,2255
|
|
15
|
-
mypy_boto3_transfer/waiter.pyi,sha256=8L-Oj9DRLKTmRMfdRCfBzyRYmZXa5l-xItn_JGdpwoc,2253
|
|
16
|
-
mypy_boto3_transfer-1.35.0.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
mypy_boto3_transfer-1.35.0.dist-info/METADATA,sha256=k1Pfdqx6_ga-zDOnKFqhCO4WibLPcA9OmRWDOvxVuag,14672
|
|
18
|
-
mypy_boto3_transfer-1.35.0.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
|
19
|
-
mypy_boto3_transfer-1.35.0.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
-
mypy_boto3_transfer-1.35.0.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/top_level.txt
RENAMED
|
File without changes
|