mypy-boto3-dynamodb 1.36.0__py3-none-any.whl → 1.37.0__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 +4 -2
- mypy_boto3_dynamodb/__init__.pyi +4 -2
- mypy_boto3_dynamodb/__main__.py +4 -4
- mypy_boto3_dynamodb/client.py +110 -129
- mypy_boto3_dynamodb/client.pyi +110 -129
- mypy_boto3_dynamodb/literals.py +2 -3
- mypy_boto3_dynamodb/literals.pyi +2 -3
- mypy_boto3_dynamodb/paginator.py +2 -2
- mypy_boto3_dynamodb/paginator.pyi +2 -2
- mypy_boto3_dynamodb/service_resource.py +2 -2
- mypy_boto3_dynamodb/service_resource.pyi +2 -2
- mypy_boto3_dynamodb/type_defs.py +219 -194
- mypy_boto3_dynamodb/type_defs.pyi +211 -188
- mypy_boto3_dynamodb/version.py +1 -1
- mypy_boto3_dynamodb/waiter.py +4 -4
- mypy_boto3_dynamodb/waiter.pyi +4 -4
- {mypy_boto3_dynamodb-1.36.0.dist-info → mypy_boto3_dynamodb-1.37.0.dist-info}/METADATA +12 -8
- mypy_boto3_dynamodb-1.37.0.dist-info/RECORD +22 -0
- mypy_boto3_dynamodb-1.36.0.dist-info/RECORD +0 -22
- {mypy_boto3_dynamodb-1.36.0.dist-info → mypy_boto3_dynamodb-1.37.0.dist-info}/LICENSE +0 -0
- {mypy_boto3_dynamodb-1.36.0.dist-info → mypy_boto3_dynamodb-1.37.0.dist-info}/WHEEL +0 -0
- {mypy_boto3_dynamodb-1.36.0.dist-info → mypy_boto3_dynamodb-1.37.0.dist-info}/top_level.txt +0 -0
mypy_boto3_dynamodb/version.py
CHANGED
mypy_boto3_dynamodb/waiter.py
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for dynamodb service client waiters.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -20,8 +22,6 @@ Usage::
|
|
|
20
22
|
table_exists_waiter: TableExistsWaiter = client.get_waiter("table_exists")
|
|
21
23
|
table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
|
|
22
24
|
```
|
|
23
|
-
|
|
24
|
-
Copyright 2025 Vlad Emelianov
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
from __future__ import annotations
|
|
@@ -30,7 +30,7 @@ import sys
|
|
|
30
30
|
|
|
31
31
|
from botocore.waiter import Waiter
|
|
32
32
|
|
|
33
|
-
from .type_defs import DescribeTableInputWaitTypeDef
|
|
33
|
+
from .type_defs import DescribeTableInputWaitExtraTypeDef, DescribeTableInputWaitTypeDef
|
|
34
34
|
|
|
35
35
|
if sys.version_info >= (3, 12):
|
|
36
36
|
from typing import Unpack
|
|
@@ -63,7 +63,7 @@ class TableNotExistsWaiter(Waiter):
|
|
|
63
63
|
"""
|
|
64
64
|
|
|
65
65
|
def wait( # type: ignore[override]
|
|
66
|
-
self, **kwargs: Unpack[
|
|
66
|
+
self, **kwargs: Unpack[DescribeTableInputWaitExtraTypeDef]
|
|
67
67
|
) -> None:
|
|
68
68
|
"""
|
|
69
69
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/TableNotExists.html#DynamoDB.Waiter.TableNotExists.wait)
|
mypy_boto3_dynamodb/waiter.pyi
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for dynamodb service client waiters.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -20,8 +22,6 @@ Usage::
|
|
|
20
22
|
table_exists_waiter: TableExistsWaiter = client.get_waiter("table_exists")
|
|
21
23
|
table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
|
|
22
24
|
```
|
|
23
|
-
|
|
24
|
-
Copyright 2025 Vlad Emelianov
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
from __future__ import annotations
|
|
@@ -30,7 +30,7 @@ import sys
|
|
|
30
30
|
|
|
31
31
|
from botocore.waiter import Waiter
|
|
32
32
|
|
|
33
|
-
from .type_defs import DescribeTableInputWaitTypeDef
|
|
33
|
+
from .type_defs import DescribeTableInputWaitExtraTypeDef, DescribeTableInputWaitTypeDef
|
|
34
34
|
|
|
35
35
|
if sys.version_info >= (3, 12):
|
|
36
36
|
from typing import Unpack
|
|
@@ -58,7 +58,7 @@ class TableNotExistsWaiter(Waiter):
|
|
|
58
58
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#tablenotexistswaiter)
|
|
59
59
|
"""
|
|
60
60
|
def wait( # type: ignore[override]
|
|
61
|
-
self, **kwargs: Unpack[
|
|
61
|
+
self, **kwargs: Unpack[DescribeTableInputWaitExtraTypeDef]
|
|
62
62
|
) -> None:
|
|
63
63
|
"""
|
|
64
64
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/TableNotExists.html#DynamoDB.Waiter.TableNotExists.wait)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: mypy-boto3-dynamodb
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 DynamoDB 1.
|
|
3
|
+
Version: 1.37.0
|
|
4
|
+
Summary: Type annotations for boto3 DynamoDB 1.37.0 service generated with mypy-boto3-builder 8.9.2
|
|
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
|
|
@@ -55,7 +55,7 @@ Dynamic: summary
|
|
|
55
55
|
|
|
56
56
|

