“Загрузите изображение на S3 Python” Ответ

Загрузить файл в S3 Python

# easy way
import boto3

s3 = boto3.resource(
    service_name='s3',
    region_name='Your region',
    aws_access_key_id='Your id',
    aws_secret_access_key="Your Key")

bucket = s3.Bucket('your bucket name')

bucket.upload_file(Filename='temp.csv', Key='temp.csv')
# file path __________↑                 ↑ 
# (which you want to upload)            |
#                                       |______path (where you want to upload inside bucket)

Darkstar

Загрузите изображение на S3 Python

The AWS SDK for Python provides a pair of methods to upload a file to an S3 bucket. The upload_file method accepts a file name, a bucket name, and an object name.
Frightened Ferret

Ответы похожие на “Загрузите изображение на S3 Python”

Вопросы похожие на “Загрузите изображение на S3 Python”

Больше похожих ответов на “Загрузите изображение на S3 Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования