Path: blob/master/AWS/AWS_Get_files_from_S3_bucket.ipynb
2973 views
Kernel: Python 3
AWS - List objects from S3 bucket
Tags: #aws #cloud #storage #S3bucket #operations #snippet #list #objects
Author: Maxime Jublou
Last update: 2023-11-20 (Created: 2021-09-20)
Description: This notebook retrieves objects from an Amazon Web Services (AWS) S3 bucket, allowing users to easily access their data stored in the cloud.
Input
Import libraries
In [ ]:
Setup variables
Mandatory
aws_access_key_id
: This variable is used to store the AWS access key ID.aws_secret_access_key
: This variable is used to store the AWS secret access key.bucket_name
: The name of the S3 bucket from which you want to list the files.
In [ ]:
Model
Connect to AWS
In [ ]:
List objects in the S3 bucket
In [ ]:
Output
Display pre-signed URL
In [ ]: