Skip to content
Snippets Groups Projects
Commit dd4e6123 authored by Gavin M. Roy's avatar Gavin M. Roy
Browse files

Doc updates

parent 031d7ec6
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -26,7 +26,9 @@ Example
 
HEADERS = {'Content-Type': 'application/x-amz-json-1.0',
'x-amz-target': 'DynamoDB_20120810.DescribeTable'}
PAYLOAD = {'TableName': 'prod-us-east-1-history-events'}
PAYLOAD = {'TableName': 'my-dynamodb-table'}
_ioloop = ioloop.IOLoop.instance()
 
@gen.coroutine
def async_request():
Loading
Loading
@@ -35,9 +37,8 @@ Example
body=json.dumps(PAYLOAD))
x = json.loads(response.body.decode('utf-8'))
pprint.pprint(x)
ioloop.IOLoop.instance().stop()
_ioloop.stop()
 
_ioloop = ioloop.IOLoop.instance()
_ioloop.add_callback(async_request)
_ioloop.start()
 
Loading
Loading
Loading
Loading
@@ -3,6 +3,10 @@
Version History
===============
 
0.3.0 (2016-02-03)
------------------
- Make authentication work with EC2 Instance metadata, add async support for credential fetching.
0.2.0 (2016-02-02)
------------------
- Add support for fetching credentials and region from EC2 Instance metadata
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment