
This article has not been completed yet. However, it may already contain helpful information and therefore it has been published at this stage.
Introduction
Table of Content:
- Introduction
- Prerequisites
- <Text>
- Conclusion
Prerequisites
Download Python
The official home of the Python Programming Language







python

To Exit press CTRL + Z and then Return.
pip --version

pip install boto3

python.exe -m pip install --upgrade pip


>>> import boto3
>>> s3 = boto3.resource('s3')
>>> for bucket in s3.buckets.all():
print(bucket.name)

exit()

Conclusion
Sources:
boto3
The AWS SDK for Python
