A simple Python wrapper to AWS Dynamodb
Project description
A minimalistic wrapper to AWS DynamoDB
Table of contents
- Installation
- Example
- Connect to DynamodDB
- Create a new table
- Get all table names
- Create a New Item
- Read an Item
- Increase an existing attribute value
- Update existing attribute in an item
- Add a new attribute in an item
- Add an attribute to the list
- Add an attribute to the string set
- Delete an attribute from the string set
- Delete an attribute from an item
- Read items by filter
- Delete a table
- Running tests
- Github Workflow Artifacts
- License
Installation
pip install LucidDynamodb
Note: Prerequisite for Python3 development
Example
Connect to DynamoDB
You can connect to DynamoDB by following any of these two ways.
- Using AWS config
from LucidDynamodb import DynamoDb
db = DynamoDb()
# $> pip install awscli #can add user flag
# $> aws configure
# AWS Access Key ID [****************ABCD]:[enter your key here]
# AWS Secret Access Key [****************xyz]:[enter your secret key here]
# Default region name [us-west-2]:[enter your region here]
# Default output format [None]:
- Using AWS secret key
from LucidDynamodb import DynamoDb
import os
AWS_ACCESS_KEY_ID = os.getenv("AWS_ACCESS_KEY_ID")
AWS_SECRET_ACCESS_KEY = os.getenv("AWS_SECRET_ACCESS_KEY")
db = DynamoDb(region_name="us-east-1",
aws_access_key_id=AWS_ACCESS_KEY_ID,
aws_secret_access_key=AWS_SECRET_ACCESS_KEY)
Create a new table
from LucidDynamodb import DynamoDb
import logging
logging.basicConfig(level=logging.INFO)
table_schema = {
"TableName": "dev_jobs",
"KeySchema": [
{
"AttributeName": "company_name",
"KeyType": "HASH"
},
{
"AttributeName": "role_id",
"KeyType": "RANGE"
}
],
"AttributeDefinitions": [
{
"AttributeName": "company_name",
"AttributeType": "S"
},
{
"AttributeName": "role_id",
"AttributeType": "S"
}
],
"GlobalSecondaryIndexes": [],
"ProvisionedThroughput": {
"ReadCapacityUnits": 1,
"WriteCapacityUnits": 1
}
}
if __name__ == "__main__":
db = DynamoDb()
table_creation_status = db.create_table(
table_name=table_schema.get("TableName"),
key_schema=table_schema.get("KeySchema"),
attribute_definitions=table_schema.get("AttributeDefinitions"),
global_secondary_indexes=table_schema.get("GlobalSecondaryIndexes"),
provisioned_throughput=table_schema.get("ProvisionedThroughput")
)
try:
logging.info("{} table created successfully".format(table_schema.get("TableName")))
except Exception as e:
logging.error("{} table creation failed - {}".format(table_schema.get("TableName"), e))
"""
dineshsonachalam@macbook examples % python 1-create-a-new-table.py
INFO:botocore.credentials:Found credentials in environment variables.
INFO:root:dev_jobs table created successfully
"""
Get all table names
from LucidDynamodb import DynamoDb
import logging
logging.basicConfig(level=logging.INFO)
if __name__ == "__main__":
db = DynamoDb()
table_names = db.read_all_table_names()
logging.info("Table names: {}".format(table_names))
"""
dineshsonachalam@macbook examples % python 2-get-all-table-names.py
INFO:botocore.credentials:Found credentials in environment variables.
INFO:root:Table names: ['CertMagic', 'dev_jobs', 'dev_test', 'kp-config-v1', 'test-1']
"""
Create a New Item
from LucidDynamodb import DynamoDb
import logging
logging.basicConfig(level=logging.INFO)
if __name__ == "__main__":
db = DynamoDb()
item_creation_status = db.create_item(
table_name="dev_jobs",
item={
"company_name": "Google",
"role_id": "111",
"role": "Software Engineer 1",
"salary": "$1,50,531",
"locations": ["Mountain View, California", "Austin, Texas", "Chicago, IL"],
"yearly_hike_percent": 8,
"benefits": set(["Internet, Medical, Edu reimbursements",
"Health insurance",
"Travel reimbursements"
]),
"overall_review":{
"overall_rating" : "4/5",
"compensation_and_benefits": "3.9/5"
}
}
)
try:
logging.info("Item created successfully")
except Exception as e:
logging.warning("Item creation failed - {}".format(e))
"""
dineshsonachalam@macbook examples % python 3-create-a-new-item.py
INFO:botocore.credentials:Found credentials in environment variables.
INFO:root:Item created successfully
"""
Read an Item
from LucidDynamodb import DynamoDb
import logging
logging.basicConfig(level=logging.INFO)
if __name__ == "__main__":
db = DynamoDb()
item = db.read_item(
table_name="dev_jobs",
key={
"company_name": "Google",
"role_id": "111"
})
try:
logging.info("Item: {}".format(item))
except Exception as e:
logging.warning("Item doesn't exist - {}".format(e))
"""
dineshsonachalam@macbook examples % python 4-read-an-item.py
INFO:botocore.credentials:Found credentials in environment variables.
INFO:root:Item: {
"locations": [
"Mountain View, California",
"Austin, Texas",
"Chicago, IL"
],
"role_id": "111",
"overall_review": {
"compensation_and_benefits": "3.9/5",
"overall_rating": "4/5"
},
"company_name": "Google",
"role": "Software Engineer 1",
"yearly_hike_percent": "8",
"salary": "$1,50,531",
"benefits": [
"Health insurance",
"Internet, Medical, Edu reimbursements",
"Travel reimbursements"
]
}
"""
Increase an existing attribute value
from LucidDynamodb import DynamoDb
import os
import logging
logging.basicConfig(level=logging.INFO)
if __name__ == "__main__":
db = DynamoDb()
increase_attribute_status = db.increase_attribute_value(
table_name='dev_jobs',
key={
"company_name": "Google",
"role_id": "111"
},
attribute_name="yearly_hike_percent",
increment_value=5
)
try:
logging.info("Attribute value increment completed")
except Exception as e:
logging.warning("Attribute value increment failed - {}".format(e))
item = db.read_item(
table_name='dev_jobs',
key={
"company_name": "Google",
"role_id": "111"
})
try:
logging.info("Item: {}".format(item))
except Exception as e:
logging.warning("Item doesn't exist - {}".format(e))
"""
dineshsonachalam@macbook examples % python 5-increase-an-existing-attribute-value.py
INFO:botocore.credentials:Found credentials in environment variables.
INFO:root:Attribute value increment completed
INFO:root:Item: {
"locations": [
"Mountain View, California",
"Austin, Texas",
"Chicago, IL"
],
"role_id": "111",
"overall_review": {
"compensation_and_benefits": "3.9/5",
"overall_rating": "4/5"
},
"company_name": "Google",
"role": "Software Engineer 1",
"yearly_hike_percent": "13",
"salary": "$1,50,531",
"benefits": [
"Internet, Medical, Edu reimbursements",
"Health insurance",
"Travel reimbursements"
]
}
"""
Update existing attribute in an item
from LucidDynamodb import DynamoDb
import logging
logging.basicConfig(level=logging.INFO)
if __name__ == "__main__":
db = DynamoDb()
item_update_status = db.update_item(
table_name="dev_jobs",
key={
"company_name": "Google",
"role_id": "111"
},
attributes_to_update={
'role': 'Staff Software Engineer 2'
}
)
try:
logging.info("Update is successful")
except Exception as e:
logging.warning("Update failed - {}".format(e))
item = db.read_item(
table_name="dev_jobs",
key={
"company_name": "Google",
"role_id": "111"
})
try:
logging.info("Item: {}".format(item))
except Exception as e:
logging.warning("Item doesn't exist - {}".format(e))
"""
dineshsonachalam@macbook examples % python 6-update-existing-attribute-in-an-item.py
INFO:botocore.credentials:Found credentials in environment variables.
INFO:root:Update is successful
INFO:root:Item: {
"locations": [
"Mountain View, California",
"Austin, Texas",
"Chicago, IL"
],
"role_id": "111",
"overall_review": {
"compensation_and_benefits": "3.9/5",
"overall_rating": "4/5"
},
"company_name": "Google",
"role": "Staff Software Engineer 2",
"yearly_hike_percent": "13",
"salary": "$1,50,531",
"benefits": [
"Health insurance",
"Travel reimbursements",
"Internet, Medical, Edu reimbursements"
]
}
"""
Add a new attribute in an item
from LucidDynamodb import DynamoDb
import logging
logging.basicConfig(level=logging.INFO)
if __name__ == "__main__":
db = DynamoDb()
item_update_status = db.update_item(
table_name="dev_jobs",
key={
"company_name": "Google",
"role_id": "111"
},
attributes_to_update={
'overall_review.yearly_bonus_percent': 12
}
)
try:
logging.info("Update is successful")
except Exception as e:
logging.warning("Update failed - {}".format(e))
item = db.read_item(
table_name="dev_jobs",
key={
"company_name": "Google",
"role_id": "111"
})
try:
logging.info("Item: {}".format(item))
except Exception as e:
logging.warning("Item doesn't exist - {}".format(e))
"""
dineshsonachalam@macbook examples % python 7-add-a-new-attribute-in-an-item.py
INFO:botocore.credentials:Found credentials in environment variables.
INFO:root:Update is successful
INFO:root:Item: {
"locations": [
"Mountain View, California",
"Austin, Texas",
"Chicago, IL"
],
"role_id": "111",
"overall_review": {
"compensation_and_benefits": "3.9/5",
"overall_rating": "4/5",
"yearly_bonus_percent": "12"
},
"company_name": "Google",
"role": "Staff Software Engineer 2",
"yearly_hike_percent": "13",
"salary": "$1,50,531",
"benefits": [
"Health insurance",
"Internet, Medical, Edu reimbursements",
"Travel reimbursements"
]
}
"""
Add an attribute to the list
from LucidDynamodb import DynamoDb
import logging
logging.basicConfig(level=logging.INFO)
if __name__ == "__main__":
db = DynamoDb()
item_update_status = db.update_item(
table_name="dev_jobs",
key={
"company_name": "Google",
"role_id": "111"
},
attributes_to_update={
'locations': "Detroit, Michigan"
},
operation="ADD_ATTRIBUTE_TO_LIST"
)
try:
logging.info("Update is successful")
except Exception as e:
logging.warning("Update failed - {}".format(e))
item = db.read_item(
table_name="dev_jobs",
key={
"company_name": "Google",
"role_id": "111"
})
try:
logging.info("Item: {}".format(item))
except Exception as e:
logging.warning("Item doesn't exist - {}".format(e))
"""
dineshsonachalam@macbook examples % python 8-add-an-attribute-to-the-list.py
INFO:botocore.credentials:Found credentials in environment variables.
INFO:root:Update is successful
INFO:root:Item: {
"locations": [
"Mountain View, California",
"Austin, Texas",
"Chicago, IL",
"Detroit, Michigan"
],
"role_id": "111",
"overall_review": {
"compensation_and_benefits": "3.9/5",
"overall_rating": "4/5",
"yearly_bonus_percent": "12"
},
"company_name": "Google",
"role": "Staff Software Engineer 2",
"yearly_hike_percent": "13",
"salary": "$1,50,531",
"benefits": [
"Internet, Medical, Edu reimbursements",
"Health insurance",
"Travel reimbursements"
]
}
"""
Add an attribute to the string set
from LucidDynamodb import DynamoDb
import logging
logging.basicConfig(level=logging.INFO)
if __name__ == "__main__":
db = DynamoDb()
item_update_status = db.update_item(
table_name="dev_jobs",
key={
"company_name": "Google",
"role_id": "111"
},
attributes_to_update={
'benefits': "Free Food"
},
operation="ADD_ATTRIBUTE_TO_STRING_SET"
)
try:
logging.info("Update is successful")
except Exception as e:
logging.warning("Update failed - {}".format(e))
item = db.read_item(
table_name="dev_jobs",
key={
"company_name": "Google",
"role_id": "111"
})
try:
logging.info("Item: {}".format(item))
except Exception as e:
logging.warning("Item doesn't exist - {}".format(e))
"""
dineshsonachalam@macbook examples % python 9-add-an-attribute-to-the-string-set.py
INFO:botocore.credentials:Found credentials in environment variables.
INFO:root:Update is successful
INFO:root:Item: {
"locations": [
"Mountain View, California",
"Austin, Texas",
"Chicago, IL",
"Detroit, Michigan"
],
"role_id": "111",
"overall_review": {
"compensation_and_benefits": "3.9/5",
"overall_rating": "4/5",
"yearly_bonus_percent": "12"
},
"company_name": "Google",
"role": "Staff Software Engineer 2",
"yearly_hike_percent": "13",
"salary": "$1,50,531",
"benefits": [
"Health insurance",
"Free Food",
"Travel reimbursements",
"Internet, Medical, Edu reimbursements"
]
}
"""
Delete an attribute from the string set
from LucidDynamodb import DynamoDb
import logging
logging.basicConfig(level=logging.INFO)
if __name__ == "__main__":
db = DynamoDb()
item_update_status = db.update_item(
table_name="dev_jobs",
key={
"company_name": "Google",
"role_id": "111"
},
attributes_to_update={
'benefits': "Free Food"
},
operation="DELETE_ATTRIBUTE_FROM_STRING_SET"
)
try:
logging.info("Update is successful")
except Exception as e:
logging.warning("Update failed - {}".format(e))
item = db.read_item(
table_name="dev_jobs",
key={
"company_name": "Google",
"role_id": "111"
})
try:
logging.info("Item: {}".format(item))
except Exception as e:
logging.warning("Item doesn't exist - {}".format(e))
"""
dineshsonachalam@macbook examples % python 10-delete-an-attribute-from-the-string-set.py
INFO:botocore.credentials:Found credentials in environment variables.
INFO:root:Update is successful
INFO:root:Item: {
"locations": [
"Mountain View, California",
"Austin, Texas",
"Chicago, IL",
"Detroit, Michigan"
],
"role_id": "111",
"overall_review": {
"compensation_and_benefits": "3.9/5",
"overall_rating": "4/5",
"yearly_bonus_percent": "12"
},
"company_name": "Google",
"role": "Staff Software Engineer 2",
"yearly_hike_percent": "13",
"salary": "$1,50,531",
"benefits": [
"Health insurance",
"Travel reimbursements",
"Internet, Medical, Edu reimbursements"
]
}
"""
Delete an attribute from an item
from LucidDynamodb import DynamoDb
import logging
logging.basicConfig(level=logging.INFO)
if __name__ == "__main__":
db = DynamoDb()
attribute_delete_status = db.delete_attribute(
table_name="dev_jobs",
key={
"company_name": "Google",
"role_id": "111"
},
attribute_name="yearly_hike_percent")
try:
logging.info("The attribute is deleted successfully")
except Exception as e:
logging.warning("The attribute delete operation failed - {}".format(e))
item = db.read_item(
table_name="dev_jobs",
key={
"company_name": "Google",
"role_id": "111"
})
try:
logging.info("Item: {}".format(item))
except Exception as e:
logging.warning("Item doesn't exist - {}".format(e))
"""
dineshsonachalam@macbook examples % python 11-delete-an-attribute-from-an-item.py
INFO:botocore.credentials:Found credentials in environment variables.
INFO:root:The attribute is deleted successfully
INFO:root:Item: {
"locations": [
"Mountain View, California",
"Austin, Texas",
"Chicago, IL",
"Detroit, Michigan"
],
"role_id": "111",
"overall_review": {
"compensation_and_benefits": "3.9/5",
"overall_rating": "4/5",
"yearly_bonus_percent": "12"
},
"company_name": "Google",
"role": "Staff Software Engineer 2",
"salary": "$1,50,531",
"benefits": [
"Health insurance",
"Travel reimbursements",
"Internet, Medical, Edu reimbursements"
]
}
"""
Read items by filter
from LucidDynamodb import DynamoDb
import logging
from boto3.dynamodb.conditions import Key
logging.basicConfig(level=logging.INFO)
if __name__ == "__main__":
db = DynamoDb()
item_creation_status = db.create_item(
table_name="dev_jobs",
item={
"company_name": "Google",
"role_id": "112",
"role": "Software Architect",
"salary": "$4,80,000",
"locations": ["Mountain View, California"],
"yearly_hike_percent": 13,
"benefits": set(["Internet reimbursements"]),
"overall_review":{
"overall_rating" : "3/5",
"compensation_and_benefits": "4.2/5"
}
}
)
try:
logging.info("Item created successfully")
except Exception as e:
logging.warning("Item creation failed - {}".format(e))
items = db.read_items_by_filter(
table_name='dev_jobs',
key_condition_expression=Key("company_name").eq("Google")
)
try:
logging.info("Items: {}".format(items))
except Exception as e:
logging.warning("Items doesn't exist")
"""
dineshsonachalam@macbook examples % python 12-read-items-by-filter.py
INFO:botocore.credentials:Found credentials in environment variables.
INFO:root:Item created successfully
INFO:root:Items: [
{
"locations": [
"Mountain View, California",
"Austin, Texas",
"Chicago, IL",
"Detroit, Michigan"
],
"role_id": "111",
"overall_review": {
"compensation_and_benefits": "3.9/5",
"overall_rating": "4/5",
"yearly_bonus_percent": "12"
},
"company_name": "Google",
"role": "Staff Software Engineer 2",
"salary": "$1,50,531",
"benefits": [
"Travel reimbursements",
"Internet, Medical, Edu reimbursements",
"Health insurance"
]
},
{
"locations": [
"Mountain View, California"
],
"role_id": "112",
"overall_review": {
"compensation_and_benefits": "4.2/5",
"overall_rating": "3/5"
},
"company_name": "Google",
"role": "Software Architect",
"yearly_hike_percent": "13",
"salary": "$4,80,000",
"benefits": [
"Internet reimbursements"
]
}
]
"""
Delete a table
from LucidDynamodb import DynamoDb
import logging
logging.basicConfig(level=logging.INFO)
if __name__ == "__main__":
db = DynamoDb()
delete_table_status = db.delete_table(table_name='dev_jobs')
try:
logging.info("Table deleted successfully")
except Exception as e:
logging.warning("Table delete operation failed")
table_names = db.read_all_table_names()
logging.info("Table names: {}".format(table_names))
"""
dineshsonachalam@macbook examples % python 13-delete-a-table.py
INFO:botocore.credentials:Found credentials in environment variables.
INFO:root:Table deleted successfully
INFO:root:Table names: ['CertMagic', 'dev_test', 'kp-config-v1', 'test-1']
"""
Running Tests
To run tests, run the following command
pytest -s
Github Workflow Artifacts
Artifact | Workflow |
---|---|
dependency-graph | integration-tests |
module-dependencies-license-report | integration-tests |
License
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
LucidDynamodb-1.0.106.tar.gz
(14.3 kB
view hashes)
Built Distribution
Close
Hashes for LucidDynamodb-1.0.106-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5f75d60c7e5377cde5a632534b50b6e17b6ef41cfeaa71626582d8c717cc1956 |
|
MD5 | 521bc249aa6759500f1905a37fb5d151 |
|
BLAKE2b-256 | d38cb22835b7300c7094cdc559ac67d94fe8cadc075e4d087f4cb555abbdbe69 |