types-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.
- types_boto3_dynamodb/__init__.py +4 -2
- types_boto3_dynamodb/__init__.pyi +4 -2
- types_boto3_dynamodb/__main__.py +4 -4
- types_boto3_dynamodb/client.py +110 -129
- types_boto3_dynamodb/client.pyi +110 -129
- types_boto3_dynamodb/literals.py +4 -3
- types_boto3_dynamodb/literals.pyi +4 -3
- types_boto3_dynamodb/paginator.py +2 -2
- types_boto3_dynamodb/paginator.pyi +2 -2
- types_boto3_dynamodb/service_resource.py +2 -2
- types_boto3_dynamodb/service_resource.pyi +2 -2
- types_boto3_dynamodb/type_defs.py +219 -194
- types_boto3_dynamodb/type_defs.pyi +211 -188
- types_boto3_dynamodb/version.py +1 -1
- types_boto3_dynamodb/waiter.py +4 -4
- types_boto3_dynamodb/waiter.pyi +4 -4
- {types_boto3_dynamodb-1.35.94.dist-info → types_boto3_dynamodb-1.37.0.dist-info}/METADATA +25 -9
- types_boto3_dynamodb-1.37.0.dist-info/RECORD +22 -0
- {types_boto3_dynamodb-1.35.94.dist-info → types_boto3_dynamodb-1.37.0.dist-info}/WHEEL +1 -1
- types_boto3_dynamodb-1.35.94.dist-info/RECORD +0 -22
- {types_boto3_dynamodb-1.35.94.dist-info → types_boto3_dynamodb-1.37.0.dist-info}/LICENSE +0 -0
- {types_boto3_dynamodb-1.35.94.dist-info → types_boto3_dynamodb-1.37.0.dist-info}/top_level.txt +0 -0
types_boto3_dynamodb/__init__.py
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for dynamodb service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
@@ -33,8 +37,6 @@ Usage::
|
|
|
33
37
|
query_paginator: QueryPaginator = client.get_paginator("query")
|
|
34
38
|
scan_paginator: ScanPaginator = client.get_paginator("scan")
|
|
35
39
|
```
|
|
36
|
-
|
|
37
|
-
Copyright 2025 Vlad Emelianov
|
|
38
40
|
"""
|
|
39
41
|
|
|
40
42
|
from .client import DynamoDBClient
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for dynamodb service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
@@ -33,8 +37,6 @@ Usage::
|
|
|
33
37
|
query_paginator: QueryPaginator = client.get_paginator("query")
|
|
34
38
|
scan_paginator: ScanPaginator = client.get_paginator("scan")
|
|
35
39
|
```
|
|
36
|
-
|
|
37
|
-
Copyright 2025 Vlad Emelianov
|
|
38
40
|
"""
|
|
39
41
|
|
|
40
42
|
from .client import DynamoDBClient
|
types_boto3_dynamodb/__main__.py
CHANGED
|
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 DynamoDB 1.
|
|
16
|
-
"Version: 1.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 DynamoDB 1.37.0\n"
|
|
16
|
+
"Version: 1.37.0\n"
|
|
17
|
+
"Builder version: 8.9.2\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#dynamodb\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.
|
|
29
|
+
sys.stdout.write("1.37.0\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|