Skip to content
This repository has been archived by the owner on Sep 25, 2019. It is now read-only.

bitly/asyncdynamo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

async Amazon DynamoDB library for Tornado

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages