Skip to main content

Unified object storage helpers for Alibaba OSS and S3-compatible backends

Project description

storage-actions

Unified object storage helpers for Alibaba OSS and S3-compatible backends such as RustFS, MinIO, and generic S3 services.

Features

  • One StorageClient API for Alibaba OSS and S3-compatible storage.
  • Explicit StorageConfig / StorageProvider configuration with mapping, object, and environment factory helpers.
  • Browser-facing public URL and presigned URL generation with separate internal and public endpoints.
  • URL transfer helpers for common "fetch remote file then upload" and "promote by public URL" workflows.
  • Aliyun provider extras for browser upload credentials that also support S3-compatible presigned uploads.
  • Metadata-based ACL compatibility mode for S3-compatible storage that does not support object-level ACL semantics.
  • Runtime token support for temporary S3 session credentials and Alibaba Cloud security tokens.
  • Legacy aliyun_oss_x.Bucket-style adapter for gradual migrations.

Install

pip install storage-actions

The current release is storage-actions==0.2.4.

During local development:

uv sync --dev
uv run pytest -v
uv build

For Alibaba Function Compute Python runtimes, 0.2.2 also avoids eager STS imports during module initialization and forces the Alibaba OSS v2 SDK to use PyCryptodome's ctypes fallback, so a shared FC layer does not crash on partial cffi runtimes.

For offline delivery, build the wheel ahead of time and install it from the artifact bundle:

uv build
pip install dist/storage_actions-*.whl

Basic Usage

from storage_actions import StorageClient, StorageConfig, StorageProvider, client_from_env

config = StorageConfig(
    provider=StorageProvider.RUSTFS,
    bucket="private-bucket",
    endpoint="http://rustfs:9000",
    public_endpoint="https://storage.example.internal",
    region="us-east-1",
    addressing_style="path",
    access_key="access-key",
    secret_key="secret-key",
    acl_compat_mode="metadata-gateway",
)

storage = StorageClient(config)
storage.put_object("reports/hello.txt", b"hello")
download_url = storage.get("reports/hello.txt", sign=True)
public_url = storage.get("reports/hello.txt", sign=False)

env_storage = client_from_env(bucket="private-bucket")

Environment Variables

StorageConfig.from_env() reads these generic variables:

  • OBJECT_STORAGE_PROVIDER: oss, rustfs, minio, or s3
  • OBJECT_STORAGE_BUCKET
  • OBJECT_STORAGE_ENDPOINT
  • OBJECT_STORAGE_PUBLIC_ENDPOINT
  • OBJECT_STORAGE_CDN_PUBLIC_ENDPOINT
  • OBJECT_STORAGE_REGION
  • OBJECT_STORAGE_ADDRESSING_STYLE: path or virtual
  • OBJECT_STORAGE_ACCESS_KEY
  • OBJECT_STORAGE_SECRET_KEY
  • OBJECT_STORAGE_SESSION_TOKEN
  • OBJECT_STORAGE_ACL_COMPAT_MODE

Temporary S3-compatible credentials should populate OBJECT_STORAGE_SESSION_TOKEN.

Temporary Alibaba Cloud credentials can also provide ALIBABA_CLOUD_SECURITY_TOKEN; settings-like objects may provide the same names and can be loaded with config_from_object() or client_from_object(). The runtime backends now forward those tokens to boto3 as aws_session_token and to Alibaba OSS as security_token.

URL Helpers

Use storage_actions.urls or the package-level exports to build public URLs, strip presign query parameters, and resolve path-style public URLs:

from storage_actions import resolve_bucket_key_from_url, strip_url_query

clean_url = strip_url_query(signed_url)
bucket_key = resolve_bucket_key_from_url("https://storage.example.internal/private-bucket/reports/hello.txt")

Encoded object keys round-trip safely through build_object_url(), extract_key_from_url(), and resolve_bucket_key_from_url().

