The oktadboto project is public and can be installed from pypi with pip for python3 on mac and linux.
pip install oktadboto
This library makes system call to oktad to get new session credentials oktad
After activating your credentials for an oktad profile using you username, password and mfa token you should be able to get new AWS session credentials without authenticating for upto 24 hours. AWS Sessions last only one hour though. Use otkadboto to create an AWS Session using RefreshableCredentials that can make a system call to get a fresh session token every hour.
1) Confirm that you can run oktad {PROFILE_NAME} -- env
in your shell to get environment variables for
AWS_SESSION_TOKEN, AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY.
- Example code to create a boto3 s3 client resource
from oktadboto import oktadboto_session refreshing_boto_session = oktadboto_session('{PROFILE_NAME}') s3_client = refreshing_boto_session.client('s3') s3_client.download_fileobj(...)
- The RefreshableCredentials will work until you need to reauthenticate with Oktad, usually 24 hours.
Git clone the respository:
git clone git@github.com:upserve/otkadboto.git
Pip install the development dependencies in a virtual environment:
pip install -e .[dev]
Run unit tests:
python -m unittest -v
Run flake8:
flake8 .
Run black:
black .