types-boto3-dynamodb 1.36.0__tar.gz

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.
Files changed (28) hide show
  1. types_boto3_dynamodb-1.36.0/LICENSE +21 -0
  2. types_boto3_dynamodb-1.36.0/PKG-INFO +572 -0
  3. types_boto3_dynamodb-1.36.0/README.md +526 -0
  4. types_boto3_dynamodb-1.36.0/setup.cfg +4 -0
  5. types_boto3_dynamodb-1.36.0/setup.py +54 -0
  6. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb/__init__.py +74 -0
  7. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb/__init__.pyi +71 -0
  8. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb/__main__.py +43 -0
  9. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb/client.py +896 -0
  10. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb/client.pyi +893 -0
  11. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb/literals.py +626 -0
  12. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb/literals.pyi +624 -0
  13. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb/paginator.py +170 -0
  14. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb/paginator.pyi +154 -0
  15. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb/py.typed +0 -0
  16. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb/service_resource.py +363 -0
  17. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb/service_resource.pyi +356 -0
  18. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb/type_defs.py +2410 -0
  19. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb/type_defs.pyi +2134 -0
  20. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb/version.py +7 -0
  21. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb/waiter.py +71 -0
  22. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb/waiter.pyi +66 -0
  23. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb.egg-info/PKG-INFO +572 -0
  24. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb.egg-info/SOURCES.txt +26 -0
  25. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb.egg-info/dependency_links.txt +1 -0
  26. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb.egg-info/not-zip-safe +1 -0
  27. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb.egg-info/requires.txt +3 -0
  28. types_boto3_dynamodb-1.36.0/types_boto3_dynamodb.egg-info/top_level.txt +1 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Vlad Emelianov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,572 @@
