mypy-boto3-dynamodb 1.35.0__py3-none-any.whl → 1.35.15__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_dynamodb/__init__.py +2 -0
- mypy_boto3_dynamodb/__main__.py +4 -4
- mypy_boto3_dynamodb/client.py +135 -341
- mypy_boto3_dynamodb/client.pyi +134 -341
- mypy_boto3_dynamodb/literals.py +4 -1
- mypy_boto3_dynamodb/literals.pyi +2 -1
- mypy_boto3_dynamodb/paginator.py +19 -55
- mypy_boto3_dynamodb/paginator.pyi +17 -60
- mypy_boto3_dynamodb/service_resource.py +31 -152
- mypy_boto3_dynamodb/service_resource.pyi +30 -153
- mypy_boto3_dynamodb/type_defs.py +32 -49
- mypy_boto3_dynamodb/type_defs.pyi +31 -49
- mypy_boto3_dynamodb/version.py +1 -1
- mypy_boto3_dynamodb/waiter.py +14 -3
- mypy_boto3_dynamodb/waiter.pyi +13 -5
- {mypy_boto3_dynamodb-1.35.0.dist-info → mypy_boto3_dynamodb-1.35.15.dist-info}/METADATA +7 -8
- mypy_boto3_dynamodb-1.35.15.dist-info/RECORD +22 -0
- {mypy_boto3_dynamodb-1.35.0.dist-info → mypy_boto3_dynamodb-1.35.15.dist-info}/WHEEL +1 -1
- mypy_boto3_dynamodb-1.35.0.dist-info/RECORD +0 -22
- {mypy_boto3_dynamodb-1.35.0.dist-info → mypy_boto3_dynamodb-1.35.15.dist-info}/LICENSE +0 -0
- {mypy_boto3_dynamodb-1.35.0.dist-info → mypy_boto3_dynamodb-1.35.15.dist-info}/top_level.txt +0 -0
mypy_boto3_dynamodb/waiter.py
CHANGED
|
@@ -22,9 +22,20 @@ Usage::
|
|
|
22
22
|
```
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
|
+
import sys
|
|
26
|
+
|
|
25
27
|
from botocore.waiter import Waiter
|
|
26
28
|
|
|
27
|
-
from .type_defs import
|
|
29
|
+
from .type_defs import (
|
|
30
|
+
DescribeTableInputTableExistsWaitTypeDef,
|
|
31
|
+
DescribeTableInputTableNotExistsWaitTypeDef,
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
if sys.version_info >= (3, 12):
|
|
35
|
+
from typing import Unpack
|
|
36
|
+
else:
|
|
37
|
+
from typing_extensions import Unpack
|
|
38
|
+
|
|
28
39
|
|
|
29
40
|
__all__ = ("TableExistsWaiter", "TableNotExistsWaiter")
|
|
30
41
|
|
|
@@ -35,7 +46,7 @@ class TableExistsWaiter(Waiter):
|
|
|
35
46
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#tableexistswaiter)
|
|
36
47
|
"""
|
|
37
48
|
|
|
38
|
-
def wait(self,
|
|
49
|
+
def wait(self, **kwargs: Unpack[DescribeTableInputTableExistsWaitTypeDef]) -> None:
|
|
39
50
|
"""
|
|
40
51
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Waiter.TableExists.wait)
|
|
41
52
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#tableexistswaiter)
|
|
@@ -48,7 +59,7 @@ class TableNotExistsWaiter(Waiter):
|
|
|
48
59
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#tablenotexistswaiter)
|
|
49
60
|
"""
|
|
50
61
|
|
|
51
|
-
def wait(self,
|
|
62
|
+
def wait(self, **kwargs: Unpack[DescribeTableInputTableNotExistsWaitTypeDef]) -> None:
|
|
52
63
|
"""
|
|
53
64
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Waiter.TableNotExists.wait)
|
|
54
65
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#tablenotexistswaiter)
|
mypy_boto3_dynamodb/waiter.pyi
CHANGED
|
@@ -22,9 +22,19 @@ Usage::
|
|
|
22
22
|
```
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
|
+
import sys
|
|
26
|
+
|
|
25
27
|
from botocore.waiter import Waiter
|
|
26
28
|
|
|
27
|
-
from .type_defs import
|
|
29
|
+
from .type_defs import (
|
|
30
|
+
DescribeTableInputTableExistsWaitTypeDef,
|
|
31
|
+
DescribeTableInputTableNotExistsWaitTypeDef,
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
if sys.version_info >= (3, 12):
|
|
35
|
+
from typing import Unpack
|
|
36
|
+
else:
|
|
37
|
+
from typing_extensions import Unpack
|
|
28
38
|
|
|
29
39
|
__all__ = ("TableExistsWaiter", "TableNotExistsWaiter")
|
|
30
40
|
|
|
@@ -33,8 +43,7 @@ class TableExistsWaiter(Waiter):
|
|
|
33
43
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Waiter.TableExists)
|
|
34
44
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#tableexistswaiter)
|
|
35
45
|
"""
|
|
36
|
-
|
|
37
|
-
def wait(self, *, TableName: str, WaiterConfig: WaiterConfigTypeDef = ...) -> None:
|
|
46
|
+
def wait(self, **kwargs: Unpack[DescribeTableInputTableExistsWaitTypeDef]) -> None:
|
|
38
47
|
"""
|
|
39
48
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Waiter.TableExists.wait)
|
|
40
49
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#tableexistswaiter)
|
|
@@ -45,8 +54,7 @@ class TableNotExistsWaiter(Waiter):
|
|
|
45
54
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Waiter.TableNotExists)
|
|
46
55
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#tablenotexistswaiter)
|
|
47
56
|
"""
|
|
48
|
-
|
|
49
|
-
def wait(self, *, TableName: str, WaiterConfig: WaiterConfigTypeDef = ...) -> None:
|
|
57
|
+
def wait(self, **kwargs: Unpack[DescribeTableInputTableNotExistsWaitTypeDef]) -> None:
|
|
50
58
|
"""
|
|
51
59
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Waiter.TableNotExists.wait)
|
|
52
60
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#tablenotexistswaiter)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-dynamodb
|
|
3
|
-
Version: 1.35.
|
|
4
|
-
Summary: Type annotations for boto3.DynamoDB 1.35.
|
|
3
|
+
Version: 1.35.15
|
|
4
|
+
Summary: Type annotations for boto3.DynamoDB 1.35.15 service generated with mypy-boto3-builder 8.0.1
|
|
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
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
|
43
43
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3.DynamoDB 1.35.
|
|
46
|
+
[boto3.DynamoDB 1.35.15](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB)
|
|
47
47
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,7 +52,7 @@ 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.0.1](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
|
|
@@ -261,7 +261,7 @@ should work.
|
|
|
261
261
|
- Install `boto3-stubs[dynamodb]` in your environment:
|
|
262
262
|
|
|
263
263
|
```bash
|
|
264
|
-
python -m pip install 'boto3-stubs[dynamodb]'
|
|
264
|
+
python -m pip install 'boto3-stubs[dynamodb]'
|
|
265
265
|
```
|
|
266
266
|
|
|
267
267
|
Type checking should now work. No explicit type annotations required, write
|
|
@@ -278,7 +278,7 @@ your `boto3` code as usual.
|
|
|
278
278
|
python -m pip install 'boto3-stubs[dynamodb]'
|
|
279
279
|
```
|
|
280
280
|
|
|
281
|
-
Optionally, you can install `boto3-stubs` to `typings`
|
|
281
|
+
Optionally, you can install `boto3-stubs` to `typings` directory.
|
|
282
282
|
|
|
283
283
|
Type checking should now work. No explicit type annotations required, write
|
|
284
284
|
your `boto3` code as usual.
|
|
@@ -461,8 +461,7 @@ updates. It delivers drop-in type annotations for you and makes sure that:
|
|
|
461
461
|
annotations extracted from `botocore` schemas.
|
|
462
462
|
- Type annotations include up-to-date documentation.
|
|
463
463
|
- Link to documentation is provided for every method.
|
|
464
|
-
- Code is processed by [
|
|
465
|
-
[isort](https://github.com/PyCQA/isort) for readability.
|
|
464
|
+
- Code is processed by [ruff](https://docs.astral.sh/ruff/) for readability.
|
|
466
465
|
|
|
467
466
|
<a id="what's-new"></a>
|
|
468
467
|
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
mypy_boto3_dynamodb/__init__.py,sha256=4MPLwUMrXggGSAuIregEB9OPgK5lS38eH4VLQTv3RMk,1859
|
|
2
|
+
mypy_boto3_dynamodb/__init__.pyi,sha256=GMdsocJat-pPuRXyCmJcizZ1LKMSLPgLD7SYG-zOa14,1857
|
|
3
|
+
mypy_boto3_dynamodb/__main__.py,sha256=5M4wGuEsoviVyXo8PyXblFN-87p4o6TeHIDtoKl24wg,922
|
|
4
|
+
mypy_boto3_dynamodb/client.py,sha256=iXlpT6EykCjJKkSp6MPR634E4our6txLDmopEwnfG4g,43797
|
|
5
|
+
mypy_boto3_dynamodb/client.pyi,sha256=I29cyPYKchASPHbcO1MFmjei4pVbi22zQvApx9Q10ug,43793
|
|
6
|
+
mypy_boto3_dynamodb/literals.py,sha256=u4Pu0KrWv6N8xgLhAJ2ieYMlUQezJ6s4E2yAF_tRwD8,14086
|
|
7
|
+
mypy_boto3_dynamodb/literals.pyi,sha256=qeJ9ZlBOaBKRh1Y2xtAl-3fWfAYdb8RcxXF5RGH_I2s,14084
|
|
8
|
+
mypy_boto3_dynamodb/paginator.py,sha256=nb7BjjbBxetyDEhSgh-zPEdO0Fth7vTvMW0Y-0iSxac,6000
|
|
9
|
+
mypy_boto3_dynamodb/paginator.pyi,sha256=u6iqBfPyMeuj7PE7gkqsMyCmjmPEwvSXAR_TPd1v_wY,5987
|
|
10
|
+
mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_dynamodb/service_resource.py,sha256=Zfr4ia6eSXzUUkw_eUn6Rh-n8Ndc3Eso7_vbHEx2BnI,17161
|
|
12
|
+
mypy_boto3_dynamodb/service_resource.pyi,sha256=P5JB2Aw2aNhU6B40TfqebMWMOjlAmYSlj4xSXQ_epd4,17154
|
|
13
|
+
mypy_boto3_dynamodb/type_defs.py,sha256=lR4FMsECLO5-LbCfp9y_7Zkx1GG0cCLSB-Cc1g-o_u0,102087
|
|
14
|
+
mypy_boto3_dynamodb/type_defs.pyi,sha256=keyqQ8BW3UkCQdycqk-ACB1cvS_QD6jUKvpKvaKvygU,102086
|
|
15
|
+
mypy_boto3_dynamodb/version.py,sha256=ZZ9l8BFJfmoBtHgiR-Z3PiPhnW57lw6BPaHOA3-QJYc,62
|
|
16
|
+
mypy_boto3_dynamodb/waiter.py,sha256=_uH-T4GRopvRbawdqtQqjOrJvwzPJwR_VJVaCk7xAeQ,2464
|
|
17
|
+
mypy_boto3_dynamodb/waiter.pyi,sha256=f2ClcbRIbbDzCu4v6kRyEPOaj9-V4woG3DdO9lMxGfk,2459
|
|
18
|
+
mypy_boto3_dynamodb-1.35.15.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
19
|
+
mypy_boto3_dynamodb-1.35.15.dist-info/METADATA,sha256=uTRY8lcp5wPDZ4BWYcREXC8e-3tfv81eVB2gMYknOkk,16221
|
|
20
|
+
mypy_boto3_dynamodb-1.35.15.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
|
21
|
+
mypy_boto3_dynamodb-1.35.15.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
|
|
22
|
+
mypy_boto3_dynamodb-1.35.15.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
mypy_boto3_dynamodb/__init__.py,sha256=GMdsocJat-pPuRXyCmJcizZ1LKMSLPgLD7SYG-zOa14,1857
|
|
2
|
-
mypy_boto3_dynamodb/__init__.pyi,sha256=GMdsocJat-pPuRXyCmJcizZ1LKMSLPgLD7SYG-zOa14,1857
|
|
3
|
-
mypy_boto3_dynamodb/__main__.py,sha256=oGhHgeIZg7W06WGV_s9uAlXdYHQ5IJtGDtzNkY_sZ9A,920
|
|
4
|
-
mypy_boto3_dynamodb/client.py,sha256=Nx_pVb5Bz1o9sqq6fpGQd6QbdXt_dh1oeQhMzDWtBYA,51861
|
|
5
|
-
mypy_boto3_dynamodb/client.pyi,sha256=M5tky67WNOIgytofCgna2llOYb6uxhbvSjasYxJ7qKE,51858
|
|
6
|
-
mypy_boto3_dynamodb/literals.py,sha256=8GC7C95c5QeYVL2_f1aIuwYy5YhQDgOouBGyOF3cryE,14067
|
|
7
|
-
mypy_boto3_dynamodb/literals.pyi,sha256=8GC7C95c5QeYVL2_f1aIuwYy5YhQDgOouBGyOF3cryE,14067
|
|
8
|
-
mypy_boto3_dynamodb/paginator.py,sha256=f03nXXsUgkQ2oMZ5VeDdUWhmHarJjo4UY4NWGdIBRwI,7480
|
|
9
|
-
mypy_boto3_dynamodb/paginator.pyi,sha256=CDR12_4ExFt03vv_k9BAT9k0aURoYX47BxplhcTfyWk,7474
|
|
10
|
-
mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_dynamodb/service_resource.py,sha256=P3UpRmlqejz3yQGlwH3CvjBo9U5tyn75ND7snAP5BhU,22664
|
|
12
|
-
mypy_boto3_dynamodb/service_resource.pyi,sha256=p6y-vFK_qHuYZ4VMozo918GaLvVYQ70UuHCFtbMCuXY,22659
|
|
13
|
-
mypy_boto3_dynamodb/type_defs.py,sha256=WOQB4EpaZpR3XqdWVXm0Dhwnm0tak2zf2V3JMpP7QYI,102827
|
|
14
|
-
mypy_boto3_dynamodb/type_defs.pyi,sha256=WOQB4EpaZpR3XqdWVXm0Dhwnm0tak2zf2V3JMpP7QYI,102827
|
|
15
|
-
mypy_boto3_dynamodb/version.py,sha256=LGeN8DOPs0tRcJcxZVxCtqSh0iyZT7lFggGF3KkSqhA,61
|
|
16
|
-
mypy_boto3_dynamodb/waiter.py,sha256=7xcR5DzbFgG6mwzPduSlv_EelwquNvRJRo7L8ye-ig4,2259
|
|
17
|
-
mypy_boto3_dynamodb/waiter.pyi,sha256=oRlb0atdfvM7XJBKZuoBxq-5JiGytB6bfjUzQcL5kY8,2257
|
|
18
|
-
mypy_boto3_dynamodb-1.35.0.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
19
|
-
mypy_boto3_dynamodb-1.35.0.dist-info/METADATA,sha256=oD_clISN6J3dVTkZgn9LcEiann9bVdkt9catu1w4O6A,16265
|
|
20
|
-
mypy_boto3_dynamodb-1.35.0.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
|
21
|
-
mypy_boto3_dynamodb-1.35.0.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
|
|
22
|
-
mypy_boto3_dynamodb-1.35.0.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_dynamodb-1.35.0.dist-info → mypy_boto3_dynamodb-1.35.15.dist-info}/top_level.txt
RENAMED
|
File without changes
|