Skip to main content

Apache OpenDAL™ Python Binding

Project description

Apache OpenDAL™ Python Binding

Status PyPI Website

This package provides a native Python binding for Apache OpenDAL™, a data access layer that allows you to access various storage services in a unified way.

OpenDAL Python Usage Demo

Note: This binding has its own independent version number, which may differ from the Rust core version. When checking for updates or compatibility, always refer to this binding's version rather than the core version.

Useful Links


Features

  • Unified API: Access S3, GCS, Azure Blob, HDFS, FTP, and more with the same set of commands.
  • Native Performance: Built in Rust for high performance and safety.
  • Async Support: First-class async API for modern Python applications.
  • Easy to Use: Simple and intuitive API design.

Installation

Install the package directly from PyPI:

pip install opendal

Usage

Here are a few examples of how to use OpenDAL with different storage backends.

Local Filesystem (fs)

import opendal

# Initialize the operator for the local filesystem
op = opendal.Operator("fs", root="/tmp")

# Write data to a file
op.write("test.txt", b"Hello World")

# Read data from the file
content = op.read("test.txt")
print(op.read("test.txt"))

# Get metadata
metadata = op.stat("test.txt")
print(f"Content length: {metadata.content_length}") # Output: 11

Amazon S3

The API remains the same—just change the scheme and credentials.

import opendal

# Initialize the operator for S3
op = opendal.Operator(
    "s3",
    bucket="your_bucket_name",
    region="your_region",
    root="/path/to/root"
)

op.write("test.txt", b"Hello World")
print(op.read("test.txt"))
print(op.stat("test.txt").content_length)

Async Usage (s3)

OpenDAL also provides a fully asynchronous API.

import asyncio
import opendal

async def main():
    # Use AsyncOperator for async operations
    op = opendal.AsyncOperator("s3", root="/tmp", bucket="your_bucket_name", region="your_region")

    await op.write("test.txt", b"Hello World")
    print(await op.read("test.txt"))

asyncio.run(main())

Development

This project uses just as a command runner to simplify the development workflow.

  1. Clone the repository and set up the environment:

    # This will create a virtual environment and install all dependencies
    just setup
    
  2. Run tests:

    # Example: Run tests for the 'fs' operator
    OPENDAL_TEST=fs OPENDAL_FS_ROOT=/tmp just test
    

For a complete guide on building, testing, and contributing, please see our CONTRIBUTING.md file.


Used By

Check out the users list for more details on who is using OpenDAL.

License and Trademarks

Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0

Apache OpenDAL, OpenDAL, and Apache are either registered trademarks or trademarks of the Apache Software Foundation.

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

opendal-0.47.1.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

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

