기본: Amazon S3 버킷 생성, 객체 업로드 및 다운로드
준비
~ 안에
import json
from pprint import pp
import boto3
s3 = boto3.client("s3")
버킷 만들기
~ 안에
response = s3.create_bucket(
Bucket="<bucket_name>",
CreateBucketConfiguration={"LocationConstraint": "<region>"},
)
pp(response)
밖으로
{'ResponseMetadata': {'RequestId': '45E82X1PFTJ448BX',
'HostId': '8gqIBKcd9l6hvE6cj6mm+wDEBNpwMUWkYam1Qd/CFINiQmNI7rqn+gY8/fnLpx53PjlRFjmU8u4=',
'HTTPStatusCode': 200,
'HTTPHeaders': {'x-amz-id-2': '8gqIBKcd9l6hvE6cj6mm+wDEBNpwMUWkYam1Qd/CFINiQmNI7rqn+gY8/fnLpx53PjlRFjmU8u4=',
'x-amz-request-id': '45E82X1PFTJ448BX',
'date': 'Wed, 29 Jun 2022 15:22:21 GMT',
'location': 'http://<bucket_name>.s3.amazonaws.com/',
'server': 'AmazonS3',
'content-length': '0'},
'RetryAttempts': 0},
'Location': 'http://<bucket_name>.s3.amazonaws.com/'}
개체 업로드
~ 안에
response = s3.put_object(
Body=open("/tmp/test.txt", mode="rb").read(),
Bucket="<bucket_name>",
ContentType="text/plain",
Key="test.txt",
)
pp(response)
밖으로
{'ResponseMetadata': {'RequestId': 'KGDVN0Q8539K8ATR',
'HostId': 'Ij3RnIyhOtV9j2cUQ52gucTKroPVC1uo744jAyRy06itAbttcfjU8XChi3GpaqdD/IhhaOVqqiM=',
'HTTPStatusCode': 200,
'HTTPHeaders': {'x-amz-id-2': 'Ij3RnIyhOtV9j2cUQ52gucTKroPVC1uo744jAyRy06itAbttcfjU8XChi3GpaqdD/IhhaOVqqiM=',
'x-amz-request-id': 'KGDVN0Q8539K8ATR',
'date': 'Wed, 29 Jun 2022 15:34:44 GMT',
'etag': '"02bcabffffd16fe0fc250f08cad95e0c"',
'server': 'AmazonS3',
'content-length': '0'},
'RetryAttempts': 0},
'ETag': '"02bcabffffd16fe0fc250f08cad95e0c"'}
개체 다운로드
~ 안에
response = s3.get_object(
Bucket="<bucket_name>",
Key="test.txt",
)
pp(response)
밖으로
{'ResponseMetadata': {'RequestId': 'VFRGAK3EBSGA1XGS',
'HostId': 'VBUkwBOKBD2OwD32lS+Dr6k5qZSpy4m5HS6Sr37VD07OioAy4FfBCsOn+Qs5FZB8gNYEkjnBlLo=',
'HTTPStatusCode': 200,
'HTTPHeaders': {'x-amz-id-2': 'VBUkwBOKBD2OwD32lS+Dr6k5qZSpy4m5HS6Sr37VD07OioAy4FfBCsOn+Qs5FZB8gNYEkjnBlLo=',
'x-amz-request-id': 'VFRGAK3EBSGA1XGS',
'date': 'Wed, 29 Jun 2022 15:34:49 GMT',
'last-modified': 'Wed, 29 Jun 2022 '
'15:34:44 GMT',
'etag': '"02bcabffffd16fe0fc250f08cad95e0c"',
'accept-ranges': 'bytes',
'content-type': 'text/plain',
'server': 'AmazonS3',
'content-length': '16'},
'RetryAttempts': 0},
'AcceptRanges': 'bytes',
'LastModified': datetime.datetime(2022, 6, 29, 15, 34, 44, tzinfo=tzutc()),
'ContentLength': 16,
'ETag': '"02bcabffffd16fe0fc250f08cad95e0c"',
'ContentType': 'text/plain',
'Metadata': {},
'Body': <botocore.response.StreamingBody object at 0x7fc60007b8e0>}
개체 본문 읽기
~ 안에
content = response["Body"].read().decode("utf-8")
print(content)
밖으로
This is a test.
Reference
이 문제에 관하여(기본: Amazon S3 버킷 생성, 객체 업로드 및 다운로드), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/shunku/basic-create-amazon-s3-bucket-upload-and-download-objects-1knc텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)