Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

An asynchronous AWS client on Tornado.

License

NotificationsYou must be signed in to change notification settings

yyuu/botornado

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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, sysfrom botornado.s3.connection import AsyncS3Connectionclient = AsyncS3Connection(aws_access_key_id=os.getenv('AWS_ACCESS_KEY_ID'),                           aws_secret_access_key=os.getenv('AWS_SECRET_ACCESS_KEY'))# getting all your bucketsdef cb1(buckets):    print 'your buckets:', bucketsclient.get_all_buckets(callback=cb1)

sample SQS client.

import os, sysimport botornado.sqsclient = 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:', queuesclient.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


[8]ページ先頭

©2009-2025 Movatter.jp