nayaverdier / dyntastic

A DynamoDB library on top of Pydantic and boto3.
MIT License
55 stars 12 forks source link

Batching #1

Closed ganondev closed 1 year ago

ganondev commented 2 years ago

Is there any plan to wrap the batch read or write methods available in boto3?

Perhaps something like:

Event.batch_get(
    "key1",
    "key2",
    "key3"
)
nayaverdier commented 2 years ago

@ganondev I'd definitely like to support dynamo batching in this library. Feel free to submit a PR, otherwise I can take a stab in the next couple of weeks.

nayaverdier commented 1 year ago

@ganondev Finally got around to this, dyntastic==0.6.0 now supports batched reads and writes: README.