types-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.
- types_boto3_dynamodb/__init__.py +7 -2
- types_boto3_dynamodb/__init__.pyi +6 -2
- types_boto3_dynamodb/__main__.py +9 -8
- types_boto3_dynamodb/client.py +40 -33
- types_boto3_dynamodb/client.pyi +40 -32
- types_boto3_dynamodb/literals.py +5 -2
- types_boto3_dynamodb/literals.pyi +5 -2
- types_boto3_dynamodb/paginator.py +58 -36
- types_boto3_dynamodb/paginator.pyi +54 -35
- types_boto3_dynamodb/service_resource.py +23 -17
- types_boto3_dynamodb/service_resource.pyi +23 -17
- types_boto3_dynamodb/type_defs.py +65 -68
- types_boto3_dynamodb/type_defs.pyi +61 -62
- types_boto3_dynamodb/version.py +2 -2
- types_boto3_dynamodb/waiter.py +11 -8
- types_boto3_dynamodb/waiter.pyi +11 -8
- {types_boto3_dynamodb-1.35.74.dist-info → types_boto3_dynamodb-1.35.93.dist-info}/LICENSE +1 -1
- {types_boto3_dynamodb-1.35.74.dist-info → types_boto3_dynamodb-1.35.93.dist-info}/METADATA +22 -8
- types_boto3_dynamodb-1.35.93.dist-info/RECORD +22 -0
- {types_boto3_dynamodb-1.35.74.dist-info → types_boto3_dynamodb-1.35.93.dist-info}/WHEEL +1 -1
- types_boto3_dynamodb-1.35.74.dist-info/RECORD +0 -22
- {types_boto3_dynamodb-1.35.74.dist-info → types_boto3_dynamodb-1.35.93.dist-info}/top_level.txt +0 -0
types_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/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/#tableexistswaiter)
|
|
@@ -61,7 +62,9 @@ class TableNotExistsWaiter(Waiter):
|
|
|
61
62
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/#tablenotexistswaiter)
|
types_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/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/#tablenotexistswaiter)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: types-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="types-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
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -64,6 +64,7 @@ See how it helps you find and fix potential bugs:
|
|
|
64
64
|
|
|
65
65
|
- [types-boto3-dynamodb](#types-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
|
- [How to uninstall](#how-to-uninstall)
|
|
@@ -98,6 +99,21 @@ See how it helps you find and fix potential bugs:
|
|
|
98
99
|
|
|
99
100
|
## How to install
|
|
100
101
|
|
|
102
|
+
<a id="generate-locally-(recommended)"></a>
|
|
103
|
+
|
|
104
|
+
### Generate locally (recommended)
|
|
105
|
+
|
|
106
|
+
You can generate type annotations for `boto3` package locally with
|
|
107
|
+
`mypy_boto3_builder`. Use
|
|
108
|
+
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
109
|
+
isolation.
|
|
110
|
+
|
|
111
|
+
1. Run mypy-boto3-builder in your package root directory:
|
|
112
|
+
`uvx --with 'boto3==1.35.93' mypy_boto3_builder`
|
|
113
|
+
2. Select `boto3` AWS SDK.
|
|
114
|
+
3. Add `DynamoDB` service.
|
|
115
|
+
4. Use provided commands to install generated packages.
|
|
116
|
+
|
|
101
117
|
<a id="vscode-extension"></a>
|
|
102
118
|
|
|
103
119
|
### VSCode extension
|
|
@@ -118,12 +134,10 @@ Install `types-boto3` for `DynamoDB` service.
|
|
|
118
134
|
# install with boto3 type annotations
|
|
119
135
|
python -m pip install 'types-boto3[dynamodb]'
|
|
120
136
|
|
|
121
|
-
|
|
122
137
|
# Lite version does not provide session.client/resource overloads
|
|
123
138
|
# it is more RAM-friendly, but requires explicit type annotations
|
|
124
139
|
python -m pip install 'types-boto3-lite[dynamodb]'
|
|
125
140
|
|
|
126
|
-
|
|
127
141
|
# standalone installation
|
|
128
142
|
python -m pip install types-boto3-dynamodb
|
|
129
143
|
```
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
types_boto3_dynamodb/__init__.py,sha256=0SRg0AlGCqbLn2XPRyU7PQ8xSRm_S4xdR-RF0YDw2v8,2009
|
|
2
|
+
types_boto3_dynamodb/__init__.pyi,sha256=yNdirDOtDdYpAQeT8MLF-7j9hnBdPO3pcwBuhz_3xCc,2006
|
|
3
|
+
types_boto3_dynamodb/__main__.py,sha256=52QWIYtkQUP2ZrstXuM57H-UxTbAUrSDgruAX2b-FKY,988
|
|
4
|
+
types_boto3_dynamodb/client.py,sha256=Ac6rm-XlGFO0Az1LDrwBAiT9R2C0N470H4NF2w6qu5I,43601
|
|
5
|
+
types_boto3_dynamodb/client.pyi,sha256=7DrstvdlU3MdSciXWNqUqun3zW0TvN7LvhbqgmHuCjA,43598
|
|
6
|
+
types_boto3_dynamodb/literals.py,sha256=mBZx8LXd5cv7t3IKyt3n0jq5kJvLBTjhEFUysToF8v0,14653
|
|
7
|
+
types_boto3_dynamodb/literals.pyi,sha256=YT6EmHzvPb8iCyTGEYfEcmBKdYYT2_gCBpluyffqT-0,14651
|
|
8
|
+
types_boto3_dynamodb/paginator.py,sha256=uo4S2wUf5biMAkfacXgyBlCqh3lVahWKjZmBqJXxxmU,6942
|
|
9
|
+
types_boto3_dynamodb/paginator.pyi,sha256=D9-7m1bOKaWXTrO7V-Ewj2BHS1YQK61Vk3ReIV_Al5A,6926
|
|
10
|
+
types_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_dynamodb/service_resource.py,sha256=9MzV99fxbMB1rCmk1bLs_nei0M3IaYFDTwZdwWMgH-o,17264
|
|
12
|
+
types_boto3_dynamodb/service_resource.pyi,sha256=KsCHiUJAm4YKNsK0L4Qd8AUXv1jFbjCKwVtX8vH2lmA,17257
|
|
13
|
+
types_boto3_dynamodb/type_defs.py,sha256=IZBh-jxffmAEkOZm1hqybM7uYhg9eFlHvFagKkdMcpQ,84816
|
|
14
|
+
types_boto3_dynamodb/type_defs.pyi,sha256=IkzZePAKrSgAyAFnsOZXVE4YCRd21bwmcByV1vm-HVY,84540
|
|
15
|
+
types_boto3_dynamodb/version.py,sha256=n6wyMBvI3Tp0INYol4fUJ84y0BqM9ti-SkLRGfsif5s,93
|
|
16
|
+
types_boto3_dynamodb/waiter.py,sha256=WS11PiL2etpgGdN5ZUfNnZk9iBtYAYnsHUILwNoVsw0,2601
|
|
17
|
+
types_boto3_dynamodb/waiter.pyi,sha256=HFT58z4iZ4WC-Zh9k5Ez-oulcykQmn60K1cBNqG11kk,2596
|
|
18
|
+
types_boto3_dynamodb-1.35.93.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
19
|
+
types_boto3_dynamodb-1.35.93.dist-info/METADATA,sha256=fko6V6H3fibVSLE7kMdKlfCWfvqf9q5y4IDP3sXhS38,17503
|
|
20
|
+
types_boto3_dynamodb-1.35.93.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
21
|
+
types_boto3_dynamodb-1.35.93.dist-info/top_level.txt,sha256=qetKI9-H-rMGIOB1IBzTvryBK-GlE9YjkQQwaB1GpB8,21
|
|
22
|
+
types_boto3_dynamodb-1.35.93.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
types_boto3_dynamodb/__init__.py,sha256=cxAM03dGq3WmH2lshOuhmrIxu2sx7hRkYr8c1cC6NC4,1891
|
|
2
|
-
types_boto3_dynamodb/__init__.pyi,sha256=0bLc7qg8xn1Q9IXOm46FNNKrCbFyBoLsySfz6i53J3k,1889
|
|
3
|
-
types_boto3_dynamodb/__main__.py,sha256=0ZHI_mV_Godp7eyhwsf0UAKvLDZY00cdMThXYFtocV8,954
|
|
4
|
-
types_boto3_dynamodb/client.py,sha256=O35cfWZmiTLarDKUcjdE7WbNYojZRrLP7lKJD-aUsjo,43381
|
|
5
|
-
types_boto3_dynamodb/client.pyi,sha256=YVfdbxyiyPpjGQyt5ZcmVynXI3QeV2LoXwndUMWOpqg,43377
|
|
6
|
-
types_boto3_dynamodb/literals.py,sha256=R42KbnA91pLmH8HP4BMCJApoIifMSKh7hRWuajD-MWE,14568
|
|
7
|
-
types_boto3_dynamodb/literals.pyi,sha256=gvb5IvMMgvKRs25TfvtJ--d-DxWKVxot_2jHB-DMdso,14566
|
|
8
|
-
types_boto3_dynamodb/paginator.py,sha256=tSmJSyrol6n8KYvxyUhyd1jRBBHhKJkY6BtzwJ92Th0,6250
|
|
9
|
-
types_boto3_dynamodb/paginator.pyi,sha256=4OZFjEVD0SMR9BWb9rQvL58K8B_DglaNt7X1MeCrOUA,6237
|
|
10
|
-
types_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_dynamodb/service_resource.py,sha256=LQOenjh2_LAp4ETJkFkV99NLGct7WlR7HJlH7aPruaA,17068
|
|
12
|
-
types_boto3_dynamodb/service_resource.pyi,sha256=VPf5Qos5SYBVF702sdHs-5SnHOnMZmsAOV7sfukD5FM,17061
|
|
13
|
-
types_boto3_dynamodb/type_defs.py,sha256=turhaTPjisLc654SAdOFLqsPio1PRPjBR3xIrccrAh4,85025
|
|
14
|
-
types_boto3_dynamodb/type_defs.pyi,sha256=FcyrCvOmYHGj_5kbRuZ2GRlkX7ZBqSaCKRElx9My1k0,84747
|
|
15
|
-
types_boto3_dynamodb/version.py,sha256=B0P5JUO-cREkwttMqs7oU9i3UOmgK6CWkZC0OK5p5h4,93
|
|
16
|
-
types_boto3_dynamodb/waiter.py,sha256=TwX1GF5pQAUIVcPWggpi7m-AHPxho6vRJJjiSK-zdb4,2584
|
|
17
|
-
types_boto3_dynamodb/waiter.pyi,sha256=f-3Eu0L-ysv0jbrrJNKkuJbmSguRZW3TfwLvAHspHPY,2579
|
|
18
|
-
types_boto3_dynamodb-1.35.74.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
19
|
-
types_boto3_dynamodb-1.35.74.dist-info/METADATA,sha256=B5zogjiY1GpzYofAcCij6nYW--K4ZZPRG6X0hTYQBFU,16957
|
|
20
|
-
types_boto3_dynamodb-1.35.74.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
21
|
-
types_boto3_dynamodb-1.35.74.dist-info/top_level.txt,sha256=qetKI9-H-rMGIOB1IBzTvryBK-GlE9YjkQQwaB1GpB8,21
|
|
22
|
-
types_boto3_dynamodb-1.35.74.dist-info/RECORD,,
|
{types_boto3_dynamodb-1.35.74.dist-info → types_boto3_dynamodb-1.35.93.dist-info}/top_level.txt
RENAMED
|
File without changes
|