A low-level Amazon Web Services API client for Tornado
Project description
A low-level Amazon Web Services API client for Tornado
Installation
tornado-aws may be installed via the Python package index with the tool of your choice. I prefer pip:
pip install tornado-aws
Example
import json
import pprint
import tornado_aws
from tornado import gen, ioloop
HEADERS = {'Content-Type': 'application/x-amz-json-1.0',
'x-amz-target': 'DynamoDB_20120810.DescribeTable'}
PAYLOAD = {'TableName': 'my-dynamodb-table'}
_ioloop = ioloop.IOLoop.instance()
@gen.coroutine
def async_request():
client = tornado_aws.AsyncAWSClient('dynamodb')
response = yield client.fetch('POST', '/', headers=HEADERS,
body=json.dumps(PAYLOAD))
x = json.loads(response.body.decode('utf-8'))
pprint.pprint(x)
_ioloop.stop()
_ioloop.add_callback(async_request)
_ioloop.start()
Documentation
Documentation is available on ReadTheDocs.
Requirements
Version History
Available at https://tornado-aws.readthedocs.org/en/latest/history.html
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tornado-aws-2.0.0.tar.gz
(14.2 kB
view hashes)
Built Distribution
Close
Hashes for tornado_aws-2.0.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | deb363d6798a7e3bb4574ab572d178b6195949cf0cb69f28cdf92b13b14df553 |
|
MD5 | 3dfbcc02f811a47aa0214651f23b0a0d |
|
BLAKE2b-256 | b6093546f614236c56271fa77afa9ca41c536bdb283af1bd15f7a598d01b462a |