A package containing modules for common AWS SDK tasks.
Project description
This package represents a collection of “helper” modules to increase efficiency when working with AWS’s Python SDK.
Searching though readthedocs.io is fine however having to constantly refer back to function signatures while composing Lambda’s is time consuming and repetitive.
The awshelpers package attempts to address this issue in a variety of ways.
- Type Hinting
Where ever possible and warranted proper docstrings have been added to expose data types within function signatures. When coupled with an IDE like Pycharm importing these commented functions into your code will allow for faster and more accurate composition.
- Predictable Naming Conventions
AWS has created an SDK that follows sensible naming conventions like get_*, list_*, describe_* etc. The awshelpers package follows a similar style. Since keywords like get, list, send can be shared across modules it is suggested that the various modules you may import use as keyword when importing these modules avoiding naming collisions.
- Below are two examples::
>>> from awshelpers.ssm import get as ssm_get >>> from awshelpers.s3 import get as s3_get
Event
A module for displaying Lambda event/payload data. Capable of…
formatted dump of event data
parsing specific AWS Services (SNS) Message payloads
- To use simply do::
>>> from awshelpers.event import dump as evt_dump >>> d = evt_dump.payload(event)
Simple Systems Manager
A module that interacts with EC2 instances that have the SSM agent installed. http://docs.aws.amazon.com/systems-manager/latest/userguide/ssm-agent.html
- To use simply do::
>>> from awshelpers.ssm import get as ssm_get, list as ssm_list, send as ssm_send >>> command_result = ssm_send.command(['xx-xxxxxx'],'AWS-RunShellScript', 240, 'My SSM command',['ls -alh','ping -c 3 8.8.8.8'], 'us-west-2', 'ssm-command-bucket', 'service-name')
S3
A module that interacts with S3.
- To use simply do::
>>> from awshelpers.s3 import get as s3_get >>> s = s3_get.item('bucket-name','path/to/my/file.txt','/tmp/output.txt')
EC2
A module that interacts with EC2.
- To use simply do::
>>> from awshelpers.ec2 import describe as ec2_describe
Elastic IPs
- List the elastic IPs associated to one or more instances::
>>> ec2_describe.eip_addresses(['eni-xxxxxx','eni-yyyyyy'], 'PublicIp')
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 Distributions
Built Distribution
File details
Details for the file awshelpers-0.0.48-py2.py3-none-any.whl
.
File metadata
- Download URL: awshelpers-0.0.48-py2.py3-none-any.whl
- Upload date:
- Size: 14.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46883afb12a358440ecb91fb990dd59e2bfe093a4d51946b652c70101e3e048f |
|
MD5 | d4696c5ab7d136af5805ce23002b517a |
|
BLAKE2b-256 | fd9dc97c7aedd807a1694118a9fc3db8f2099921f92514bd344a72409f4612b7 |