|
|
57
57
|
|
|
58
|
-
Type annotations for [boto3 DynamoDB 1.
|
|
58
|
+
Type annotations for [boto3 DynamoDB 1.37.0](https://pypi.org/project/boto3/)
|
|
59
59
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
60
60
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
61
61
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -64,7 +64,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
64
64
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
65
65
|
|
|
66
66
|
Generated with
|
|
67
|
-
[mypy-boto3-builder 8.
|
|
67
|
+
[mypy-boto3-builder 8.9.2](https://github.com/youtype/mypy_boto3_builder).
|
|
68
68
|
|
|
69
69
|
More information can be found on
|
|
70
70
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -117,12 +117,12 @@ See how it helps you find and fix potential bugs:
|
|
|
117
117
|
### Generate locally (recommended)
|
|
118
118
|
|
|
119
119
|
You can generate type annotations for `boto3` package locally with
|
|
120
|
-
`
|
|
120
|
+
`mypy-boto3-builder`. Use
|
|
121
121
|
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
122
122
|
isolation.
|
|
123
123
|
|
|
124
124
|
1. Run mypy-boto3-builder in your package root directory:
|
|
125
|
-
`uvx --with 'boto3==1.
|
|
125
|
+
`uvx --with 'boto3==1.37.0' mypy-boto3-builder`
|
|
126
126
|
2. Select `boto3-stubs` AWS SDK.
|
|
127
127
|
3. Add `DynamoDB` service.
|
|
128
128
|
4. Use provided commands to install generated packages.
|
|
@@ -506,11 +506,14 @@ Full list of `DynamoDB` TypeDefs can be found in
|
|
|
506
506
|
[docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/type_defs/).
|
|
507
507
|
|
|
508
508
|
```python
|
|
509
|
+
# TypedDict usage example
|
|
509
510
|
from mypy_boto3_dynamodb.type_defs import ArchivalSummaryTypeDef
|
|
510
511
|
|
|
511
512
|
|
|
512
513
|
def get_value() -> ArchivalSummaryTypeDef:
|
|
513
|
-
return {
|
|
514
|
+
return {
|
|
515
|
+
"ArchivalDateTime": ...,
|
|
516
|
+
}
|
|
514
517
|
```
|
|
515
518
|
|
|
516
519
|
<a id="how-it-works"></a>
|
|
@@ -564,7 +567,8 @@ Builder changelog can be found in
|
|
|
564
567
|
## Versioning
|
|
565
568
|
|
|
566
569
|
`mypy-boto3-dynamodb` version is the same as related `boto3` version and
|
|
567
|
-
follows
|
|
570
|
+
follows
|
|
571
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
568
572
|
|
|
569
573
|
<a id="thank-you"></a>
|
|
570
574
|
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
mypy_boto3_dynamodb/__init__.py,sha256=RtWLr5qHbk9BDBzkz4SQ4olA-twsDIcWdSPYar5JGCM,2090
|
|
2
|
+
mypy_boto3_dynamodb/__init__.pyi,sha256=g7AAZHZ2jejV34Cf-vht4Iz_YVHPjlQNfeiptjrAFB4,2087
|
|
3
|
+
mypy_boto3_dynamodb/__main__.py,sha256=tCULFfLWfA89TMnY98kXei-Bu933jEvqIPIa5yegACo,984
|
|
4
|
+
mypy_boto3_dynamodb/client.py,sha256=jYVQsaUQ9RhNYjHxpVnWTBZa5f4pAMLEgZFfAkwS8sw,42687
|
|
5
|
+
mypy_boto3_dynamodb/client.pyi,sha256=GhT9kU_hxp7dOT2bmki1mG7fLsqscEPi2T_3usJJ0ow,42684
|
|
6
|
+
mypy_boto3_dynamodb/literals.py,sha256=x6paFrK-p_vPED8IxoK281Ig8TxEZFXsE6zRHXniFks,14617
|
|
7
|
+
mypy_boto3_dynamodb/literals.pyi,sha256=NHlgOwxTW0uA9FXEGhQrr6UEt1n5clrRhX3h0RqytyE,14615
|
|
8
|
+
mypy_boto3_dynamodb/paginator.py,sha256=wuU1KYjaAximTUXHtfrHMKeVdgtC7Wuro8wmfUcWCrs,6929
|
|
9
|
+
mypy_boto3_dynamodb/paginator.pyi,sha256=eQf1IutnaUroIW-LxJYHKEc0sr8l7ulkXagsNGQMgh4,6913
|
|
10
|
+
mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_dynamodb/service_resource.py,sha256=A9FZR-ihwidUgb4k3SvCWbJkmCmBGMf6uNgBaSg49E4,17233
|
|
12
|
+
mypy_boto3_dynamodb/service_resource.pyi,sha256=k3ENbKZOLIBejZj4c5YhHyGozmdmULi0zST7b8awVgc,17226
|
|
13
|
+
mypy_boto3_dynamodb/type_defs.py,sha256=dtMjCO5FV05v8wySpcVfeW0cIziyx0n3fiy8YVpBfv0,85127
|
|
14
|
+
mypy_boto3_dynamodb/type_defs.pyi,sha256=y_DToSE8qx7StIiLVzJ03HuZWVPkEhiv8vzDdjeZyxQ,84849
|
|
15
|
+
mypy_boto3_dynamodb/version.py,sha256=7dplwNyKC_M1NmYn8gNT0u-MAPuLyVgQc5Z98LiK1wM,92
|
|
16
|
+
mypy_boto3_dynamodb/waiter.py,sha256=7FIuQ_7AG60CPUrBwavSVzLkAEAvP4slPOOqVNmxIYE,2635
|
|
17
|
+
mypy_boto3_dynamodb/waiter.pyi,sha256=13JrmDc8WtWAQ1yOd82vd_nu4B2q6hRj1yex7Fiar1k,2630
|
|
18
|
+
mypy_boto3_dynamodb-1.37.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
19
|
+
mypy_boto3_dynamodb-1.37.0.dist-info/METADATA,sha256=I_IkkRQPbl0FfjRj0x1SFDBeAY3bKD1oAmfsG6QB3mE,18361
|
|
20
|
+
mypy_boto3_dynamodb-1.37.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
21
|
+
mypy_boto3_dynamodb-1.37.0.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
|
|
22
|
+
mypy_boto3_dynamodb-1.37.0.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
mypy_boto3_dynamodb/__init__.py,sha256=wI1CcdBYTVc0TrBU9JBlhaxZ22tw43EHGJhn3RibOSs,2008
|
|
2
|
-
mypy_boto3_dynamodb/__init__.pyi,sha256=N-7NsIihxnhtuNrVxIRB4A3cL8iNWkO_zmly0PlGe74,2005
|
|
3
|
-
mypy_boto3_dynamodb/__main__.py,sha256=EhfNsbXvfc4sOLK5NtC1ZD1KD15xpQU-KE-wx05Iijs,984
|
|
4
|
-
mypy_boto3_dynamodb/client.py,sha256=g3xD6uXNzezxHHWvMKkHiRAzzu4kuqcSMBj6itO7vVY,43531
|
|
5
|
-
mypy_boto3_dynamodb/client.pyi,sha256=C3jys5g8bCuJFCTDJP1Sf-TmkfW65cY0Moo_v0xQRnQ,43528
|
|
6
|
-
mypy_boto3_dynamodb/literals.py,sha256=L-F444Ojro6Kf8BIUVCFHq1NcBvKHPJp8Cn4RNhs7RI,14642
|
|
7
|
-
mypy_boto3_dynamodb/literals.pyi,sha256=OCMXe6mv925VasnSnfhGRaBXaEntsbZyYdPAXm8YI1A,14640
|
|
8
|
-
mypy_boto3_dynamodb/paginator.py,sha256=7mBPT4Ge7Dm4AbeKoTUV5oEPTmaRFExNragQDjmUFyo,6929
|
|
9
|
-
mypy_boto3_dynamodb/paginator.pyi,sha256=FTVg2RidIgqtlEA6cHkiUlkfbhkpXlPxv93QdTgay5c,6913
|
|
10
|
-
mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_dynamodb/service_resource.py,sha256=CwlT0HViUUsWenSGuixpKySMjzvXcdAMvS_jSp61ep4,17233
|
|
12
|
-
mypy_boto3_dynamodb/service_resource.pyi,sha256=X5JwZDhpmkwc6nNrM9Z_EH_J8ImcY-tM5CzFj-JfpPU,17226
|
|
13
|
-
mypy_boto3_dynamodb/type_defs.py,sha256=zwZnVkpDPiCphqKS-n2mpUI5pwNDzhk8FLpfUdzr5Dg,84900
|
|
14
|
-
mypy_boto3_dynamodb/type_defs.pyi,sha256=381BJe4TiKRE3cAYqFbqygyQ6sw8hFHto6UTJnYI44M,84624
|
|
15
|
-
mypy_boto3_dynamodb/version.py,sha256=XqBLww9Ajk9GRr5oc1Ak2757Fsir4zxoRCWswSKh8Ro,92
|
|
16
|
-
mypy_boto3_dynamodb/waiter.py,sha256=aySjWmZL8NAvKyGrO7O_IZZeRfaZoqsGLcd4U9aPzds,2594
|
|
17
|
-
mypy_boto3_dynamodb/waiter.pyi,sha256=02L_bTGty7eIHGy7XdVGMFYYnTiEOd4S5msAHVxh1tc,2589
|
|
18
|
-
mypy_boto3_dynamodb-1.36.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
19
|
-
mypy_boto3_dynamodb-1.36.0.dist-info/METADATA,sha256=NWf_9vhAHuMTfh8QfB1e7BjB2pxJtmFWWVMLnGkXOdI,18247
|
|
20
|
-
mypy_boto3_dynamodb-1.36.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
21
|
-
mypy_boto3_dynamodb-1.36.0.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
|
|
22
|
-
mypy_boto3_dynamodb-1.36.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|