Metadata-Version: 2.1
Name: aws-session-handler
Version: 0.0.1
Summary: AWS Session Handler
Home-page: https://github.com/MarioVerbelen/aws_session_handler
Author: MarioVerbelen
Author-email: mario@verbelen.org
License: MIT License
Download-URL: https://github.com/MarioVerbelen/aws_session_handler
Keywords: boto3 amazon web services aws authentication
Platform: UNKNOWN

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())
```


