DynamoDB ORM using dataclasses
Project description
DynamoClasses
API interface for Amazon Web Services DynamoDB built on top of PEP 557 Data Classes.
The goal is to have something that is fully a dataclass
class, but gets some helpers bolted on allowing for retrieving/storing the objects in DynamoDB.
Basic Usage
>>> import botocore
>>>
>>> from moto import mock_dynamodb2
>>>
>>> from dynamoclasses import dynamoclass
>>>
>>> mock_dynamodb2().start()
>>>
>>> session = botocore.session.get_session()
>>> client = session.create_client("dynamodb")
>>> client.create_table(
... TableName="inventory",
... KeySchema=[
... {"AttributeName": "item_id", "KeyType": "HASH"},
... ],
... AttributeDefinitions=[
... {"AttributeName": "item_id", "AttributeType": "S"},
... ],
... ProvisionedThroughput={"ReadCapacityUnits": 1, "WriteCapacityUnits": 1},
... )
{'TableDescription': ...}
>>>
>>> @dynamoclass(table_name="inventory", partition_key_name="item_id")
... class InventoryItem:
... item_id: str
...
>>> item = InventoryItem("hammers")
>>> item.save()
{'Attributes': ...}
>>>
>>> found_item = InventoryItem.get(partition_key="hammers", sort_key=None)
>>>
>>> print(found_item.item_id)
hammers
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dynamoclasses-1.0.0a2.tar.gz
(3.6 kB
view hashes)
Built Distribution
Close
Hashes for dynamoclasses-1.0.0a2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbbbc572f2bc488b8298bdc99d345ace0f34654eac2e1de04c0f928f04eb90a4 |
|
MD5 | 09ad2e8640b221add771933f80c60455 |
|
BLAKE2b-256 | 13b0f7da35ebce90dccd9f650199006a8c9630cce9c6a6e08026ecbeaa134771 |