mypy-boto3-dynamodb 1.35.15__py3-none-any.whl → 1.35.24__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/__main__.py +4 -4
- mypy_boto3_dynamodb/client.py +2 -6
- mypy_boto3_dynamodb/client.pyi +2 -6
- mypy_boto3_dynamodb/literals.py +1 -0
- mypy_boto3_dynamodb/literals.pyi +1 -0
- mypy_boto3_dynamodb/type_defs.py +2 -6
- mypy_boto3_dynamodb/type_defs.pyi +2 -6
- mypy_boto3_dynamodb/version.py +1 -1
- {mypy_boto3_dynamodb-1.35.15.dist-info → mypy_boto3_dynamodb-1.35.24.dist-info}/METADATA +4 -4
- mypy_boto3_dynamodb-1.35.24.dist-info/RECORD +22 -0
- {mypy_boto3_dynamodb-1.35.15.dist-info → mypy_boto3_dynamodb-1.35.24.dist-info}/WHEEL +1 -1
- mypy_boto3_dynamodb-1.35.15.dist-info/RECORD +0 -22
- {mypy_boto3_dynamodb-1.35.15.dist-info → mypy_boto3_dynamodb-1.35.24.dist-info}/LICENSE +0 -0
- {mypy_boto3_dynamodb-1.35.15.dist-info → mypy_boto3_dynamodb-1.35.24.dist-info}/top_level.txt +0 -0
mypy_boto3_dynamodb/__main__.py
CHANGED
|
@@ -10,9 +10,9 @@ def print_info() -> None:
|
|
|
10
10
|
Print package info to stdout.
|
|
11
11
|
"""
|
|
12
12
|
print(
|
|
13
|
-
"Type annotations for boto3.DynamoDB 1.35.
|
|
14
|
-
"Version: 1.35.
|
|
15
|
-
"Builder version: 8.
|
|
13
|
+
"Type annotations for boto3.DynamoDB 1.35.24\n"
|
|
14
|
+
"Version: 1.35.24\n"
|
|
15
|
+
"Builder version: 8.1.1\n"
|
|
16
16
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb//\n"
|
|
17
17
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB\n"
|
|
18
18
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -24,7 +24,7 @@ def print_version() -> None:
|
|
|
24
24
|
"""
|
|
25
25
|
Print package version to stdout.
|
|
26
26
|
"""
|
|
27
|
-
print("1.35.
|
|
27
|
+
print("1.35.24")
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
def main() -> None:
|
mypy_boto3_dynamodb/client.py
CHANGED
|
@@ -140,13 +140,9 @@ from .type_defs import (
|
|
|
140
140
|
from .waiter import TableExistsWaiter, TableNotExistsWaiter
|
|
141
141
|
|
|
142
142
|
if sys.version_info >= (3, 12):
|
|
143
|
-
from typing import Literal
|
|
143
|
+
from typing import Literal, Unpack
|
|
144
144
|
else:
|
|
145
|
-
from typing_extensions import Literal
|
|
146
|
-
if sys.version_info >= (3, 12):
|
|
147
|
-
from typing import Unpack
|
|
148
|
-
else:
|
|
149
|
-
from typing_extensions import Unpack
|
|
145
|
+
from typing_extensions import Literal, Unpack
|
|
150
146
|
|
|
151
147
|
|
|
152
148
|
__all__ = ("DynamoDBClient",)
|
mypy_boto3_dynamodb/client.pyi
CHANGED
|
@@ -140,13 +140,9 @@ from .type_defs import (
|
|
|
140
140
|
from .waiter import TableExistsWaiter, TableNotExistsWaiter
|
|
141
141
|
|
|
142
142
|
if sys.version_info >= (3, 12):
|
|
143
|
-
from typing import Literal
|
|
143
|
+
from typing import Literal, Unpack
|
|
144
144
|
else:
|
|
145
|
-
from typing_extensions import Literal
|
|
146
|
-
if sys.version_info >= (3, 12):
|
|
147
|
-
from typing import Unpack
|
|
148
|
-
else:
|
|
149
|
-
from typing_extensions import Unpack
|
|
145
|
+
from typing_extensions import Literal, Unpack
|
|
150
146
|
|
|
151
147
|
__all__ = ("DynamoDBClient",)
|
|
152
148
|
|
mypy_boto3_dynamodb/literals.py
CHANGED
mypy_boto3_dynamodb/literals.pyi
CHANGED
mypy_boto3_dynamodb/type_defs.py
CHANGED
|
@@ -62,13 +62,9 @@ from .literals import (
|
|
|
62
62
|
)
|
|
63
63
|
|
|
64
64
|
if sys.version_info >= (3, 12):
|
|
65
|
-
from typing import NotRequired
|
|
65
|
+
from typing import NotRequired, TypedDict
|
|
66
66
|
else:
|
|
67
|
-
from typing_extensions import NotRequired
|
|
68
|
-
if sys.version_info >= (3, 12):
|
|
69
|
-
from typing import TypedDict
|
|
70
|
-
else:
|
|
71
|
-
from typing_extensions import TypedDict
|
|
67
|
+
from typing_extensions import NotRequired, TypedDict
|
|
72
68
|
|
|
73
69
|
|
|
74
70
|
__all__ = (
|
|
@@ -62,13 +62,9 @@ from .literals import (
|
|
|
62
62
|
)
|
|
63
63
|
|
|
64
64
|
if sys.version_info >= (3, 12):
|
|
65
|
-
from typing import NotRequired
|
|
65
|
+
from typing import NotRequired, TypedDict
|
|
66
66
|
else:
|
|
67
|
-
from typing_extensions import NotRequired
|
|
68
|
-
if sys.version_info >= (3, 12):
|
|
69
|
-
from typing import TypedDict
|
|
70
|
-
else:
|
|
71
|
-
from typing_extensions import TypedDict
|
|
67
|
+
from typing_extensions import NotRequired, TypedDict
|
|
72
68
|
|
|
73
69
|
__all__ = (
|
|
74
70
|
"ArchivalSummaryTypeDef",
|
mypy_boto3_dynamodb/version.py
CHANGED
|
@@ -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.24
|
|
4
|
+
Summary: Type annotations for boto3.DynamoDB 1.35.24 service generated with mypy-boto3-builder 8.1.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.24](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 8.
|
|
55
|
+
[mypy-boto3-builder 8.1.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
|
|
@@ -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=1b7qmYYOjP6wfF95qDtIuEZbA7qytKaLyvzPOPaqpOI,922
|
|
4
|
+
mypy_boto3_dynamodb/client.py,sha256=7uJCyvnrXdbPYhaO7T09dHM6DNUuKwIDGga9_pQWCH4,43704
|
|
5
|
+
mypy_boto3_dynamodb/client.pyi,sha256=uFf_kU2QfKRMacM08sQbrQlb2nnxSsPLkTvlmdxQKV8,43700
|
|
6
|
+
mypy_boto3_dynamodb/literals.py,sha256=zp7uULpGnkbGov53Yu9d76yYj-tQXX7WCwv0kAzyB_U,14101
|
|
7
|
+
mypy_boto3_dynamodb/literals.pyi,sha256=PZw1azOeeW_24JwY-4wQZXLE966dt36ogA8Mo8vMWtg,14099
|
|
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=YhAyapNKqM2LaAWa1bHnBIZxeQKx50ggZ1GQwC7QMUg,101994
|
|
14
|
+
mypy_boto3_dynamodb/type_defs.pyi,sha256=r0SsCUDtafLpOS8CM4nxu2DkHs-YFpipmIXpJJxw9Yg,101993
|
|
15
|
+
mypy_boto3_dynamodb/version.py,sha256=ntwkEcDoYYxqzHPGgOyn9Tq_MzTgFl_7YNrM6LUp9no,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.24.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
19
|
+
mypy_boto3_dynamodb-1.35.24.dist-info/METADATA,sha256=C3YkAFidddwbUX08CuMTRm6kjn00o8Y2K4PvY2TowGY,16221
|
|
20
|
+
mypy_boto3_dynamodb-1.35.24.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
21
|
+
mypy_boto3_dynamodb-1.35.24.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
|
|
22
|
+
mypy_boto3_dynamodb-1.35.24.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
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,,
|
|
File without changes
|
{mypy_boto3_dynamodb-1.35.15.dist-info → mypy_boto3_dynamodb-1.35.24.dist-info}/top_level.txt
RENAMED
|
File without changes
|