Created
June 1, 2021 05:54
-
-
Save dineshsonachalam/16c61b5a681f31a11d3c93dd33ada68d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from LucidDynamodb.Operations import DynamoDb | |
import os | |
import logging | |
import uuid | |
from boto3.dynamodb.conditions import Key | |
logging.basicConfig(level=logging.INFO) | |
AWS_ACCESS_KEY_ID = os.getenv("AWS_ACCESS_KEY_ID") | |
AWS_SECRET_ACCESS_KEY = os.getenv("AWS_SECRET_ACCESS_KEY") | |
if __name__ == "__main__": | |
db = DynamoDb(region_name="us-east-1", | |
aws_access_key_id=AWS_ACCESS_KEY_ID, | |
aws_secret_access_key=AWS_SECRET_ACCESS_KEY) | |
item_update_status = db.update_item( | |
TableName="dev_jobs", | |
Key={ | |
"company_name": "Google", | |
"role_id": "e85f79a7-0857-4086-afbd-da13ec76b442" | |
}, | |
AttributesToUpdate={ | |
'benefits': "Free Food" | |
}, | |
Operation="ADD_ATTRIBUTE_TO_STRING_SET" | |
) | |
if(item_update_status == True): | |
logging.info("Update is successful") | |
else: | |
logging.warning("Update failed") | |
item = db.read_item( | |
TableName="dev_jobs", | |
Key={ | |
"company_name": "Google", | |
"role_id": "e85f79a7-0857-4086-afbd-da13ec76b442" | |
}) | |
if(item != None): | |
logging.info("Item: {}".format(item)) | |
else: | |
logging.warning("Item doesn't exist") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment