Helpers to make using boto3 more enjoyable
Project description
What is this?
This is a util package to help making boto3 more enjoyable.
Below is a list of the use cases:
client
instead of doing:
import boto3
client = boto3.client('cloudformation')
You can do
import betterboto
with betterboto.ClientContextManager('cloudformation') as client:
client.create_stack
Instead of doing:
import boto3
role_arn = 'arn:aws:iam::123456789010:role/super-role'
role_session_name = 'super-role'
sts = boto3.client('sts')
assumed_role_object = sts.assume_role(
RoleArn=role_arn,
RoleSessionName=role_session_name,
)
credentials = assumed_role_object['Credentials']
kwargs = {
"aws_access_key_id": credentials['AccessKeyId'],
"aws_secret_access_key": credentials['SecretAccessKey'],
"aws_session_token": credentials['SessionToken'],
}
client = boto3.client(
'cloudformation',
aws_access_key_id=credentials['AccessKeyId'],
aws_secret_access_key=credentials['SecretAccessKey'],
aws_session_token=credentials['SessionToken'],
)
You can do
import betterboto
with betterboto.CrossAccountClientContextManager('cloudformation', 'arn:aws:iam::123456789010:role/super-role', 'super-role') as client:
client.create_stack
cloudformation
instead of
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
better-boto-0.0.1.tar.gz
(2.2 kB
view details)
File details
Details for the file better-boto-0.0.1.tar.gz
.
File metadata
- Download URL: better-boto-0.0.1.tar.gz
- Upload date:
- Size: 2.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/39.1.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
da7d5756f8ad5f248070815adfc7f8b3389d16e91134e017383afb449cacec5f
|
|
MD5 |
cfaef6e2ce48112ca18415e10a33ec69
|
|
BLAKE2b-256 |
c20d232b330c5b5b3af95a012c4a58ebd2d74f4f841a0fca0f8d0038621a4a54
|