Spaces:
Configuration error
Configuration error
File size: 330 Bytes
681c53e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
from app import add_data_to_dynamodb, get_data_from_dynamodb
test_data = {
'id': '123',
'title': 'Example Title',
'keywords': 'example, test, boto3',
'createdAt': '2024-09-25T12:34:56'
}
add_data_to_dynamodb(test_data)
retrieved_data = get_data_from_dynamodb('123')
print(retrieved_data)
|