mypy-boto3-dynamodb 1.35.74__py3-none-any.whl → 1.35.93__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 +7 -2
- mypy_boto3_dynamodb/__init__.pyi +6 -2
- mypy_boto3_dynamodb/__main__.py +9 -8
- mypy_boto3_dynamodb/client.py +40 -33
- mypy_boto3_dynamodb/client.pyi +40 -32
- mypy_boto3_dynamodb/literals.py +5 -2
- mypy_boto3_dynamodb/literals.pyi +5 -2
- mypy_boto3_dynamodb/paginator.py +58 -36
- mypy_boto3_dynamodb/paginator.pyi +54 -35
- mypy_boto3_dynamodb/service_resource.py +23 -17
- mypy_boto3_dynamodb/service_resource.pyi +23 -17
- mypy_boto3_dynamodb/type_defs.py +65 -68
- mypy_boto3_dynamodb/type_defs.pyi +61 -62
- mypy_boto3_dynamodb/version.py +2 -2
- mypy_boto3_dynamodb/waiter.py +11 -8
- mypy_boto3_dynamodb/waiter.pyi +11 -8
- {mypy_boto3_dynamodb-1.35.74.dist-info → mypy_boto3_dynamodb-1.35.93.dist-info}/LICENSE +1 -1
- {mypy_boto3_dynamodb-1.35.74.dist-info → mypy_boto3_dynamodb-1.35.93.dist-info}/METADATA +25 -12
- mypy_boto3_dynamodb-1.35.93.dist-info/RECORD +22 -0
- {mypy_boto3_dynamodb-1.35.74.dist-info → mypy_boto3_dynamodb-1.35.93.dist-info}/WHEEL +1 -1
- mypy_boto3_dynamodb-1.35.74.dist-info/RECORD +0 -22
- {mypy_boto3_dynamodb-1.35.74.dist-info → mypy_boto3_dynamodb-1.35.93.dist-info}/top_level.txt +0 -0
mypy_boto3_dynamodb/waiter.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
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
6
|
Usage::
|
|
7
7
|
|
|
@@ -21,17 +21,16 @@ Usage::
|
|
|
21
21
|
table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
Copyright
|
|
24
|
+
Copyright 2025 Vlad Emelianov
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
|
+
from __future__ import annotations
|
|
28
|
+
|
|
27
29
|
import sys
|
|
28
30
|
|
|
29
31
|
from botocore.waiter import Waiter
|
|
30
32
|
|
|
31
|
-
from .type_defs import
|
|
32
|
-
DescribeTableInputTableExistsWaitTypeDef,
|
|
33
|
-
DescribeTableInputTableNotExistsWaitTypeDef,
|
|
34
|
-
)
|
|
33
|
+
from .type_defs import DescribeTableInputWaitTypeDef
|
|
35
34
|
|
|
36
35
|
if sys.version_info >= (3, 12):
|
|
37
36
|
from typing import Unpack
|
|
@@ -48,7 +47,9 @@ class TableExistsWaiter(Waiter):
|
|
|
48
47
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#tableexistswaiter)
|
|
49
48
|
"""
|
|
50
49
|
|
|
51
|
-
def wait(
|
|
50
|
+
def wait( # type: ignore[override]
|
|
51
|
+
self, **kwargs: Unpack[DescribeTableInputWaitTypeDef]
|
|
52
|
+
) -> None:
|
|
52
53
|
"""
|
|
53
54
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/TableExists.html#DynamoDB.Waiter.TableExists.wait)
|
|
54
55
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#tableexistswaiter)
|
|
@@ -61,7 +62,9 @@ class TableNotExistsWaiter(Waiter):
|
|
|
61
62
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#tablenotexistswaiter)
|
|
62
63
|
"""
|
|
63
64
|
|
|
64
|
-
def wait(
|
|
65
|
+
def wait( # type: ignore[override]
|
|
66
|
+
self, **kwargs: Unpack[DescribeTableInputWaitTypeDef]
|
|
67
|
+
) -> None:
|
|
65
68
|
"""
|
|
66
69
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/TableNotExists.html#DynamoDB.Waiter.TableNotExists.wait)
|
|
67
70
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#tablenotexistswaiter)
|
mypy_boto3_dynamodb/waiter.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
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
6
|
Usage::
|
|
7
7
|
|
|
@@ -21,17 +21,16 @@ Usage::
|
|
|
21
21
|
table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
Copyright
|
|
24
|
+
Copyright 2025 Vlad Emelianov
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
|
+
from __future__ import annotations
|
|
28
|
+
|
|
27
29
|
import sys
|
|
28
30
|
|
|
29
31
|
from botocore.waiter import Waiter
|
|
30
32
|
|
|
31
|
-
from .type_defs import
|
|
32
|
-
DescribeTableInputTableExistsWaitTypeDef,
|
|
33
|
-
DescribeTableInputTableNotExistsWaitTypeDef,
|
|
34
|
-
)
|
|
33
|
+
from .type_defs import DescribeTableInputWaitTypeDef
|
|
35
34
|
|
|
36
35
|
if sys.version_info >= (3, 12):
|
|
37
36
|
from typing import Unpack
|
|
@@ -45,7 +44,9 @@ class TableExistsWaiter(Waiter):
|
|
|
45
44
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/TableExists.html#DynamoDB.Waiter.TableExists)
|
|
46
45
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#tableexistswaiter)
|
|
47
46
|
"""
|
|
48
|
-
def wait(
|
|
47
|
+
def wait( # type: ignore[override]
|
|
48
|
+
self, **kwargs: Unpack[DescribeTableInputWaitTypeDef]
|
|
49
|
+
) -> None:
|
|
49
50
|
"""
|
|
50
51
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/TableExists.html#DynamoDB.Waiter.TableExists.wait)
|
|
51
52
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#tableexistswaiter)
|
|
@@ -56,7 +57,9 @@ class TableNotExistsWaiter(Waiter):
|
|
|
56
57
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/TableNotExists.html#DynamoDB.Waiter.TableNotExists)
|
|
57
58
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#tablenotexistswaiter)
|
|
58
59
|
"""
|
|
59
|
-
def wait(
|
|
60
|
+
def wait( # type: ignore[override]
|
|
61
|
+
self, **kwargs: Unpack[DescribeTableInputWaitTypeDef]
|
|
62
|
+
) -> None:
|
|
60
63
|
"""
|
|
61
64
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/TableNotExists.html#DynamoDB.Waiter.TableNotExists.wait)
|
|
62
65
|
[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.93
|
|
4
|
+
Summary: Type annotations for boto3 DynamoDB 1.35.93 service generated with mypy-boto3-builder 8.8.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
|
|
@@ -30,7 +30,7 @@ Classifier: Typing :: Stubs Only
|
|
|
30
30
|
Requires-Python: >=3.8
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
32
|
License-File: LICENSE
|
|
33
|
-
Requires-Dist: typing-extensions
|
|
33
|
+
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
34
34
|
|
|
35
35
|
<a id="mypy-boto3-dynamodb"></a>
|
|
36
36
|
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
|
43
43
|
|
|
44
44
|

|
|
45
45
|
|
|
46
|
-
Type annotations for [boto3 DynamoDB 1.35.
|
|
46
|
+
Type annotations for [boto3 DynamoDB 1.35.93](https://pypi.org/project/boto3/)
|
|
47
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/),
|
|
@@ -51,8 +51,8 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
51
51
|
[mypy](https://github.com/python/mypy),
|
|
52
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
53
|
|
|
54
|
-
Generated
|
|
55
|
-
[mypy-boto3-builder 8.
|
|
54
|
+
Generated with
|
|
55
|
+
[mypy-boto3-builder 8.8.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
|
|
@@ -64,6 +64,7 @@ See how it helps you find and fix potential bugs:
|
|
|
64
64
|
|
|
65
65
|
- [mypy-boto3-dynamodb](#mypy-boto3-dynamodb)
|
|
66
66
|
- [How to install](#how-to-install)
|
|
67
|
+
- [Generate locally (recommended)](<#generate-locally-(recommended)>)
|
|
67
68
|
- [VSCode extension](#vscode-extension)
|
|
68
69
|
- [From PyPI with pip](#from-pypi-with-pip)
|
|
69
70
|
- [From conda-forge](#from-conda-forge)
|
|
@@ -99,6 +100,21 @@ See how it helps you find and fix potential bugs:
|
|
|
99
100
|
|
|
100
101
|
## How to install
|
|
101
102
|
|
|
103
|
+
<a id="generate-locally-(recommended)"></a>
|
|
104
|
+
|
|
105
|
+
### Generate locally (recommended)
|
|
106
|
+
|
|
107
|
+
You can generate type annotations for `boto3` package locally with
|
|
108
|
+
`mypy_boto3_builder`. Use
|
|
109
|
+
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
110
|
+
isolation.
|
|
111
|
+
|
|
112
|
+
1. Run mypy-boto3-builder in your package root directory:
|
|
113
|
+
`uvx --with 'boto3==1.35.93' mypy_boto3_builder`
|
|
114
|
+
2. Select `boto3-stubs` AWS SDK.
|
|
115
|
+
3. Add `DynamoDB` service.
|
|
116
|
+
4. Use provided commands to install generated packages.
|
|
117
|
+
|
|
102
118
|
<a id="vscode-extension"></a>
|
|
103
119
|
|
|
104
120
|
### VSCode extension
|
|
@@ -119,12 +135,10 @@ Install `boto3-stubs` for `DynamoDB` service.
|
|
|
119
135
|
# install with boto3 type annotations
|
|
120
136
|
python -m pip install 'boto3-stubs[dynamodb]'
|
|
121
137
|
|
|
122
|
-
|
|
123
138
|
# Lite version does not provide session.client/resource overloads
|
|
124
139
|
# it is more RAM-friendly, but requires explicit type annotations
|
|
125
140
|
python -m pip install 'boto3-stubs-lite[dynamodb]'
|
|
126
141
|
|
|
127
|
-
|
|
128
142
|
# standalone installation
|
|
129
143
|
python -m pip install mypy-boto3-dynamodb
|
|
130
144
|
```
|
|
@@ -133,8 +147,7 @@ python -m pip install mypy-boto3-dynamodb
|
|
|
133
147
|
|
|
134
148
|
### From conda-forge
|
|
135
149
|
|
|
136
|
-
|
|
137
|
-
by adding `conda-forge` to your channels with:
|
|
150
|
+
Add `conda-forge` to your channels with:
|
|
138
151
|
|
|
139
152
|
```bash
|
|
140
153
|
conda config --add channels conda-forge
|
|
@@ -148,8 +161,8 @@ installed with:
|
|
|
148
161
|
conda install mypy-boto3-dynamodb
|
|
149
162
|
```
|
|
150
163
|
|
|
151
|
-
|
|
152
|
-
|
|
164
|
+
List all available versions of `mypy-boto3-dynamodb` available on your platform
|
|
165
|
+
with:
|
|
153
166
|
|
|
154
167
|
```bash
|
|
155
168
|
conda search mypy-boto3-dynamodb --channel conda-forge
|
|
@@ -0,0 +1,22 @@
|
|
|
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=KMvF9nyDPS-ovgZV-gpxPL85Tqpyb0Hqz4IHzIXe3QA,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=alWG4uRBiwwjemBVd9mf4FMxmuC_58JsZJbgccbGfCs,14651
|
|
7
|
+
mypy_boto3_dynamodb/literals.pyi,sha256=aXnTJPEf0m4gztQO_uF2_KhoKTlmJakLmEbDngXud-M,14649
|
|
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=YI2wh2CFjfzPZr5vS-vMTTyPL1dJnF65QXGMQDeLRJ4,84814
|
|
14
|
+
mypy_boto3_dynamodb/type_defs.pyi,sha256=Eb75Za6zFEDqgxci7MsQLA7Q_5eVXzzBjHGf9evQWmA,84538
|
|
15
|
+
mypy_boto3_dynamodb/version.py,sha256=n6wyMBvI3Tp0INYol4fUJ84y0BqM9ti-SkLRGfsif5s,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.93.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
19
|
+
mypy_boto3_dynamodb-1.35.93.dist-info/METADATA,sha256=TqebEW26Xh7LZcqpFq_ulWAvbcOfTHbGVm8VCM3TzI4,17998
|
|
20
|
+
mypy_boto3_dynamodb-1.35.93.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
21
|
+
mypy_boto3_dynamodb-1.35.93.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
|
|
22
|
+
mypy_boto3_dynamodb-1.35.93.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
mypy_boto3_dynamodb/__init__.py,sha256=IqnRdOxcPeGY5qqD4SnClnlWbQAhQaxI02l1_a5aYIo,1890
|
|
2
|
-
mypy_boto3_dynamodb/__init__.pyi,sha256=VuTYb1W4C1rI4Cqkx0Drv6XkC6jcZE5Av3LYL1k8b_8,1888
|
|
3
|
-
mypy_boto3_dynamodb/__main__.py,sha256=x2ag6CC4GrWgQRAS0QYAW2Ti_aGhkLKjzRBzUCj0rAs,953
|
|
4
|
-
mypy_boto3_dynamodb/client.py,sha256=9l75nk3NK7ajNbC1xiCNXsLa7udXBIwZeXkCRDWVmUo,43310
|
|
5
|
-
mypy_boto3_dynamodb/client.pyi,sha256=ukGX7famNeTHLaJq7gUAuKd72Ml4KvhF-WhUXQGYV-4,43306
|
|
6
|
-
mypy_boto3_dynamodb/literals.py,sha256=kTdzBeMi7Dpu3OAdXauWzL9F-VNI0vz04m-_cfx-QqU,14566
|
|
7
|
-
mypy_boto3_dynamodb/literals.pyi,sha256=sa-C_XcYnDIa3WzB5sIdEaOmTRuuHI1HIgU7TUeoH94,14564
|
|
8
|
-
mypy_boto3_dynamodb/paginator.py,sha256=O7_UAmY9FWsB66j5mti4FfgIvVbfI2LwBNOscQp5qEQ,6237
|
|
9
|
-
mypy_boto3_dynamodb/paginator.pyi,sha256=KjfAmkVhz4BFdeKCT69-XcJym_USyLXjU5v-vS0UCl8,6224
|
|
10
|
-
mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_dynamodb/service_resource.py,sha256=PjFEuG5LNWz9dfnD3J6Ue8yOBjQi97cehT57qq7b-Go,17037
|
|
12
|
-
mypy_boto3_dynamodb/service_resource.pyi,sha256=dmxqVeq0vX8S810IzszgWx0qNCQ0objNQtTbtFt_mb8,17030
|
|
13
|
-
mypy_boto3_dynamodb/type_defs.py,sha256=JoRqelRS1fQA3SMkdYv0EgYL-9d4rbAb1wx2g45mYO0,85023
|
|
14
|
-
mypy_boto3_dynamodb/type_defs.pyi,sha256=r8vvFtBsNIbamcMTTzeIZsUE_qLIamvim7PHUmmuG1o,84745
|
|
15
|
-
mypy_boto3_dynamodb/version.py,sha256=B0P5JUO-cREkwttMqs7oU9i3UOmgK6CWkZC0OK5p5h4,93
|
|
16
|
-
mypy_boto3_dynamodb/waiter.py,sha256=NxDbjw649ZmSxYPf6C52CJ2hmvZ_rlmawBlDCmrfr_0,2577
|
|
17
|
-
mypy_boto3_dynamodb/waiter.pyi,sha256=wHZrge9wvMSUHIBlzU1FTUPdCjJ-9aYDo-q-rRjsIcw,2572
|
|
18
|
-
mypy_boto3_dynamodb-1.35.74.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
19
|
-
mypy_boto3_dynamodb-1.35.74.dist-info/METADATA,sha256=CMhyK7irgwJWheHudiEGSw_Aj0fBD-A6tGRD-n7BxO4,17547
|
|
20
|
-
mypy_boto3_dynamodb-1.35.74.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
21
|
-
mypy_boto3_dynamodb-1.35.74.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
|
|
22
|
-
mypy_boto3_dynamodb-1.35.74.dist-info/RECORD,,
|
{mypy_boto3_dynamodb-1.35.74.dist-info → mypy_boto3_dynamodb-1.35.93.dist-info}/top_level.txt
RENAMED
|
File without changes
|