mypy-boto3-dynamodb 1.35.94__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 +4 -3
- mypy_boto3_dynamodb/literals.pyi +4 -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.35.94.dist-info → mypy_boto3_dynamodb-1.37.0.dist-info}/METADATA +25 -9
- mypy_boto3_dynamodb-1.37.0.dist-info/RECORD +22 -0
- {mypy_boto3_dynamodb-1.35.94.dist-info → mypy_boto3_dynamodb-1.37.0.dist-info}/WHEEL +1 -1
- mypy_boto3_dynamodb-1.35.94.dist-info/RECORD +0 -22
- {mypy_boto3_dynamodb-1.35.94.dist-info → mypy_boto3_dynamodb-1.37.0.dist-info}/LICENSE +0 -0
- {mypy_boto3_dynamodb-1.35.94.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
|
-
Metadata-Version: 2.
|
|
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
|
|
@@ -31,6 +31,18 @@ Requires-Python: >=3.8
|
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
32
|
License-File: LICENSE
|
|
33
33
|
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
34
|
+
Dynamic: author
|
|
35
|
+
Dynamic: author-email
|
|
36
|
+
Dynamic: classifier
|
|
37
|
+
Dynamic: description
|
|
38
|
+
Dynamic: description-content-type
|
|
39
|
+
Dynamic: home-page
|
|
40
|
+
Dynamic: keywords
|
|
41
|
+
Dynamic: license
|
|
42
|
+
Dynamic: project-url
|
|
43
|
+
Dynamic: requires-dist
|
|
44
|
+
Dynamic: requires-python
|
|
45
|
+
Dynamic: summary
|
|
34
46
|
|
|
35
47
|
<a id="mypy-boto3-dynamodb"></a>
|
|
36
48
|
|
|
@@ -43,7 +55,7 @@ Requires-Dist: typing-extensions; python_version < "3.12"
|
|
|
43
55
|
|
|
44
56
|

|
|
45
57
|
|
|
46
|
-
Type annotations for [boto3 DynamoDB 1.
|
|
58
|
+
Type annotations for [boto3 DynamoDB 1.37.0](https://pypi.org/project/boto3/)
|
|
47
59
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
60
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
61
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,7 +64,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
64
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
65
|
|
|
54
66
|
Generated with
|
|
55
|
-
[mypy-boto3-builder 8.
|
|
67
|
+
[mypy-boto3-builder 8.9.2](https://github.com/youtype/mypy_boto3_builder).
|
|
56
68
|
|
|
57
69
|
More information can be found on
|
|
58
70
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -105,12 +117,12 @@ See how it helps you find and fix potential bugs:
|
|
|
105
117
|
### Generate locally (recommended)
|
|
106
118
|
|
|
107
119
|
You can generate type annotations for `boto3` package locally with
|
|
108
|
-
`
|
|
120
|
+
`mypy-boto3-builder`. Use
|
|
109
121
|
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
110
122
|
isolation.
|
|
111
123
|
|
|
112
124
|
1. Run mypy-boto3-builder in your package root directory:
|
|
113
|
-
`uvx --with 'boto3==1.
|
|
125
|
+
`uvx --with 'boto3==1.37.0' mypy-boto3-builder`
|
|
114
126
|
2. Select `boto3-stubs` AWS SDK.
|
|
115
127
|
3. Add `DynamoDB` service.
|
|
116
128
|
4. Use provided commands to install generated packages.
|
|
@@ -494,11 +506,14 @@ Full list of `DynamoDB` TypeDefs can be found in
|
|
|
494
506
|
[docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/type_defs/).
|
|
495
507
|
|
|
496
508
|
```python
|
|
509
|
+
# TypedDict usage example
|
|
497
510
|
from mypy_boto3_dynamodb.type_defs import ArchivalSummaryTypeDef
|
|
498
511
|
|
|
499
512
|
|
|
500
513
|
def get_value() -> ArchivalSummaryTypeDef:
|
|
501
|
-
return {
|
|
514
|
+
return {
|
|
515
|
+
"ArchivalDateTime": ...,
|
|
516
|
+
}
|
|
502
517
|
```
|
|
503
518
|
|
|
504
519
|
<a id="how-it-works"></a>
|
|
@@ -552,7 +567,8 @@ Builder changelog can be found in
|
|
|
552
567
|
## Versioning
|
|
553
568
|
|
|
554
569
|
`mypy-boto3-dynamodb` version is the same as related `boto3` version and
|
|
555
|
-
follows
|
|
570
|
+
follows
|
|
571
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
556
572
|
|
|
557
573
|
<a id="thank-you"></a>
|
|
558
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=FWAoeXYjYNY-FtHHILG97eRx8shrhhJfX-65eVuB0rI,987
|
|
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=vmqbzU5R1mMM7_Ab1HSDywoQFfxOVgTp73bJCYXozYg,14600
|
|
7
|
-
mypy_boto3_dynamodb/literals.pyi,sha256=9kdgltOgmW23vhE5D_EkkCQEHoEHtrk_ENtzc5JL6LI,14598
|
|
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=51-Y0U0aeICuPF2V-J1NITWfvlVuMyomIJ2FNB4BS0c,93
|
|
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.35.94.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
19
|
-
mypy_boto3_dynamodb-1.35.94.dist-info/METADATA,sha256=FsPskWgoL8GLPCPRxHH-IEXK0RQdHYPBa8MLZICBFxA,17998
|
|
20
|
-
mypy_boto3_dynamodb-1.35.94.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
21
|
-
mypy_boto3_dynamodb-1.35.94.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
|
|
22
|
-
mypy_boto3_dynamodb-1.35.94.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_dynamodb-1.35.94.dist-info → mypy_boto3_dynamodb-1.37.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|