Alibaba Cloud OSS (Object Storage Service) SDK V2 for Python
Project description
Alibaba Cloud OSS SDK for Python v2
alibabacloud-oss-python-sdk-v2 is the Developer Preview for the v2 of the OSS SDK for the Python programming language
README in Chinese
About
- This Python SDK is based on the official APIs of Alibaba Cloud OSS.
- Alibaba Cloud Object Storage Service (OSS) is a cloud storage service provided by Alibaba Cloud, featuring massive capacity, security, a low cost, and high reliability.
- The OSS can store any type of files and therefore applies to various websites, development enterprises and developers.
- With this SDK, you can upload, download and manage data on any app anytime and anywhere conveniently.
Running Environment
- Python 3.8 or above.
Installing
Install the pre release version through pip
$ pip install --pre alibabacloud-oss-v2
Install from the unzipped installer package directly
$ sudo python setup.py install
Getting Started
List Bucket
import alibabacloud_oss_v2 as oss
def main():
region = "cn-hangzhou"
# Loading credentials values from the environment variables
credentials_provider = oss.credentials.EnvironmentVariableCredentialsProvider()
# Using the SDK's default configuration
cfg = oss.config.load_default()
cfg.credentials_provider = credentials_provider
cfg.region = region
client = oss.Client(cfg)
# Create the Paginator for the ListBuckets operation
paginator = client.list_buckets_paginator()
# Iterate through the bucket pages
for page in paginator.iter_page(oss.ListBucketsRequest(
)
):
for o in page.buckets:
print(f'Bucket: {o.name}, {o.location}, {o.creation_date} {o.resource_group_id}')
if __name__ == "__main__":
main()
List Objects
import alibabacloud_oss_v2 as oss
def main():
region = "cn-hangzhou"
bucket_name = "your bucket name"
# Loading credentials values from the environment variables
credentials_provider = oss.credentials.EnvironmentVariableCredentialsProvider()
# Using the SDK's default configuration
cfg = oss.config.load_default()
cfg.credentials_provider = credentials_provider
cfg.region = region
client = oss.Client(cfg)
# Create the Paginator for the ListObjectsV2 operation
paginator = client.list_objects_v2_paginator()
# Iterate through the object pages
for page in paginator.iter_page(oss.ListObjectsV2Request(
bucket=bucket_name
)
):
for o in page.contents:
print(f'Object: {o.key}, {o.size}, {o.last_modified}')
if __name__ == "__main__":
main()
Put Object
import alibabacloud_oss_v2 as oss
def main():
region = "cn-hangzhou"
bucket_name = "your bucket name"
object_name = "your object name"
local_file = "your local file path"
# Loading credentials values from the environment variables
credentials_provider = oss.credentials.EnvironmentVariableCredentialsProvider()
# Using the SDK's default configuration
cfg = oss.config.load_default()
cfg.credentials_provider = credentials_provider
cfg.region = region
client = oss.Client(cfg)
with open(local_file, 'rb') as f:
result = client.put_object(oss.PutObjectRequest(
bucket=bucket_name,
key=object_name,
body=f,
))
print(f'put object sucessfully, ETag {result.etag}')
if __name__ == "__main__":
main()
Complete Example
More example projects can be found in the sample folder
Running Example
- Go to the sample code folder
sample。- Configure credentials values from the environment variables, like
export OSS_ACCESS_KEY_ID="your access key id",export OSS_ACCESS_KEY_SECRET="your access key secrect"- Take list_buckets.python as an example,run
python list_buckets.python --region cn-hangzhoucommand。
Resources
Developer Guide - Use this document to learn how to get started and use this sdk.
License
- Apache-2.0, see license file
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
alibabacloud-oss-v2-1.0.2b0.tar.gz
(141.2 kB
view details)
File details
Details for the file alibabacloud-oss-v2-1.0.2b0.tar.gz.
File metadata
- Download URL: alibabacloud-oss-v2-1.0.2b0.tar.gz
- Upload date:
- Size: 141.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9eba80c6f52353dd5dc34fe5e14ad8a1297b47aba9cc8ba37b47516e74a3d043
|
|
| MD5 |
726cbef75ea41fd948f479ddbff53da3
|
|
| BLAKE2b-256 |
7a7904bf6df07bb2a283058662b1829840917b03007a6936448edf31f5fbe7cc
|