https://github.com/yiskaneto/aws_boto3_sdk_helpers
Contains helper functions for the AWS Python sdk (Boto3) package.
https://github.com/yiskaneto/aws_boto3_sdk_helpers
aws boto3 botocore
Last synced: 5 months ago
JSON representation
Contains helper functions for the AWS Python sdk (Boto3) package.
- Host: GitHub
- URL: https://github.com/yiskaneto/aws_boto3_sdk_helpers
- Owner: yiskaneto
- License: mit
- Created: 2023-04-17T19:25:08.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-21T04:35:45.000Z (almost 2 years ago)
- Last Synced: 2025-09-19T08:00:49.018Z (9 months ago)
- Topics: aws, boto3, botocore
- Language: Python
- Homepage: https://pypi.org/project/aws-boto3-sdk-helpers/
- Size: 146 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AWS Boto3 SDK Helpers
Contains helper functions for the AWS Python sdk (Boto3) package.
## Install
`python -m pip install --upgrade aws-boto3-sdk-helpers`
## Manual use of boto3
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 botocore
```