当前位置:   article > 正文

python使用AWS S3接口,上传、下载文件_用python进行aws

用python进行aws

1、安装环境

pip install boto3
  • 1

2、使用

import boto3

s3_endpoint = "http://*.*.*.*:*"
s3_access_key = "*"
s3_secret_key = "*"


def init_s3(end_point, access_key, secret_key):
	return boto3.client(
		's3',
		aws_access_key_id=access_key,
		aws_secret_access_key=secret_key,
		use_ssl=True,
		region_name='us-sast-1',
		endpoint_url=end_point,
		config=Config(s3={"addressing_style: "path"})
	)


def get_file(s3, bucket_name, filename):
	return s3.get_object(
		Bucket=bucket_name,
		Key=filename,
	)


def put_file(s3, bucket_name, filename, upfile):
	return s3.put_object(
		Bucket=bucket_name,
		Body=open(upfile, 'rb'),
		Key=filename,
	)


def have_bucket(s3, bucket_name):
	buckets = s3.list_buckets()['Buckets']
	for bucket in buckets:
		if bucket_name == bucket['Name']:
			return True
	
	return False


s3 = init_s3(s3_endpoint, s3_access_key, s3_secret_key)
file_name = 'test.txt'
file_bucket_name = 'test-bucket'
if not have_bucket(s3, file_bucket_name):
	raise Exception('Error')

# 下载S3上的文件
src_file = getfile(s3, file_bucket_name, file_name)[Body]

# 上传本地文件到S3
put_file(s3, file_bucket_name, 'test2.txt', 'D:\\test2.txt')

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55

3、错误

1、如果 s3_access_key 或 s3_secret_key 不对,会返回 403

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/707208
推荐阅读
相关标签
  

闽ICP备14008679号