Metadata-Version: 2.1
Name: aws-boto3-sdk-helpers
Version: 1.0.0
Summary: Contains helper functions that rely on the aws python sdk (Boto3)
Author: yiskaneto
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: boto3
Requires-Dist: botocore

# AWS Boto3 SDK Helpers

A few examples on how to use the AWS python SDK (Boto3)

- [AWS Boto3 SDK Helpers](#aws-boto3-sdk-helpers)
  - [Setup](#setup)
    - [Create Virtual Environment](#create-virtual-environment)
    - [Install Boto 3](#install-boto-3)

## Setup

### Create Virtual Environment

```bash
python -m venv /opt/python_envs/boto3 && source /opt/python_envs/boto3/bin/activate
```

### Install Boto 3

[Install Boto 3 Official Docs](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/quickstart.html#install-boto3)

```bash
python -m pip install boto3
```
