Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dieissonmartins/acaa35a9dc802500cbdf3f819eb3df7c to your computer and use it in GitHub Desktop.
Save dieissonmartins/acaa35a9dc802500cbdf3f819eb3df7c to your computer and use it in GitHub Desktop.
boto3.client(‘s3’)
import boto3
s3_client = boto3.client('s3')
s3_client.download_file(
Bucket='radishlogic-bucket',
Key='s3_folder/photo.jpg',
Filename='local_folder/image.jpg'
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment