Last updated:
0 purchases
boto3missing 0.1.0
boto3-missing
The AWS Python SDK, boto3, has resource objects that provide
high-level interfaces to AWS services. The DynamoDB resource
greatly simplifies marshalling and unmarshalling data. We rely on
the resource method for TransactWriteItems among others that are
absent from boto3. We opened PR
https://github.com/boto/boto3/pull/4010 to add that method.
The resource methods are synthesized at runtime from a data file.
Fortunately, boto3 has a Loader mechanism that allows the user to
add extra data files, and the loader search path is configurable.
In order to not depend upon our upstream PR for boto3, we distribute
the extra data files and fix up the loader search path by putting it
in a .pth file which Python executes automatically during startup.
Added methods
The following methods are added to the DynamoDB service resource:
get_item
put_item
query
scan
transact_write_items
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.