For Alibaba OSS private bucket public domains, both storage.example.internal and https://storage.example.internal are accepted. Bare hostnames are normalized to https://... for browser-facing URLs.

Transfer Helpers

Use upload_from_url() to stream a remote file into a temporary file and upload it with the source Content-Type, or ensure_public_read_from_url() to promote an object to public-read when the URL resolves back to the current client bucket.

from storage_actions import ensure_public_read_from_url, upload_from_url

upload_from_url(storage, "reports/demo.txt", "https://example.com/demo.txt")
ensure_public_read_from_url(storage, "https://storage.example.internal/private-bucket/reports/demo.txt")

ACL Compatibility

For S3-compatible backends in metadata-gateway mode, put_object_acl("public-read") writes vv-acl=public-read into object metadata. Setting the ACL back to private or default removes the marker.

This mode is designed for deployments where the gateway decides whether anonymous GET/HEAD requests may read an object by checking metadata. Signed URLs and authenticated requests should continue to go directly to the storage backend.

The same compatibility mode is applied by generate_sts_upload_credential() for S3-compatible uploads: when object_acl="public-read" it emits x-amz-meta-vv-acl instead of a raw ACL header.

Aliyun Provider Extras

storage_actions.providers.aliyun.generate_sts_upload_credential() keeps the legacy browser-upload contract in a provider-specific module:

from storage_actions.providers.aliyun import generate_sts_upload_credential

credential = generate_sts_upload_credential(
    config=config,
    role_arn="acs:ram::1234567890123456:role/upload",
    role_session_name="upload-demo",
    allowed_buckets={"private-bucket", "cdn-bucket"},
    bucket="cdn-bucket",
    object_key="user-upload/demo.png",
    content_type="image/png",
    object_acl="public-read",
)

For s3, rustfs, and minio providers, it returns a presigned PUT upload payload using the public endpoint when available. Bucket overrides are denied by default; pass allowed_buckets explicitly when a caller may choose among a bounded set of buckets. For Alibaba OSS, it returns STS credentials plus provider, endpoint, public_endpoint, region, and addressing_style so backend, worker, and cloud-function migrations can keep their existing call sites stable. If the STS SDK call fails, the helper returns None to preserve the legacy migration contract.

Legacy Adapter

Some older code may still instantiate aliyun_oss_x.Bucket. storage_actions.compat.OssBucketAdapter implements the subset commonly used during migrations:

  • get_object
  • get_object_to_file
  • put_object
  • put_object_from_file
  • put_object_acl
  • sign_url
  • copy_object
  • delete_object
  • head_object
  • object_exists
  • list_objects_v2
  • get_bucket_info

The adapter also accepts common aliyun_oss_x keyword aliases such as key= and filename=.

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

storage_actions-0.2.4.tar.gz (122.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

storage_actions-0.2.4-py3-none-any.whl (21.6 kB view details)

Uploaded Python 3

File details

Details for the file storage_actions-0.2.4.tar.gz.

File metadata

  • Download URL: storage_actions-0.2.4.tar.gz
  • Upload date:
  • Size: 122.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for storage_actions-0.2.4.tar.gz
Algorithm Hash digest
SHA256 23ea65fc6675830aee6d29ffb16b29a9f4e2e2dca5dbb9e9f494bf17372c8b9b
MD5 f72c60d5375d835a96650a63805f6f23
BLAKE2b-256 b7cfeab6b051b5af41f57d7add775f05b5c777dd12e2ee34b534b2924452ede3

See more details on using hashes here.

File details

Details for the file storage_actions-0.2.4-py3-none-any.whl.

File metadata

  • Download URL: storage_actions-0.2.4-py3-none-any.whl
  • Upload date:
  • Size: 21.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for storage_actions-0.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 de7f953e245c799ea85a3d5a2d0c00828952d8a81015eaee598fc31641e9b511
MD5 519fc930b5fe8c838d54b82912a560dd
BLAKE2b-256 e8669cef41ee82965ce2211090d4c45f73671947b7e171b515c413021ce4e99d

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