The Obstor Python Client SDK provides high level APIs to access any Obstor Object Storage or other Amazon S3 compatible service.
This Quickstart Guide covers how to install the Obstor client SDK, connect to the object storage service, and create a sample file uploader.
The example below uses:
- Python version 3.10+
- The Obstor
demotest server
The demo server is a public Obstor cluster located at https://demo.obstor.net.
This cluster runs the latest stable version of Obstor and may be used for testing and development.
The access credentials in the example are open to the public and all data uploaded to demo should be considered public and world-readable.
For a complete list of APIs and examples, see the Python SDK Documentation
The Python SDK requires Python version 3.10+.
You can install the SDK with pip or from the obstor/obstor-py GitHub repository:
pip3 install obstorgit clone https://github.com/obstor/obstor-py
cd obstor-py
python setup.py installTo connect to the target service, create a Obstor client using the Obstor() method with the following required parameters:
| Parameter | Description |
|---|---|
endpoint |
URL of the target service. |
access_key |
Access key (user ID) of a user account in the service. |
secret_key |
Secret key (password) for the user account. |
For example:
from obstor import Obstor
client = Obstor(
endpoint="demo.obstor.net",
access_key="Q3AM3UQ867SPQQA43P2F",
secret_key="zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG",
)This example does the following:
- Connects to the Obstor
demoserver using the provided credentials. - Creates a bucket named
python-test-bucketif it does not already exist. - Uploads a file named
test-file.txtfrom/tmp, renaming itmy-test-file.txt. - Verifies the file was created by listing the bucket with
rclone.
# file_uploader.py Obstor Python SDK example
from obstor import Obstor
from obstor.error import S3Error
def main():
# Create a client with the Obstor server playground, its access key
# and secret key.
client = Obstor(
endpoint="demo.obstor.net",
access_key="Q3AM3UQ867SPQQA43P2F",
secret_key="zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG",
)
# The file to upload, change this path if needed
source_file = "/tmp/test-file.txt"
# The destination bucket and filename on the Obstor server
bucket_name = "python-test-bucket"
destination_file = "my-test-file.txt"
# Make the bucket if it doesn't exist.
found = client.bucket_exists(bucket_name=bucket_name)
if not found:
client.make_bucket(bucket_name=bucket_name)
print("Created bucket", bucket_name)
else:
print("Bucket", bucket_name, "already exists")
# Upload the file, renaming it in the process
client.fput_object(
bucket_name=bucket_name,
object_name=destination_file,
file_path=source_file,
)
print(
source_file, "successfully uploaded as object",
destination_file, "to bucket", bucket_name,
)
if __name__ == "__main__":
try:
main()
except S3Error as exc:
print("error occurred.", exc)To run this example:
-
Create a file in
/tmpnamedtest-file.txt. To use a different path or filename, modify the value ofsource_file. -
Run
file_uploader.pywith the following command:
python file_uploader.pyIf the bucket does not exist on the server, the output resembles the following:
Created bucket python-test-bucket
/tmp/test-file.txt successfully uploaded as object my-test-file.txt to bucket python-test-bucket- Verify the uploaded file with
rclone ls(using anobstorremote configured for thedemoserver):
rclone ls obstor:python-test-bucket
20480 my-test-file.txtput_object and get_object can dispatch to Obstor's RDMA + GPUDirect
Storage path via obstor-cpp. It is
strictly opt-in and the SDK stays pure-Python unless used.
from obstor import Obstor
client = Obstor(
endpoint="server:9000",
access_key="...",
secret_key="...",
secure=False,
enable_rdma=True, # opt-in
)
buf = bytearray(1 << 20)
client.put_object(
bucket_name="b", object_name="o",
data=buf, length=len(buf), # buffer-protocol object selects RDMA
)
dst = bytearray(1 << 20)
n = client.get_object(
bucket_name="b", object_name="o",
into=dst, length=len(dst), # into= selects RDMA, returns bytes
)Requires libobstorcpp.so (built with -DOBSTOR_CPP_ENABLE_RDMA=ON) on the
host's library search path (or pointed at via the OBSTORCPP_LIB env var).
GPU buffer pointers (e.g. CuPy's arr.data.ptr, PyTorch's t.data_ptr())
work as data= / into= arguments unchanged — pass them as int.
See examples/put_object_rdma.py and examples/get_object_rdma.py.
This SDK is distributed under the Apache License, Version 2.0, see LICENSE and NOTICE for more information.