How to Install Boto 3 with Python on Windows 10 (AWS)
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
pythonTo Exit press CTRL + Z and then Return.
pip --versionpip install boto3python.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