All Questions
2 questions
0
votes
2
answers
7k
views
AttributeError: 'Table' object has no attribute 'update_item' - DynamoDB v2 API
I am trying to conditionally update an item in DynamoDB using the following code:
from boto.dynamodb2.table import Table
conn = get_layer1_ddb_connection()
values_table = Table(table_name, ...
2
votes
2
answers
2k
views
Not able to connect the amazon DynamoDb Local using python boto sdk
I want to connect the db available inside DynamoDbLocal using the boto sdk.I followed the documentation as per the below link.
http://boto.readthedocs.org/en/latest/dynamodb2_tut.html#dynamodb-local
...