DynamoDBlike
DynamoDBlike is a Python library designed to provide a simple, in-memory simulation of Amazon DynamoDB functionality. It allows developers to test their DynamoDB-related code without needing an actual AWS connection or incurring any costs. The library mimics core DynamoDB operations such as creating tables, putting items, getting items, querying, and scanning.
The primary purpose of DynamoDBlike is to facilitate local development and unit testing. By offering a DynamoDB-like
DynamoDBlike stores data entirely in memory, meaning that all data is lost when the Python process terminates.