Metadata-Version: 2.1
Name: aws_session_handler
Version: 0.0.4
Summary: AWS Session Handler
Home-page: https://github.com/MarioVerbelen/aws_session_handler
Download-URL: https://github.com/MarioVerbelen/aws_session_handler
Author: MarioVerbelen
Author-email: mario@verbelen.org
License: MIT License
Keywords: boto3 amazon web services aws authentication
Description-Content-Type: text/markdown
License-File: LICENSE

aws_session_handler
===================

Amazon Web Service python session helper


Features
--------
* cache credentials on disk if assume_role with mfa serial

Usage
-----
```bash
pip install aws-session-handler
```
```python
from aws_session_handler import AwsSessionHandler

handler = AwsSessionHandler(profile='default')
s3 = handler.client('s3')
print(s3.list_buckets())

```
