mypy-boto3-transfer 1.35.40__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 +6 -0
- mypy_boto3_transfer/__init__.pyi +6 -0
- mypy_boto3_transfer/__main__.py +7 -5
- mypy_boto3_transfer/client.py +281 -170
- mypy_boto3_transfer/client.pyi +281 -170
- mypy_boto3_transfer/literals.py +25 -7
- mypy_boto3_transfer/literals.pyi +25 -7
- mypy_boto3_transfer/paginator.py +47 -25
- mypy_boto3_transfer/paginator.pyi +45 -25
- mypy_boto3_transfer/type_defs.py +1463 -1626
- mypy_boto3_transfer/type_defs.pyi +1267 -1640
- mypy_boto3_transfer/version.py +3 -1
- mypy_boto3_transfer/waiter.py +6 -4
- mypy_boto3_transfer/waiter.pyi +6 -4
- {mypy_boto3_transfer-1.35.40.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/METADATA +61 -18
- mypy_boto3_transfer-1.35.72.dist-info/RECORD +20 -0
- {mypy_boto3_transfer-1.35.40.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/WHEEL +1 -1
- mypy_boto3_transfer-1.35.40.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.35.40.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/LICENSE +0 -0
- {mypy_boto3_transfer-1.35.40.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,6 +20,8 @@ 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
|
|
|
25
27
|
import sys
|
|
@@ -42,25 +44,25 @@ __all__ = ("ServerOfflineWaiter", "ServerOnlineWaiter")
|
|
|
42
44
|
|
|
43
45
|
class ServerOfflineWaiter(Waiter):
|
|
44
46
|
"""
|
|
45
|
-
[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)
|
|
46
48
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serverofflinewaiter)
|
|
47
49
|
"""
|
|
48
50
|
|
|
49
51
|
def wait(self, **kwargs: Unpack[DescribeServerRequestServerOfflineWaitTypeDef]) -> None:
|
|
50
52
|
"""
|
|
51
|
-
[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)
|
|
52
54
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serverofflinewaiter)
|
|
53
55
|
"""
|
|
54
56
|
|
|
55
57
|
|
|
56
58
|
class ServerOnlineWaiter(Waiter):
|
|
57
59
|
"""
|
|
58
|
-
[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)
|
|
59
61
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serveronlinewaiter)
|
|
60
62
|
"""
|
|
61
63
|
|
|
62
64
|
def wait(self, **kwargs: Unpack[DescribeServerRequestServerOnlineWaitTypeDef]) -> None:
|
|
63
65
|
"""
|
|
64
|
-
[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)
|
|
65
67
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serveronlinewaiter)
|
|
66
68
|
"""
|
mypy_boto3_transfer/waiter.pyi
CHANGED
|
@@ -20,6 +20,8 @@ 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
|
|
|
25
27
|
import sys
|
|
@@ -40,22 +42,22 @@ __all__ = ("ServerOfflineWaiter", "ServerOnlineWaiter")
|
|
|
40
42
|
|
|
41
43
|
class ServerOfflineWaiter(Waiter):
|
|
42
44
|
"""
|
|
43
|
-
[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)
|
|
44
46
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serverofflinewaiter)
|
|
45
47
|
"""
|
|
46
48
|
def wait(self, **kwargs: Unpack[DescribeServerRequestServerOfflineWaitTypeDef]) -> None:
|
|
47
49
|
"""
|
|
48
|
-
[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)
|
|
49
51
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serverofflinewaiter)
|
|
50
52
|
"""
|
|
51
53
|
|
|
52
54
|
class ServerOnlineWaiter(Waiter):
|
|
53
55
|
"""
|
|
54
|
-
[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)
|
|
55
57
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serveronlinewaiter)
|
|
56
58
|
"""
|
|
57
59
|
def wait(self, **kwargs: Unpack[DescribeServerRequestServerOnlineWaitTypeDef]) -> None:
|
|
58
60
|
"""
|
|
59
|
-
[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)
|
|
60
62
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serveronlinewaiter)
|
|
61
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 8.
|
|
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
|
-
|
|
180
|
+
Install `boto3-stubs[transfer]` in your environment:
|
|
181
|
+
|
|
182
|
+
```bash
|
|
183
|
+
python -m pip install 'boto3-stubs[transfer]'
|
|
184
|
+
```
|
|
169
185
|
|
|
170
|
-
|
|
186
|
+
Both type checking and code completion should now work.
|
|
171
187
|
|
|
172
188
|
<a id="emacs"></a>
|
|
173
189
|
|
|
@@ -253,6 +269,31 @@ Optionally, you can install `boto3-stubs` to `typings` directory.
|
|
|
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
|
|
@@ -296,6 +337,7 @@ from mypy_boto3_transfer.paginator import (
|
|
|
296
337
|
ListServersPaginator,
|
|
297
338
|
ListTagsForResourcePaginator,
|
|
298
339
|
ListUsersPaginator,
|
|
340
|
+
ListWebAppsPaginator,
|
|
299
341
|
ListWorkflowsPaginator,
|
|
300
342
|
)
|
|
301
343
|
|
|
@@ -320,6 +362,7 @@ list_tags_for_resource_paginator: ListTagsForResourcePaginator = client.get_pagi
|
|
|
320
362
|
"list_tags_for_resource"
|
|
321
363
|
)
|
|
322
364
|
list_users_paginator: ListUsersPaginator = client.get_paginator("list_users")
|
|
365
|
+
list_web_apps_paginator: ListWebAppsPaginator = client.get_paginator("list_web_apps")
|
|
323
366
|
list_workflows_paginator: ListWorkflowsPaginator = client.get_paginator("list_workflows")
|
|
324
367
|
```
|
|
325
368
|
|
|
@@ -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=AvWuoEe_VwUG2Lc_jlU8-JhQR8HS-yDYIL5k9IgbNWU,3103
|
|
2
|
-
mypy_boto3_transfer/__init__.pyi,sha256=fX2mOqotaUXo09O-TT5OA4YDDhbGs0p-_NDBY5-ORFQ,3102
|
|
3
|
-
mypy_boto3_transfer/__main__.py,sha256=CspYJE2EjnB7fp0Nlo38_cuOzdYacBcsi_6HAf571NQ,922
|
|
4
|
-
mypy_boto3_transfer/client.py,sha256=ygGqsUuGyFkSOAgvTUPmpfBpBsB8jwP-bmzZIlrcgd4,47755
|
|
5
|
-
mypy_boto3_transfer/client.pyi,sha256=W3O_mDrh8QoApmtvs6_-cHPmogPn_SQgLth0wp2DBsE,47751
|
|
6
|
-
mypy_boto3_transfer/literals.py,sha256=6jeQHRoUQVkq3PtFsKIW2e-nDDFNd_TkgTUQXMhemU0,13724
|
|
7
|
-
mypy_boto3_transfer/literals.pyi,sha256=xJXEvwyQte6XFcZjqaXsrutr-5Ra4EiEI326V22LiYg,13722
|
|
8
|
-
mypy_boto3_transfer/paginator.py,sha256=KvQYaygeJw_5UZnj21uEVErb4OK6yXvZWF1ZwBPl4yI,14204
|
|
9
|
-
mypy_boto3_transfer/paginator.pyi,sha256=tNIrNjmNouFVlnqoO_-ubLh0KmMC1tY-zcu-hBbfaUc,14177
|
|
10
|
-
mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_transfer/type_defs.py,sha256=Zqs_ry3KGL7omtVq0SQNDkJ4_SY2mFpJKrpKWE7m5BI,56041
|
|
12
|
-
mypy_boto3_transfer/type_defs.pyi,sha256=rZV527V9lkBbf5m42bH307yphpwpWesrx0avr68UjHA,56040
|
|
13
|
-
mypy_boto3_transfer/version.py,sha256=rG265rzdrfkNUQZjcoWtWrVljK6BV6jPWFYv4ZHN4wc,62
|
|
14
|
-
mypy_boto3_transfer/waiter.py,sha256=eLTSOZdmX7TOE-DFCqMZz25-BL1oeKSIHUvJjD7Orb8,2474
|
|
15
|
-
mypy_boto3_transfer/waiter.pyi,sha256=hzqEg3leEE91u8U2H1aFlDD6vbP9n41BbQcFOd6UQ8U,2469
|
|
16
|
-
mypy_boto3_transfer-1.35.40.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
mypy_boto3_transfer-1.35.40.dist-info/METADATA,sha256=w4SISkw_iY1ulaAbbtRgBDlcd17nI2a5ql0PlWwSnlA,14796
|
|
18
|
-
mypy_boto3_transfer-1.35.40.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
19
|
-
mypy_boto3_transfer-1.35.40.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
-
mypy_boto3_transfer-1.35.40.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_transfer-1.35.40.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/top_level.txt
RENAMED
|
File without changes
|