kennethreitz-archive / dynamo

Licence: ISC license
Simple DynamoDB API for Python

Programming Languages

python
139335 projects - #7 most used programming language

Dynamo: Simple DynamoDB API

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))

# Or, if you have AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY defined as
# environment variables, you can do:
table = dynamo.table(TABLE_NAME)

Writing is simple:

table['new-key']['attribute'] = ['value']

So is reading:

>>> table['existing-key']['attribute']
'value'

Installation

Installing dynamo is simple with pip:

$ pip install dynamo
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].