Simple DynamoDB Interface.
Project description
This module allows you to interact with DynamoDB much like a native Python dictionary.
Usage
import dynamo ACCESS_KEY = 'XXXXXX' SECRET_ACCESS_KEY = 'XXXXXX/XXXXXXXXX+XXXXXXX' TABLE_NAME = 'XXXXX' table = dynamo.table(TABLE_NAME, (ACCESS_KEY, SECRET_ACCESS_KEY))
Writing is simple:
table['new-key']['key'] = ['value']
So is reading:
>>> table['existing-key']['attribute'] 'value'
Installation
Installing dynamo is simple with pip:
$ pip install dynamo
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
dynamo-0.1.0.tar.gz
(3.1 kB
view hashes)