Skip to content

yyuu/botornado

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

botornado

Overview

An asynchronous AWS client on Tornado.

This is a dirty work to move boto onto Tornado ioloop. Only SQS and S3 have been implemented as of 2012/Jan/26.

Requirements

Samples

almost all options are same with boto other than callback.

sample S3 client.

import os, sys
from botornado.s3.connection import AsyncS3Connection
client = AsyncS3Connection(aws_access_key_id=os.getenv('AWS_ACCESS_KEY_ID'),
                           aws_secret_access_key=os.getenv('AWS_SECRET_ACCESS_KEY'))
# getting all your buckets
def cb1(buckets):
    print 'your buckets:', buckets
client.get_all_buckets(callback=cb1)

sample SQS client.

import os, sys
import botornado.sqs
client = botornado.sqs.connect_to_region('ap-northeast-1',
                                         aws_access_key_id=os.getenv('AWS_ACCESS_KEY_ID'),
                                         aws_secret_access_key=os.getenv('AWS_SECRET_ACCESS_KEY'))
def cb2(queues):
    print 'your queues:', queues
client.get_all_queues(callback=cb2)

License

MIT

Author

About

An asynchronous AWS client on Tornado.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages