boto3_paste

Adapt boto3 to paste


License
BSD-3-Clause
Install
pip install boto3_paste==0.1

Documentation

boto3_paste

Utility for boto3.session.Session()

Install

from PyPI:

pip install boto3_paste

from source:

$ pip install .

How to use

If you use pyramid:

import boto3_paste

def main(global_config, **settings):
    boto_session = boto3_paste.session_from_config(settings)
    config = Configurator(settings=settings)

    # Some your configuration

    return config.make_wsgi_app()

Configuration Keys

See boto3.session.Session and botocore.session.Session's Documents.

Example ini-file:

boto3.aws_access_key_id =
boto3.aws_secret_access_key =
boto3.aws_session_token =
boto3.region_name =
boto3.profile_name =
boto3.botocore.profile =
boto3.botocore.region =
boto3.botocore.data_path =
boto3.botocore.config_file = ~/.aws/config
boto3.botocore.ca_bunfle =
boto3.botocore.credentials_file = ~/.aws/credentials
boto3.botocore.metadata_service_timeout = 1
boto3.botocore.metadata_service_num_attempts = 1

All keys are not mandatory. If you don't write any keys, boto3.session.Session instances are created by default.