文件名称:bucketstore:用于与Amazon S3进行交互的简单库
文件大小:23KB
文件格式:ZIP
更新时间:2024-02-19 14:40:17
python aws s3 boto3 boto
BucketStore是使用Python编写的非常简单的Amazon S3客户端。 它的目标是要比boto3更直接使用,并且仅专注于Amazon S3,而忽略其余的AWS生态系统。
产品特点
将S3存储桶视为键/值存储。
自动支持AWS_ACCESS_KEY_ID , AWS_SECRET_ACCESS_KEY和AWS_DEFAULT_REGION环境变量。
使密钥(或整个存储桶)易于公开访问。
轻松获取给定密钥的公共URL。
为给定密钥生成临时URL。
以Python方式使用S3!
用法
安装
$ pip install bucketstore
轻松获取(或创建)存储桶:
import bucketstore
# Create the bucket if it doesn't exist.
bucket = bucketstore . get ( 'bucketstore-playground' , create = True )
将存储桶视为键/值存储区:
>>> bucket
【文件预览】:
bucketstore-master
----.gitignore(1KB)
----setup.cfg(191B)
----README.md(3KB)
----Pipfile.lock(28KB)
----.github()
--------workflows()
----tests()
--------conftest.py(942B)
--------__init__.py(30B)
--------test_bucketstore.py(7KB)
----LICENSE(1KB)
----Pipfile(142B)
----.prospector.yaml(987B)
----bucketstore.py(9KB)
----setup.py(1KB)
----.travis.yml(1KB)
----tox.ini(167B)