asyncdynamo

async Amazon DynamoDB library for Tornado


Keywords
dynamo, dynamodb, amazon, async, tornado
License
Apache-2.0
Install
pip install asyncdynamo==0.2.8

Documentation

Asyncdynamo

Asynchronous Amazon DynamoDB library for Tornado

Requires boto>=2.3 and python 2.7

Tested with Tornado 1.2.1

Installation

Installing from github: pip install git+https://github.com/bitly/asyncdynamo.git

Installing from source: git clone git://github.com/bitly/asyncdynamo.git; cd asyncdynamo; python setup.py install

Usage

Asyncdynamo syntax seeks to mirror that of Boto.

from asyncdynamo import asyncdynamo
db = asyncdynamo.AsyncDynamoDB("YOUR_ACCESS_KEY", "YOUR_SECRET_KEY")

def item_cb(item):
	print item
	
db.get_item('YOUR_TABLE_NAME', 'ITEM_KEY', item_cb)

Requirements

The following two python libraries are required

Issues

Please report any issues via github issues