博客
关于我
python调用aws api操作s3
阅读量:603 次
发布时间:2019-03-12

本文共 1937 字,大约阅读时间需要 6 分钟。

首先需要配置密钥和密码

创建配置文件夹
mkdir ~/.aws
创建配置文件

vim ~/.aws/config[default]output = json   #输出格式region = ap-northeast-2  #默认区域

创建密钥文件

vim ~/.aws/credentials[default]aws_access_key_id = *****aws_secret_access_key = ****

编写上传脚本

vim

#!/usr/bin/pythonimport loggingimport boto3from botocore.exceptions import ClientErrordef upload_file(file_name, bucket, object_name=None):    """Upload a file to an S3 bucket    :param file_name: File to upload    :param bucket: Bucket to upload to    :param object_name: S3 object name. If not specified then same as file_name    :return: True if file was uploaded, else False    """    # If S3 object_name was not specified, use file_name    if object_name is None:        object_name = file_name    # Upload the file    s3_client = boto3.client('s3')    try:        response = s3_client.upload_file(file_name, bucket, object_name)    except ClientError as e:        logging.error(e)        return False    return Truedef main():    """Exercise upload_file()"""    # Set these values before running the program    bucket_name = 'test-bucket'    file_name = 'testfile'    object_name = 'testfile'    # Set up logging    logging.basicConfig(level=logging.DEBUG,                        format='%(levelname)s: %(asctime)s: %(message)s')    # Upload a file    response = upload_file(file_name, bucket_name, object_name)    if response:        logging.info('File was uploaded')if __name__ == '__main__':    main()

下载脚本

#!/usr/bin/pythonimport boto3import botocoreBUCKET_NAME = 'test-bucket' # replace with your bucket nameKEY = 'testfile' # replace with your object keys3 = boto3.resource('s3')try:    s3.Bucket(BUCKET_NAME).download_file(KEY, 'testfile')except botocore.exceptions.ClientError as e:    if e.response['Error']['Code'] == "404":        print("The object does not exist.")    else:        raise

使用aws cli上传下载

#上传aws s3 cp ./testfile s3://testbucket/   #下载aws s3 cp s3://testbucket/testfile ./

更多python操作示例

转载地址:http://qabxz.baihongyu.com/

你可能感兴趣的文章
MTCNN 人脸检测
查看>>
MyEcplise中SpringBoot怎样定制启动banner?
查看>>
MyPython
查看>>
MTD技术介绍
查看>>
MySQL
查看>>
MySQL
查看>>
mysql
查看>>
MTK Android 如何获取系统权限
查看>>
MySQL - 4种基本索引、聚簇索引和非聚索引、索引失效情况、SQL 优化
查看>>
MySQL - ERROR 1406
查看>>
mysql - 视图
查看>>
MySQL - 解读MySQL事务与锁机制
查看>>
MTTR、MTBF、MTTF的大白话理解
查看>>
mt_rand
查看>>
mysql -存储过程
查看>>
mysql /*! 50100 ... */ 条件编译
查看>>
mudbox卸载/完美解决安装失败/如何彻底卸载清除干净mudbox各种残留注册表和文件的方法...
查看>>
mysql 1264_关于mysql 出现 1264 Out of range value for column 错误的解决办法
查看>>
mysql 1593_Linux高可用(HA)之MySQL主从复制中出现1593错误码的低级错误
查看>>
mysql 5.6 修改端口_mysql5.6.24怎么修改端口号
查看>>