Asynchronous Amazon DynamoDB library for Tornado
Requires boto>=2.3 and python 2.7
Tested with Tornado 1.2.1
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
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)
The following two python libraries are required
Please report any issues via github issues