1
+ Metadata-Version: 2.2
2
+ Name: types-boto3-dynamodb
3
+ Version: 1.36.0
4
+ Summary: Type annotations for boto3 DynamoDB 1.36.0 service generated with mypy-boto3-builder 8.8.0
5
+ Home-page: https://github.com/youtype/mypy_boto3_builder
6
+ Author: Vlad Emelianov
7
+ Author-email: vlad.emelianov.nz@gmail.com
8
+ License: MIT License
9
+ Project-URL: Documentation, https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/
10
+ Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
11
+ Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
12
+ Keywords: boto3 dynamodb boto3-stubs type-annotations mypy typeshed autocomplete
13
+ Classifier: Development Status :: 5 - Production/Stable
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Environment :: Console
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Natural Language :: English
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3.8
21
+ Classifier: Programming Language :: Python :: 3.9
22
+ Classifier: Programming Language :: Python :: 3.10
23
+ Classifier: Programming Language :: Python :: 3.11
24
+ Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Programming Language :: Python :: 3.13
26
+ Classifier: Programming Language :: Python :: 3.14
27
+ Classifier: Programming Language :: Python :: 3 :: Only
28
+ Classifier: Programming Language :: Python :: Implementation :: CPython
29
+ Classifier: Typing :: Stubs Only
30
+ Requires-Python: >=3.8
31
+ Description-Content-Type: text/markdown
32
+ License-File: LICENSE
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
46
+
47
+ <a id="types-boto3-dynamodb"></a>
48
+
49
+ # types-boto3-dynamodb
50
+
51
+ [![PyPI - types-boto3-dynamodb](https://img.shields.io/pypi/v/types-boto3-dynamodb.svg?color=blue)](https://pypi.org/project/types-boto3-dynamodb/)
52
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/types-boto3-dynamodb.svg?color=blue)](https://pypi.org/project/types-boto3-dynamodb/)
53
+ [![Docs](https://img.shields.io/readthedocs/boto3-stubs.svg?color=blue)](https://youtype.github.io/types_boto3_docs/)
54
+ [![PyPI - Downloads](https://static.pepy.tech/badge/types-boto3-dynamodb)](https://pypistats.org/packages/types-boto3-dynamodb)
55
+
56
+ ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
57
+
58
+ Type annotations for [boto3 DynamoDB 1.36.0](https://pypi.org/project/boto3/)
59
+ compatible with [VSCode](https://code.visualstudio.com/),
60
+ [PyCharm](https://www.jetbrains.com/pycharm/),
61
+ [Emacs](https://www.gnu.org/software/emacs/),
62
+ [Sublime Text](https://www.sublimetext.com/),
63
+ [mypy](https://github.com/python/mypy),
64
+ [pyright](https://github.com/microsoft/pyright) and other tools.
65
+
66
+ Generated with
67
+ [mypy-boto3-builder 8.8.0](https://github.com/youtype/mypy_boto3_builder).
68
+
69
+ More information can be found on
70
+ [types-boto3](https://pypi.org/project/types-boto3/) page and in
71
+ [types-boto3-dynamodb docs](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/).
72
+
73
+ See how it helps you find and fix potential bugs:
74
+
75
+ ![types-boto3 demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)
76
+
77
+ - [types-boto3-dynamodb](#types-boto3-dynamodb)
78
+ - [How to install](#how-to-install)
79
+ - [Generate locally (recommended)](<#generate-locally-(recommended)>)
80
+ - [VSCode extension](#vscode-extension)
81
+ - [From PyPI with pip](#from-pypi-with-pip)
82
+ - [How to uninstall](#how-to-uninstall)
83
+ - [Usage](#usage)
84
+ - [VSCode](#vscode)
85
+ - [PyCharm](#pycharm)
86
+ - [Emacs](#emacs)
87
+ - [Sublime Text](#sublime-text)
88
+ - [Other IDEs](#other-ides)
89
+ - [mypy](#mypy)
90
+ - [pyright](#pyright)
91
+ - [Pylint compatibility](#pylint-compatibility)
92
+ - [Explicit type annotations](#explicit-type-annotations)
93
+ - [Client annotations](#client-annotations)
94
+ - [Paginators annotations](#paginators-annotations)
95
+ - [Waiters annotations](#waiters-annotations)
96
+ - [Service Resource annotations](#service-resource-annotations)
97
+ - [Other resources annotations](#other-resources-annotations)
98
+ - [Collections annotations](#collections-annotations)
99
+ - [Literals](#literals)
100
+ - [Type definitions](#type-definitions)
101
+ - [How it works](#how-it-works)
102
+ - [What's new](#what's-new)
103
+ - [Implemented features](#implemented-features)
104
+ - [Latest changes](#latest-changes)
105
+ - [Versioning](#versioning)
106
+ - [Thank you](#thank-you)
107
+ - [Documentation](#documentation)
108
+ - [Support and contributing](#support-and-contributing)
109
+
110
+ <a id="how-to-install"></a>
111
+
112
+ ## How to install
113
+
114
+ <a id="generate-locally-(recommended)"></a>
115
+
116
+ ### Generate locally (recommended)
117
+
118
+ You can generate type annotations for `boto3` package locally with
119
+ `mypy_boto3_builder`. Use
120
+ [uv](https://docs.astral.sh/uv/getting-started/installation/) for build
121
+ isolation.
122
+
123
+ 1. Run mypy-boto3-builder in your package root directory:
124
+ `uvx --with 'boto3==1.36.0' mypy_boto3_builder`
125
+ 2. Select `boto3` AWS SDK.
126
+ 3. Add `DynamoDB` service.
127
+ 4. Use provided commands to install generated packages.
128
+
129
+ <a id="vscode-extension"></a>
130
+
131
+ ### VSCode extension
132
+
133
+ Add
134
+ [AWS Boto3](https://marketplace.visualstudio.com/items?itemName=Boto3typed.boto3-ide)
135
+ extension to your VSCode and run `AWS boto3: Quick Start` command.
136
+
137
+ Click `Modify` and select `boto3 common` and `DynamoDB`.
138
+
139
+ <a id="from-pypi-with-pip"></a>
140
+
141
+ ### From PyPI with pip
142
+
143
+ Install `types-boto3` for `DynamoDB` service.
144
+
145
+ ```bash
146
+ # install with boto3 type annotations
147
+ python -m pip install 'types-boto3[dynamodb]'
148
+
149
+ # Lite version does not provide session.client/resource overloads
150
+ # it is more RAM-friendly, but requires explicit type annotations
151
+ python -m pip install 'types-boto3-lite[dynamodb]'
152
+
153
+ # standalone installation
154
+ python -m pip install types-boto3-dynamodb
155
+ ```
156
+
157
+ <a id="how-to-uninstall"></a>
158
+
159
+ ## How to uninstall
160
+
161
+ ```bash
162
+ python -m pip uninstall -y types-boto3-dynamodb
163
+ ```
164
+
165
+ <a id="usage"></a>
166
+
167
+ ## Usage
168
+
169
+ <a id="vscode"></a>
170
+
171
+ ### VSCode
172
+
173
+ - Install
174
+ [Python extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python)
175
+ - Install
176
+ [Pylance extension](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance)
177
+ - Set `Pylance` as your Python Language Server
178
+ - Install `types-boto3[dynamodb]` in your environment:
179
+
180
+ ```bash
181
+ python -m pip install 'types-boto3[dynamodb]'
182
+ ```
183
+
184
+ Both type checking and code completion should now work. No explicit type
185
+ annotations required, write your `boto3` code as usual.
186
+
187
+ <a id="pycharm"></a>
188
+
189
+ ### PyCharm
190
+
191
+ > ⚠️ Due to slow PyCharm performance on `Literal` overloads (issue
192
+ > [PY-40997](https://youtrack.jetbrains.com/issue/PY-40997)), it is recommended
193
+ > to use [types-boto3-lite](https://pypi.org/project/types-boto3-lite/) until
194
+ > the issue is resolved.
195
+
196
+ > ⚠️ If you experience slow performance and high CPU usage, try to disable
197
+ > `PyCharm` type checker and use [mypy](https://github.com/python/mypy) or
198
+ > [pyright](https://github.com/microsoft/pyright) instead.
199
+
200
+ > ⚠️ To continue using `PyCharm` type checker, you can try to replace
201
+ > `types-boto3` with
202
+ > [types-boto3-lite](https://pypi.org/project/types-boto3-lite/):
203
+
204
+ ```bash
205
+ pip uninstall types-boto3
206
+ pip install types-boto3-lite
207
+ ```
208
+
209
+ Install `types-boto3[dynamodb]` in your environment:
210
+
211
+ ```bash
212
+ python -m pip install 'types-boto3[dynamodb]'
213
+ ```
214
+
215
+ Both type checking and code completion should now work.
216
+
217
+ <a id="emacs"></a>
218
+
219
+ ### Emacs
220
+
221
+ - Install `types-boto3` with services you use in your environment:
222
+
223
+ ```bash
224
+ python -m pip install 'types-boto3[dynamodb]'
225
+ ```
226
+
227
+ - Install [use-package](https://github.com/jwiegley/use-package),
228
+ [lsp](https://github.com/emacs-lsp/lsp-mode/),
229
+ [company](https://github.com/company-mode/company-mode) and
230
+ [flycheck](https://github.com/flycheck/flycheck) packages
231
+ - Install [lsp-pyright](https://github.com/emacs-lsp/lsp-pyright) package
232
+
233
+ ```elisp
234
+ (use-package lsp-pyright
235
+ :ensure t
236
+ :hook (python-mode . (lambda ()
237
+ (require 'lsp-pyright)
238
+ (lsp))) ; or lsp-deferred
239
+ :init (when (executable-find "python3")
240
+ (setq lsp-pyright-python-executable-cmd "python3"))
241
+ )
242
+ ```
243
+
244
+ - Make sure emacs uses the environment where you have installed `types-boto3`
245
+
246
+ Type checking should now work. No explicit type annotations required, write
247
+ your `boto3` code as usual.
248
+
249
+ <a id="sublime-text"></a>
250
+
251
+ ### Sublime Text
252
+
253
+ - Install `types-boto3[dynamodb]` with services you use in your environment:
254
+
255
+ ```bash
256
+ python -m pip install 'types-boto3[dynamodb]'
257
+ ```
258
+
259
+ - Install [LSP-pyright](https://github.com/sublimelsp/LSP-pyright) package
260
+
261
+ Type checking should now work. No explicit type annotations required, write
262
+ your `boto3` code as usual.
263
+
264
+ <a id="other-ides"></a>
265
+
266
+ ### Other IDEs
267
+
268
+ Not tested, but as long as your IDE supports `mypy` or `pyright`, everything
269
+ should work.
270
+
271
+ <a id="mypy"></a>
272
+
273
+ ### mypy
274
+
275
+ - Install `mypy`: `python -m pip install mypy`
276
+ - Install `types-boto3[dynamodb]` in your environment:
277
+
278
+ ```bash
279
+ python -m pip install 'types-boto3[dynamodb]'
280
+ ```
281
+
282
+ Type checking should now work. No explicit type annotations required, write
283
+ your `boto3` code as usual.
284
+
285
+ <a id="pyright"></a>
286
+
287
+ ### pyright
288
+
289
+ - Install `pyright`: `npm i -g pyright`
290
+ - Install `types-boto3[dynamodb]` in your environment:
291
+
292
+ ```bash
293
+ python -m pip install 'types-boto3[dynamodb]'
294
+ ```
295
+
296
+ Optionally, you can install `types-boto3` to `typings` directory.
297
+
298
+ Type checking should now work. No explicit type annotations required, write
299
+ your `boto3` code as usual.
300
+
301
+ <a id="pylint-compatibility"></a>
302
+
303
+ ### Pylint compatibility
304
+
305
+ It is totally safe to use `TYPE_CHECKING` flag in order to avoid
306
+ `types-boto3-dynamodb` dependency in production. However, there is an issue in
307
+ `pylint` that it complains about undefined variables. To fix it, set all types
308
+ to `object` in non-`TYPE_CHECKING` mode.
309
+
310
+ ```python
311
+ from typing import TYPE_CHECKING
312
+
313
+ if TYPE_CHECKING:
314
+ from types_boto3_ec2 import EC2Client, EC2ServiceResource
315
+ from types_boto3_ec2.waiters import BundleTaskCompleteWaiter
316
+ from types_boto3_ec2.paginators import DescribeVolumesPaginator
317
+ else:
318
+ EC2Client = object
319
+ EC2ServiceResource = object
320
+ BundleTaskCompleteWaiter = object
321
+ DescribeVolumesPaginator = object
322
+
323
+ ...
324
+ ```
325
+
326
+ <a id="explicit-type-annotations"></a>
327
+
328
+ ## Explicit type annotations
329
+
330
+ <a id="client-annotations"></a>
331
+
332
+ ### Client annotations
333
+
334
+ `DynamoDBClient` provides annotations for `boto3.client("dynamodb")`.
335
+
336
+ ```python
337
+ from boto3.session import Session
338
+
339
+ from types_boto3_dynamodb import DynamoDBClient
340
+
341
+ client: DynamoDBClient = Session().client("dynamodb")
342
+
343
+ # now client usage is checked by mypy and IDE should provide code completion
344
+ ```
345
+
346
+ <a id="paginators-annotations"></a>
347
+
348
+ ### Paginators annotations
349
+
350
+ `types_boto3_dynamodb.paginator` module contains type annotations for all
351
+ paginators.
352
+
353
+ ```python
354
+ from boto3.session import Session
355
+
356
+ from types_boto3_dynamodb import DynamoDBClient
357
+ from types_boto3_dynamodb.paginator import (
358
+ ListBackupsPaginator,
359
+ ListTablesPaginator,
360
+ ListTagsOfResourcePaginator,
361
+ QueryPaginator,
362
+ ScanPaginator,
363
+ )
364
+
365
+ client: DynamoDBClient = Session().client("dynamodb")
366
+
367
+ # Explicit type annotations are optional here
368
+ # Types should be correctly discovered by mypy and IDEs
369
+ list_backups_paginator: ListBackupsPaginator = client.get_paginator("list_backups")
370
+ list_tables_paginator: ListTablesPaginator = client.get_paginator("list_tables")
371
+ list_tags_of_resource_paginator: ListTagsOfResourcePaginator = client.get_paginator(
372
+ "list_tags_of_resource"
373
+ )
374
+ query_paginator: QueryPaginator = client.get_paginator("query")
375
+ scan_paginator: ScanPaginator = client.get_paginator("scan")
376
+ ```
377
+
378
+ <a id="waiters-annotations"></a>
379
+
380
+ ### Waiters annotations
381
+
382
+ `types_boto3_dynamodb.waiter` module contains type annotations for all waiters.
383
+
384
+ ```python
385
+ from boto3.session import Session
386
+
387
+ from types_boto3_dynamodb import DynamoDBClient
388
+ from types_boto3_dynamodb.waiter import TableExistsWaiter, TableNotExistsWaiter
389
+
390
+ client: DynamoDBClient = Session().client("dynamodb")
391
+
392
+ # Explicit type annotations are optional here
393
+ # Types should be correctly discovered by mypy and IDEs
394
+ table_exists_waiter: TableExistsWaiter = client.get_waiter("table_exists")
395
+ table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
396
+ ```
397
+
398
+ <a id="service-resource-annotations"></a>
399
+
400
+ ### Service Resource annotations
401
+
402
+ `DynamoDBServiceResource` provides annotations for
403
+ `boto3.resource("dynamodb")`.
404
+
405
+ ```python
406
+ from boto3.session import Session
407
+
408
+ from types_boto3_dynamodb import DynamoDBServiceResource
409
+
410
+ resource: DynamoDBServiceResource = Session().resource("dynamodb")
411
+
412
+ # now resource usage is checked by mypy and IDE should provide code completion
413
+ ```
414
+
415
+ <a id="other-resources-annotations"></a>
416
+
417
+ ### Other resources annotations
418
+
419
+ `types_boto3_dynamodb.service_resource` module contains type annotations for
420
+ all resources.
421
+
422
+ ```python
423
+ from boto3.session import Session
424
+
425
+ from types_boto3_dynamodb import DynamoDBServiceResource
426
+ from types_boto3_dynamodb.service_resource import Table
427
+
428
+ resource: DynamoDBServiceResource = Session().resource("dynamodb")
429
+
430
+ # Explicit type annotations are optional here
431
+ # Type should be correctly discovered by mypy and IDEs
432
+ my_table: Table = resource.Table(...)
433
+ ```
434
+
435
+ <a id="collections-annotations"></a>
436
+
437
+ ### Collections annotations
438
+
439
+ `types_boto3_dynamodb.service_resource` module contains type annotations for
440
+ all `DynamoDBServiceResource` collections.
441
+
442
+ ```python
443
+ from boto3.session import Session
444
+
445
+ from types_boto3_dynamodb import DynamoDBServiceResource
446
+ from types_boto3_dynamodb.service_resource import ServiceResourceTablesCollection
447
+
448
+ resource: DynamoDBServiceResource = Session().resource("dynamodb")
449
+
450
+ # Explicit type annotations are optional here
451
+ # Type should be correctly discovered by mypy and IDEs
452
+ tables: dynamodb_resources.ServiceResourceTablesCollection = resource.tables
453
+ ```
454
+
455
+ <a id="literals"></a>
456
+
457
+ ### Literals
458
+
459
+ `types_boto3_dynamodb.literals` module contains literals extracted from shapes
460
+ that can be used in user code for type checking.
461
+
462
+ Full list of `DynamoDB` Literals can be found in
463
+ [docs](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/literals/).
464
+
465
+ ```python
466
+ from types_boto3_dynamodb.literals import ApproximateCreationDateTimePrecisionType
467
+
468
+
469
+ def check_value(value: ApproximateCreationDateTimePrecisionType) -> bool: ...
470
+ ```
471
+
472
+ <a id="type-definitions"></a>
473
+
474
+ ### Type definitions
475
+
476
+ `types_boto3_dynamodb.type_defs` module contains structures and shapes
477
+ assembled to typed dictionaries and unions for additional type checking.
478
+
479
+ Full list of `DynamoDB` TypeDefs can be found in
480
+ [docs](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/type_defs/).
481
+
482
+ ```python
483
+ from types_boto3_dynamodb.type_defs import ArchivalSummaryTypeDef
484
+
485
+
486
+ def get_value() -> ArchivalSummaryTypeDef:
487
+ return {...}
488
+ ```
489
+
490
+ <a id="how-it-works"></a>
491
+
492
+ ## How it works
493
+
494
+ Fully automated
495
+ [mypy-boto3-builder](https://github.com/youtype/mypy_boto3_builder) carefully
496
+ generates type annotations for each service, patiently waiting for `boto3`
497
+ updates. It delivers drop-in type annotations for you and makes sure that:
498
+
499
+ - All available `boto3` services are covered.
500
+ - Each public class and method of every `boto3` service gets valid type
501
+ annotations extracted from `botocore` schemas.
502
+ - Type annotations include up-to-date documentation.
503
+ - Link to documentation is provided for every method.
504
+ - Code is processed by [ruff](https://docs.astral.sh/ruff/) for readability.
505
+
506
+ <a id="what's-new"></a>
507
+
508
+ ## What's new
509
+
510
+ <a id="implemented-features"></a>
511
+
512
+ ### Implemented features
513
+
514
+ - Fully type annotated `boto3`, `botocore`, `aiobotocore` and `aioboto3`
515
+ libraries
516
+ - `mypy`, `pyright`, `VSCode`, `PyCharm`, `Sublime Text` and `Emacs`
517
+ compatibility
518
+ - `Client`, `ServiceResource`, `Resource`, `Waiter` `Paginator` type
519
+ annotations for each service
520
+ - Generated `TypeDefs` for each service
521
+ - Generated `Literals` for each service
522
+ - Auto discovery of types for `boto3.client` and `boto3.resource` calls
523
+ - Auto discovery of types for `session.client` and `session.resource` calls
524
+ - Auto discovery of types for `client.get_waiter` and `client.get_paginator`
525
+ calls
526
+ - Auto discovery of types for `ServiceResource` and `Resource` collections
527
+ - Auto discovery of types for `aiobotocore.Session.create_client` calls
528
+
529
+ <a id="latest-changes"></a>
530
+
531
+ ### Latest changes
532
+
533
+ Builder changelog can be found in
534
+ [Releases](https://github.com/youtype/mypy_boto3_builder/releases).
535
+
536
+ <a id="versioning"></a>
537
+
538
+ ## Versioning
539
+
540
+ `types-boto3-dynamodb` version is the same as related `boto3` version and
541
+ follows [PEP 440](https://www.python.org/dev/peps/pep-0440/) format.
542
+
543
+ <a id="thank-you"></a>
544
+
545
+ ## Thank you
546
+
547
+ - [Allie Fitter](https://github.com/alliefitter) for
548
+ [boto3-type-annotations](https://pypi.org/project/boto3-type-annotations/),
549
+ this package is based on top of his work
550
+ - [black](https://github.com/psf/black) developers for an awesome formatting
551
+ tool
552
+ - [Timothy Edmund Crosley](https://github.com/timothycrosley) for
553
+ [isort](https://github.com/PyCQA/isort) and how flexible it is
554
+ - [mypy](https://github.com/python/mypy) developers for doing all dirty work
555
+ for us
556
+ - [pyright](https://github.com/microsoft/pyright) team for the new era of typed
557
+ Python
558
+
559
+ <a id="documentation"></a>
560
+
561
+ ## Documentation
562
+
563
+ All services type annotations can be found in
564
+ [boto3 docs](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/)
565
+
566
+ <a id="support-and-contributing"></a>
567
+
568
+ ## Support and contributing
569
+
570
+ This package is auto-generated. Please reports any bugs or request new features
571
+ in [mypy-boto3-builder](https://github.com/youtype/mypy_boto3_builder/issues/)
572
+ repository.