Repo for the Udemy course: Python Programming for AWS
I'm using localstack for this course to emulate an AWS environment. checkout the boto3/docker-compose.yaml for details on which services are being emulated.
To create and setup python venv:
cd boto3- Run the below command:
python -m venv ./env
source ./env/bin/activate
pip install -r requirements.txt
To start localstack docker container:
-
Start Docker Desktop
-
cd boto3 -
Run the following command:
docker compose up -d