opendal-0.47.1-cp314-cp314t-win_amd64.whl (20.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

opendal-0.47.1-cp314-cp314t-musllinux_1_1_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

opendal-0.47.1-cp314-cp314t-musllinux_1_1_armv7l.whl (17.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

opendal-0.47.1-cp314-cp314t-musllinux_1_1_aarch64.whl (17.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

opendal-0.47.1-cp314-cp314t-manylinux_2_28_aarch64.whl (17.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

opendal-0.47.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

opendal-0.47.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (16.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

opendal-0.47.1-cp314-cp314t-macosx_11_0_arm64.whl (17.0 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

opendal-0.47.1-cp314-cp314t-macosx_10_12_x86_64.whl (17.7 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

opendal-0.47.1-cp313-cp313t-win_amd64.whl (20.0 MB view details)

Uploaded CPython 3.13tWindows x86-64

opendal-0.47.1-cp313-cp313t-musllinux_1_1_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

opendal-0.47.1-cp313-cp313t-musllinux_1_1_armv7l.whl (17.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARMv7l

opendal-0.47.1-cp313-cp313t-musllinux_1_1_aarch64.whl (17.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

opendal-0.47.1-cp313-cp313t-manylinux_2_28_aarch64.whl (17.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

opendal-0.47.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

opendal-0.47.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (16.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

opendal-0.47.1-cp313-cp313t-macosx_11_0_arm64.whl (17.0 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

opendal-0.47.1-cp313-cp313t-macosx_10_12_x86_64.whl (17.7 MB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

opendal-0.47.1-cp311-abi3-win_amd64.whl (20.0 MB view details)

Uploaded CPython 3.11+Windows x86-64

opendal-0.47.1-cp311-abi3-musllinux_1_1_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.1+ x86-64

opendal-0.47.1-cp311-abi3-musllinux_1_1_armv7l.whl (17.1 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.1+ ARMv7l

opendal-0.47.1-cp311-abi3-musllinux_1_1_aarch64.whl (17.7 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.1+ ARM64

opendal-0.47.1-cp311-abi3-manylinux_2_28_aarch64.whl (17.4 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.28+ ARM64

opendal-0.47.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.2 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ x86-64

opendal-0.47.1-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (16.8 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARMv7l

opendal-0.47.1-cp311-abi3-macosx_11_0_arm64.whl (17.0 MB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

opendal-0.47.1-cp311-abi3-macosx_10_12_x86_64.whl (17.7 MB view details)

Uploaded CPython 3.11+macOS 10.12+ x86-64

opendal-0.47.1-cp310-cp310-win_amd64.whl (20.0 MB view details)

Uploaded CPython 3.10Windows x86-64

opendal-0.47.1-cp310-cp310-musllinux_1_1_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

opendal-0.47.1-cp310-cp310-musllinux_1_1_armv7l.whl (17.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

opendal-0.47.1-cp310-cp310-musllinux_1_1_aarch64.whl (17.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

opendal-0.47.1-cp310-cp310-manylinux_2_28_aarch64.whl (17.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

opendal-0.47.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

opendal-0.47.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (16.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

opendal-0.47.1-cp310-cp310-macosx_11_0_arm64.whl (17.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

opendal-0.47.1-cp310-cp310-macosx_10_12_x86_64.whl (17.7 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file opendal-0.47.1.tar.gz.

File metadata

  • Download URL: opendal-0.47.1.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1.tar.gz
Algorithm Hash digest
SHA256 b3b9a7f056ed5bddb142c54bbf9618125e6f864ed53d35d91fad9823960e39e7
MD5 a322aed4f086b2788cfd2e36bedccc03
BLAKE2b-256 24a8674b7d77806b2d9f0a92294503b35784267fd0c1dd8f11fe4108a372656a

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 20.0 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9bcc6ba8672e3cf6d718b1bf931c418c53ae7a6ec529b124477827820bee03bc
MD5 9b14b19e3ddf1dbfb03b1929554bba8c
BLAKE2b-256 92014ccbb7bf074b6a711693421a8ccfc4343c4a976c1faedcfbadf5871606c6

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp314-cp314t-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp314-cp314t-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: CPython 3.14t, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 166535032b768017289a7dc1d6820220f37b0d2a79881271b48a961a14a1f4b7
MD5 bbac8c31c2aa00ee215203fe25a463c3
BLAKE2b-256 346e273840d18ef7248f32166507f19caa7c795daa92edee551b91236bebf38a

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp314-cp314t-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: opendal-0.47.1-cp314-cp314t-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 17.1 MB
  • Tags: CPython 3.14t, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 57352f79efcb612dd49854e1057fe766667cd230dab99d952e4069821a6c8fdb
MD5 3a7030e03e4068a44faf86b978ba7641
BLAKE2b-256 58f027d9c5dbb05dcdb68b63f57083a4847a445b81a6d693c51fcc1c747097b4

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp314-cp314t-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp314-cp314t-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 17.7 MB
  • Tags: CPython 3.14t, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 59d20c6a65ecd80635fd415a6131f93e616e84cba6318506339912b6ccae0461
MD5 c56c915229de95b99c9a3f6aa16e297c
BLAKE2b-256 a9bf351af98281332574b23a0e8a98b609cf6390e1666bf5115b6ef3044d79b4

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp314-cp314t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 17.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e7e9049ba876638a17c6648609d177d837e3e20c9417370af5987f2b09e06f69
MD5 332ea31bd4d1682e5c81f24fd2f53a6c
BLAKE2b-256 8f99be3a5c63729fa002e9a292c124d8a77cb0b2bf6959d18f91814ecbe96245

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ac5817090c7da4d074226250abea3c612f4ddaa91e4d255e7589c9143a38107
MD5 6d5f3bcc6c4e42a0172849e22f1fc255
BLAKE2b-256 333071c1c0123f3d76ce1ff8871064de96b92a074b15d18da1626f74d7d75027

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: opendal-0.47.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ee9a88bb2f78ea33f44f042fcc40cb0a0f51c0492b02fcc2dac8448dade0fc72
MD5 30d21d5333e8f70cc45d23ff36484ada
BLAKE2b-256 7b765df4c9649931b2c4b919ae1be135586cf55b8881723da9e821ded8bf83ed

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 17.0 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdd9e9eb0dadf040b398e8a041e4359abaf91000d6fac3d2013795db42b11e42
MD5 c8fc0cb2d44941c0f4104f1294eb5863
BLAKE2b-256 88364f28c6824f46411427d6a750315a82270599b04eff234667e28951fa3b8b

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 17.7 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 634b4c56ff8616497462b01fbc754e6bcb924f56d66de1f63c55fdd81d4f9e9c
MD5 5ef446ed24e95628f6f7f6d5dfb8009b
BLAKE2b-256 c19dfc4e09ea1270c94faf6b834900415f033ec6eae6f5c93aefa0e3ab8fe1ea

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 20.0 MB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 27350a385aeab80cafaeb982bcaa055df263ab87571f27c99b8c783c12ccb03a
MD5 8b35cb376879b546003724102f0f3399
BLAKE2b-256 7b9795eafe7972e3a1e64b88f01bb6c70c54752fba490407fc38b59c009c83eb

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp313-cp313t-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp313-cp313t-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: CPython 3.13t, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 74f31918290e88853da9983ca96fdfc7a0d01ebdd6fdfa46942cb223ed275158
MD5 3b7531321027486f45ce16adf1013c9a
BLAKE2b-256 145a190a77d830bf7f24bafb863e2b7f7d8fa24133458f469da1bac12712b3b5

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp313-cp313t-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: opendal-0.47.1-cp313-cp313t-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 17.1 MB
  • Tags: CPython 3.13t, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp313-cp313t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 bfa5c82f129b5d2e66abbdf678365baf29b6bb4de0df4c59c746187c51618f72
MD5 7b1b9dae90e44d2dfbf991607d4a4619
BLAKE2b-256 3c04010d04bd34aa0b62d26d3863cafefc3396b6265ae98035202cfbb9c2deba

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp313-cp313t-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp313-cp313t-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 17.7 MB
  • Tags: CPython 3.13t, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d7b9d312eae9dd79af92a09dbd69758b15772061747d3310da64d42f483b9d4a
MD5 e67bbd514ab816c6fa0a7f21b5479b90
BLAKE2b-256 04be32d755e62c687edc47ba1ce166e7e444767e66516651ce94df7137a730a7

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp313-cp313t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 17.3 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 204d17e5f533268c15565e316ac10b57980583f31ebf68d08d2238cf077a7348
MD5 8a13cc5361e5cd4ce241d080a19bb9c0
BLAKE2b-256 46ac1971078ffd889f313c796a359e0eee85c9109e8b51b7809b5f1648cc3648

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7abbd8f5b0ce9107f9ca747dceb98e43bf2ff244b59b6b4d50195e024c726aad
MD5 f4e26e9c957077d0d2dd365183cd51ce
BLAKE2b-256 202acd3842eef2d6c9bdfdf2470810229dcfca712e300d4392c3c331426dbc8d

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: opendal-0.47.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 29d318e41a2523138318cc7868fda9da5534f938bb5a0bc1d677b16270acd07b
MD5 a63b1cd336b3031e711f9d413f26bd0a
BLAKE2b-256 e92286a1955372ee4b17755281330464aca080751504f94a12e14e389f96ce22

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp313-cp313t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 17.0 MB
  • Tags: CPython 3.13t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7a60a20a314e21854675d4e92ac440bd7d578731b2d4051fba939b3c8514968
MD5 d2560fe733ea24daacfde6e954845d82
BLAKE2b-256 77d33cc8033d5237398b10ad18816f67b6c0d451bd36bd4c14acdeca0aa26327

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp313-cp313t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 17.7 MB
  • Tags: CPython 3.13t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 16e6168054d685cee37079696ded71cdb4edce27b98e4a3b2cd06004f3c646f1
MD5 d4219b17267e31a46b73049948fc3445
BLAKE2b-256 97a47f1dea88b09240d703ed2b740c47f0d4fd69a5f1014e51f1555c03fb72f2

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp311-abi3-win_amd64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 20.0 MB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 fa2e403e7f86f57164181d1d0f4b59afc77997f89cdeeab883591622b99bda29
MD5 e49a750fdfafff15599afe6a00985455
BLAKE2b-256 c74995f6671c8ef04eff65a09ebf93149c03ed6318334a4ddea182a31b43fc8f

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp311-abi3-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp311-abi3-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: CPython 3.11+, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp311-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 05f36d4a3f464401440d89d415fb5cd604fbefad0c5ac408bbcc1f0f736cff84
MD5 bc490037b5bcbf92234d1e7fd5c228e8
BLAKE2b-256 b824aa064423a77122b983105a825c9574d0536e66d9ee9606dacd4c93412875

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp311-abi3-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: opendal-0.47.1-cp311-abi3-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 17.1 MB
  • Tags: CPython 3.11+, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp311-abi3-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 49f312533fc76acbd3bc0040c114584c0e0e7661f62e0e522efa0825eacbbc8e
MD5 d9b962205cd0ef40a476cf012f44e79c
BLAKE2b-256 a87a33c19dc935ad4a1f71c5682577486b85370594d2f2fb78ceb9b7d208188a

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp311-abi3-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp311-abi3-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 17.7 MB
  • Tags: CPython 3.11+, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp311-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4ff0d29358435681ebb1c7fb4fadbc113ca9af138014ad7b6ac65d92de9ffa03
MD5 4cbcc9e9ad956617b912f1ba07aa8a30
BLAKE2b-256 6ac5dd230895c8ce14e06665bd43757e8f1cac3860a82b214956699075498804

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp311-abi3-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp311-abi3-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 17.4 MB
  • Tags: CPython 3.11+, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp311-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc89730216f48edec808a0dd162164bb7a458931b496befcb0c860ad693f4fcf
MD5 0f1d66c8b1852487c796067289b24978
BLAKE2b-256 b498c3cbb282f53e0f2f30bc70762b15bfbbd55fc495481141d45de77dae7aa7

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.11+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de74b280c41024739e1b96006660041f5d85e6b1813ecec7df5552e3e22ebea2
MD5 1e98abbf1d1d014d69ae62111214cd28
BLAKE2b-256 4f05408b2d9095c25d6d07695d72121a2e75c51b1aa4d6c7c5f82c6b9cd7104c

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: opendal-0.47.1-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.11+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5431625e597827da5961b3c17230513be61dd58f1053b1310a7a207123696956
MD5 2b1506254d743aa2703ca54f29b2f7d9
BLAKE2b-256 cd9e67caeb3f1a03dfb3764ade225a2e43953efbac69cc1f3d0912f72df9f891

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp311-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 17.0 MB
  • Tags: CPython 3.11+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c678036551d957895578b00f8ab9a6317fcc702439e891ccfa868c56c8373d97
MD5 a9cc88859b8a880eed90d7d41a45c77a
BLAKE2b-256 f7c792c806f4c65c55516a7d078e674b6d2dbd80b72dcb681c9bce807497260b

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp311-abi3-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp311-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 17.7 MB
  • Tags: CPython 3.11+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp311-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82e848e2e9e1b8407120e8bd020de783a4248fbbf049f391644fc74c93a67051
MD5 6f0cb25d6e1cb89b5898249987c10af4
BLAKE2b-256 73ec44ee750a2e60657fda0e0df67485b5e82d633855b8c76ca17b5d5eb97f0c

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 20.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 20f6f11da957cd95421fecb7a1fde41b11b6274bfc23b0e6ffed5013d722bd75
MD5 b7ba276b004a75cf16e4ad49a9b997f3
BLAKE2b-256 4a77fc14c6aec99ebc5e26646b4fc90ea57f32b9f3427d016325aae566d53de8

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0e6be23671ff06bd7266747a5b4b3aec83b2010e13b4153a68a80fa3213cbc2c
MD5 6190b04ba98de6aacdc568e57519361e
BLAKE2b-256 e601821a7d1917a215c577b6f1a3ea10a790e783423ec0da737a9f29dbc81d54

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp310-cp310-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: opendal-0.47.1-cp310-cp310-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 17.1 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1297d7529d15fc70021729de0a35a5da9342bd077cc5e848a19433a2ee1fb12e
MD5 2176024117bc72386205eaa5d6881ee9
BLAKE2b-256 aa3a7e3448dd2ac3207c1aca243056a69bdad92b3d45600d672d2551e1fef8dd

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 17.7 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f7e01b46ba5621d72c43bcec50b24c26d9bafd17de73a5febd1d478752adaeed
MD5 b412735866bf9f24e1455fd583034474
BLAKE2b-256 6dccc08e20b89e53b5dbe3753ac563eb58c77b78a95831804a1f529678969055

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 17.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8af2047508c7b2a94c1f543c5537646206fd22af801e3f874ae0b0001608aa2
MD5 562c223c89e880b326858a17744d047c
BLAKE2b-256 15a92f12306bb8f5cdf411ee196f0d0f2b759fac0fbc90c2e4dc5fd67dc0c43d

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca999da8a4ebe21c722b516f43cdf691f710dc31649bb10feffc0163698e80ca
MD5 a75efe2881d13ba20383f7ae6db04fdc
BLAKE2b-256 b9e275d87fbb494b22b11ef5e8d62d8ca0d4c8832dc6c8366b6e4a48a8278948

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: opendal-0.47.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d661045a76fefdcd4449e0f07fc16652255868188d16ed85d0aa56783b1a046f
MD5 9a2f55961f725ab3d2e576641fdac92a
BLAKE2b-256 d4c0909bd8c52d83c48994ce44dac7ebecc1b1f8373b9fa6edb56b32261092d6

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 17.0 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99d3f6b137cf7307af6a59ccc35706351e971aa22ead8b38fe77d5e5a6c836f1
MD5 c52ba52a977d12ab2bb334c66f0d3a4e
BLAKE2b-256 0c689ffa161e3bb197ae9d862699ba2405ec47d6fed40cf79571c54e1a50d080

See more details on using hashes here.

File details

Details for the file opendal-0.47.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: opendal-0.47.1-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 17.7 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for opendal-0.47.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c8db531924b6904955c09d8883e8e1a96a75a2cfa97a3c4bb930281193603eb
MD5 78f8ecb0908438c09f07fd85871691fa
BLAKE2b-256 ab02f03208866b098f3272ee92511a856a3d0f5a73ea6f5ff8593140d9d6823a

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