為您解碼網(wǎng)站建設(shè)的點(diǎn)點(diǎn)滴滴
發(fā)表日期:2018-01 文章編輯:小燈 瀏覽次數(shù):2843
pip install boto3
安裝aws cli 客戶端
pip install awscli
note:
先安裝boto3,再安裝awscli
安裝完成后,在終端就可以type:
aws configure
根據(jù)提示輸入access_key_id, secret_access_key,and region name
除了在終端輸入aws configure
也可以在~/.aws/
下的config 和Credentials 進(jìn)行配置
鏈接:
class boto3.session.Session (aws_access_key_id=None, aws_secret_access_key=None, aws_session_token=None,region_name=None,botocore_session=None, profile_name=None)
assession 存儲配置狀態(tài)并允許你創(chuàng)建服務(wù)客戶端和資源
參數(shù):
available_profiles
session 證書可用的配置文件
client(service_name,region_name=None, api_version=None,use_ssl=True, verify=None,endpoint=None, aws_acess_key_id=None, aws_secret_key=None,aws_session_token=None config=None)
通過名字去創(chuàng)建一個(gè)低等級的服務(wù)客戶端
參數(shù)
get_available_services()
去獲得有效的一串服務(wù)器use_ssl
將被忽略返回值
Service client instance
session的事件發(fā)射器
列出可用的分區(qū)
返回類型:列表
返回值:返回一個(gè)含有分區(qū)名字的列表
列出一個(gè)特定分區(qū)的區(qū)域和端點(diǎn)名字
返回值:一個(gè)包含端點(diǎn)名字的列表 例如["us-east-1"]
獲得一個(gè)可用的能夠通過Session.resources()加載為資源客戶端的服務(wù)列表,
返回類型:列表
返回值:
服務(wù)名字的列表
獲得一個(gè)能通過Session.client() 加載為低等級客戶端的服務(wù)
返回類型:列表
返回值:服務(wù)名字的列表
通過名字創(chuàng)建一個(gè)資源服務(wù)客戶端
返回值:
ServiceResource 的子類
#boto3 import boto3 s3 = boto3.resource('s3')
在boto3,所有的行為必須通過關(guān)鍵字參數(shù)傳遞進(jìn)去,并且,一個(gè)bucket的配置必須手動(dòng)配置
# Boto 3 s3.create_bucket(Bucket='mybucket') s3.create_bucket(Bucket='mybucket',CreateBucketConfiguration={'LocationConstraint': 'us-west-1'})
用Boto3的resource 去獲得一個(gè)bucket是非常方便的,但不會(huì)自動(dòng)驗(yàn)證bucket是否真的存在
# Boto 3 import botocore bucket = s3.Bucket('mybucket') exists = True try: s3.meta.client.head_bucket(Bucket='mybucket') except botocore.exceptions.ClientError as e: # If a client error is thrown, then check thatit was a 404 error. # If it was a 404 error, then the bucket does not exist. error_code = int(e.response['Error']['Code']) if error_code == 404: exists = False
發(fā)送到
日期:2018-04 瀏覽次數(shù):6774
日期:2017-02 瀏覽次數(shù):3448
日期:2017-09 瀏覽次數(shù):3674
日期:2017-12 瀏覽次數(shù):3542
日期:2018-12 瀏覽次數(shù):4839
日期:2016-12 瀏覽次數(shù):4592
日期:2017-07 瀏覽次數(shù):13658
日期:2017-12 瀏覽次數(shù):3522
日期:2018-06 瀏覽次數(shù):4278
日期:2018-05 瀏覽次數(shù):4454
日期:2017-12 瀏覽次數(shù):3568
日期:2017-06 瀏覽次數(shù):3993
日期:2018-01 瀏覽次數(shù):3957
日期:2016-12 瀏覽次數(shù):3922
日期:2018-08 瀏覽次數(shù):4439
日期:2017-12 瀏覽次數(shù):3726
日期:2016-09 瀏覽次數(shù):6443
日期:2018-07 瀏覽次數(shù):3220
日期:2016-12 瀏覽次數(shù):3240
日期:2018-10 瀏覽次數(shù):3392
日期:2018-10 瀏覽次數(shù):3501
日期:2018-09 瀏覽次數(shù):3591
日期:2018-02 瀏覽次數(shù):3609
日期:2015-05 瀏覽次數(shù):3536
日期:2018-09 瀏覽次數(shù):3316
日期:2018-06 瀏覽次數(shù):3444
日期:2017-02 瀏覽次數(shù):3882
日期:2018-02 瀏覽次數(shù):4346
日期:2018-02 瀏覽次數(shù):4190
日期:2016-12 瀏覽次數(shù):3586
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.