Python之boto3模块

安装

pip install boto3

配置密钥

aws configure

接口方式

boto3:提供两个级别的接口访问aws:high level的resource的接口,low level的client接口

用法

res = boto3.resource(‘service name’)
client = boto3.client(‘service name’)
client = boto3.client(‘service name’,‘region’)

Guess you like

Origin blog.csdn.net/weixin_44375561/article/details/120731633