AWS と Boto3 の入門

Python で始める AWS Boto 入門

Maksim Pecherskiy

Data Engineer

Amazon Web Services とは?

私たちのホーム

ホームのサービス

私たちのデータプロジェクト

AWS サービス

Python で始める AWS Boto 入門

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)

response = s3.list_buckets()
Python で始める AWS Boto 入門

AWS コンソール

Python で始める AWS Boto 入門

IAM でキーを作成

IAM の概要

Python で始める AWS Boto 入門

IAM でキーを作成

IAM の概要

Python で始める AWS Boto 入門

サービスで IAM を探す

Python で始める AWS Boto 入門

Users をクリック

Python で始める AWS Boto 入門

ユーザー追加の操作

Python で始める AWS Boto 入門

ユーザー名を入力

Python で始める AWS Boto 入門

ポリシー付与の操作

Python で始める AWS Boto 入門

権限の確認スクリーンショット

Python で始める AWS Boto 入門

アクセスキーとシークレットを取得

Python で始める AWS Boto 入門

AWS サービス

S3

Python で始める AWS Boto 入門

AWS サービス

SNS

Python で始める AWS Boto 入門

AWS サービス

Comprehend

Python で始める AWS Boto 入門

AWS サービス

Rekognition

Python で始める AWS Boto 入門

AWS サービス

その他

Python で始める AWS Boto 入門

SAM

SAM

Python で始める AWS Boto 入門

GetItDone

Get It Done サービスのポスター

1 https://data.sandiego.gov/datasets/get-it-done-311/
Python で始める AWS Boto 入門

まとめ

  • AWS サービス = 家のインフラ
  • IAM、S3、SNS、Comprehend、Rekognition
  • AWS Key / Secret
  • Boto で S3 に接続
import boto3
s3 = boto3.client('s3', 
                  region_name='us-east-1', 
                  aws_access_key_id=AWS_KEY_ID,
                  aws_secret_access_key=AWS_SECRET)

response = s3.list_buckets()
Python で始める AWS Boto 入門

クラウドを活用しましょう

Python で始める AWS Boto 入門

Preparing Video For Download...