api_iam_helpers

Utilities for building IAM authenticated API requests


License
MIT
Install
pip install api_iam_helpers==0.1

Documentation

API Gateway IAM Helpers

A collection of utilities to make submitting IAM authenticated requests to AWS API Gateway deployments simpler.

Documentation on what AWS expects in an IAM authenticated request is available here:

Usage:

>>> from api_iam_helpers import build_req
>>> url,headers = build_req.get_signed_request(access_key,secret_key,'eu-west-1',api_id,'','/api/v1')
>>> r = requests.get(url,headers=headers)
>>> print r.text
Hello World