Skip to main content

Volc TOS (Tinder Object Storage) SDK

Project description

Volcengine TOS SDK for Python

The TOS Python SDK enables Python developers to easily work with TOS(Tinder Object Storage) service in the volcengine. This document will show developers some basic examples about TOS bucket and object operation.

Install

Requirements

  • Python3

Quick Start

This section introduces how to create a bucket, upload/download/delete an object in TOS service through our SDK.

Create a TOS Client

You can interact with TOS service after initiating a TOSClient instance. The accesskey and secretkey of your account, endpoint and region are required as params.

import tos

ak = "your access key"
sk = "your secret key"
endpoint = "your endpoint"
region = "your region"
bucket_name = "your bucket name"
object_key = "your object key"
client = tos.TosClientV2(ak, sk, endpoint, region)     

Create a bucket

The bucket is a kind of unique namespace in TOS, which is a container to store data. This example shows you how to create a bucket.

import tos

ak = "your access key"
sk = "your secret key"
endpoint = "your endpoint"
region = "your region"
bucket_name = "your bucket name"
client = tos.TosClientV2(ak, sk, endpoint, region)
client.create_bucket(bucket_name)                            

Put Object

You can put your file as an object into your own bucket.

# call put_object to upload you data to the TOS                     
client.put_object(bucket_name, object_key, content="123")
assert resp.status_code == 200       

Get Object

You can download objects in the TOS bucket through our SDK.

# call get_object to download your data from your bucket
client.get_object(bucket_name, object_key)

Delete Object

Your can delete your objects in the bucket:

# call put_object to upload you data to the TOS  
resp = client.put_object(bucket_name, key_name, content="123")
assert resp.status_code == 200   
# call delete_object to delete an object in your bucket
resp = client.delete_object(bucket_name, key_name)
assert resp.status_code == 204

License

Apache License 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tos-2.9.1.tar.gz (163.7 kB view details)

Uploaded Source

File details

Details for the file tos-2.9.1.tar.gz.

File metadata

  • Download URL: tos-2.9.1.tar.gz
  • Upload date:
  • Size: 163.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.7

File hashes

Hashes for tos-2.9.1.tar.gz
Algorithm Hash digest
SHA256 06a5cc095d5b3f0e52b04aee8f7e60f8ddcf0c94c4408213e3485e40070d54ef
MD5 664eb01d22fb581ec6d64ebcb6c681ae
BLAKE2b-256 6042079680659e1f6c20f7b837e6b13f16d4c1c389889071f49c18baea9ac2ac

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page