Python code base: Simple S3 project - Create an S3 bucket and upload an image file.
This simple tutorial is to help learn: - Initialise a Git repository in the current working directory (# git init) and set up basic global configurations. - Add and stage specific files or all files for commit in the local Git respository. - Push local changes to remote Github repository to sync with local changes. - Create an S3 bucket in a specified AWS region. - Upload an image file to the newly created S3 bucket. - Verify successful upload by manually checking the S3 bucket contents and/or handling any errors. - Ask for user input when setting up global configurations for AWS credentials to avoid hard-coding credentials into the project. Code Base Use Git commands to push the main.py file to the remote Github repository: # Initialise the repository - git init # Set up global configurations: - git config --global user.name "<user_name<" - git config --global user.email "<email>" # Create a connection between a local git repository and the main rem...