Khám phá bucket

Giới thiệu về AWS Boto trong Python

Maksim Pecherskiy

Data Engineer

Thành phần S3 - Bucket

  • Thư mục desktop
  • Chính sách quyền riêng
  • Lưu trữ website
  • Tạo log

Bucket

Giới thiệu về AWS Boto trong Python

Thành phần S3 - Đối tượng

Đối tượng trong bucket

Giới thiệu về AWS Boto trong Python

Ta có thể làm gì với bucket?

  • Tạo bucket
  • Liệt kê bucket
  • Xóa bucket

Bucket

Giới thiệu về AWS Boto trong Python

Tạo bucket

Tạo client boto3

import boto3
s3 = boto3.client('s3', region_name='us-east-1', 
                         aws_access_key_id=AWS_KEY_ID, 
                         aws_secret_access_key=AWS_SECRET)

Tạo bucket

bucket = s3.create_bucket(Bucket='gid-requests')
Giới thiệu về AWS Boto trong Python

Bang!

Nổ bucket!

Giới thiệu về AWS Boto trong Python

Bucket trong console

Bucket trong console

Giới thiệu về AWS Boto trong Python

Liệt kê bucket

Tạo client boto3

import boto3
s3 = boto3.client('s3', region_name='us-east-1', 
                         aws_access_key_id=AWS_KEY_ID, 
                         aws_secret_access_key=AWS_SECRET)

Liệt kê bucket

bucket_response = s3.list_buckets()
Giới thiệu về AWS Boto trong Python

Liệt kê bucket

Lấy dict Buckets

buckets = bucket_response['Buckets']
print(buckets)
Giới thiệu về AWS Boto trong Python

Liệt kê bucket

Danh sách bucket

Giới thiệu về AWS Boto trong Python

Xóa bucket

Tạo client boto3

import boto3
s3 = boto3.client('s3', region_name='us-east-1', 
                         aws_access_key_id=AWS_KEY_ID, 
                        aws_secret_access_key=AWS_SECRET)

Xóa bucket

response = s3.delete_bucket('gid-requests')
Giới thiệu về AWS Boto trong Python

Tạm biệt bucket

Bucket đã bị xóa

Giới thiệu về AWS Boto trong Python

Tạm biệt bucket

Bucket đã bị xóa

Giới thiệu về AWS Boto trong Python

Thao tác khác

Tài liệu Boto3 cho S3 client

Giới thiệu về AWS Boto trong Python

Tóm tắt

s3.create_bucket(Bucket='buck')

s3.list_buckets()
s3.delete_bucket(Bucket='buck')

Đối tượng trong bucket S3

Giới thiệu về AWS Boto trong Python

Let's practice!

Giới thiệu về AWS Boto trong Python

Preparing Video For Download...