Skip to main content

Apache OpenDAL™ Python Binding

Project description

Apache OpenDAL™ Python Binding

PyPI Website

Documentation: main

This package intends to build a native python binding for Apache OpenDAL.

Installation

pip install opendal

Usage

fs service example:

import opendal

op = opendal.Operator("fs", root="/tmp")
op.write("test.txt", b"Hello World")
print(op.read("test.txt"))
print(op.stat("test.txt").content_length)

Or using the async API:

import asyncio

async def main():
    op = opendal.AsyncOperator("fs", root="/tmp")
    await op.write("test.txt", b"Hello World")
    print(await op.read("test.txt"))

asyncio.run(main())

s3 service example:

import opendal

op = opendal.Operator("s3", root="/tmp", bucket="your_bucket_name", region="your_region")
op.write("test.txt", b"Hello World")
print(op.read("test.txt"))
print(op.stat("test.txt").content_length)

Or using the async API:

import asyncio

async def main():
    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

Setup virtualenv:

python -m venv venv

Activate venv:

source venv/bin/activate

Install maturin:

pip install maturin

Build bindings:

maturin develop

Run some tests:

maturin develop -E test
# To run `test_write.py` and use `fs` operator
OPENDAL_TEST=fs OPENDAL_FS_ROOT=/tmp pytest -vk test_write

Build API docs:

maturin develop -E docs
pdoc -t ./template 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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

opendal_min-0.45.2-cp312-none-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.12 Windows x86-64

opendal_min-0.45.2-cp312-none-win32.whl (3.0 MB view details)

Uploaded CPython 3.12 Windows x86

opendal_min-0.45.2-cp312-cp312-musllinux_1_1_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

opendal_min-0.45.2-cp312-cp312-musllinux_1_1_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

opendal_min-0.45.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

opendal_min-0.45.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

opendal_min-0.45.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

opendal_min-0.45.2-cp312-cp312-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

opendal_min-0.45.2-cp312-cp312-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

opendal_min-0.45.2-cp311-none-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.11 Windows x86-64

opendal_min-0.45.2-cp311-none-win32.whl (3.0 MB view details)

Uploaded CPython 3.11 Windows x86

opendal_min-0.45.2-cp311-cp311-musllinux_1_1_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

opendal_min-0.45.2-cp311-cp311-musllinux_1_1_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

opendal_min-0.45.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

opendal_min-0.45.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

opendal_min-0.45.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

opendal_min-0.45.2-cp311-cp311-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

opendal_min-0.45.2-cp311-cp311-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

opendal_min-0.45.2-cp310-none-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.10 Windows x86-64

opendal_min-0.45.2-cp310-none-win32.whl (3.0 MB view details)

Uploaded CPython 3.10 Windows x86

opendal_min-0.45.2-cp310-cp310-musllinux_1_1_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

opendal_min-0.45.2-cp310-cp310-musllinux_1_1_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

opendal_min-0.45.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

opendal_min-0.45.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

opendal_min-0.45.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

opendal_min-0.45.2-cp310-cp310-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

opendal_min-0.45.2-cp310-cp310-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

opendal_min-0.45.2-cp39-none-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.9 Windows x86-64

opendal_min-0.45.2-cp39-none-win32.whl (3.0 MB view details)

Uploaded CPython 3.9 Windows x86

opendal_min-0.45.2-cp39-cp39-musllinux_1_1_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

opendal_min-0.45.2-cp39-cp39-musllinux_1_1_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

opendal_min-0.45.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

opendal_min-0.45.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

opendal_min-0.45.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

opendal_min-0.45.2-cp39-cp39-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

File details

Details for the file opendal_min-0.45.2-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 fcabdf40affad76a0d64f83658253a21f29593e18f4bca263b0cc42c47dbae95
MD5 f88960f562e3bced3497df2f5c37e367
BLAKE2b-256 dde23f7a29ade9971ef0f0c3da3bbf7169248869cf95116375a9b9c4f5fff79e

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp312-none-win32.whl.

File metadata

  • Download URL: opendal_min-0.45.2-cp312-none-win32.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for opendal_min-0.45.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 7eaa0da87a606f628144b9928e78e64d9b49228aa26b1a4a8fd63f166300d5cd
MD5 86eb7581e234d6167711a6fc49da140c
BLAKE2b-256 80451c168e748c305767e5ca025751d58558570409ed4707fc906db1d16209a7

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 54258ba033c863bccec298e093130be563565fd5729d0eedece0202f4f7b5753
MD5 0cf0b252ec8be80d88bab6f9a5fff867
BLAKE2b-256 619120acb66b1df2f7a06c96ea0c2feee142a6910f14a2564722a02fa1c3349d

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8aaba1d6a746f71d265e386827c4b9f9eb90e1e9b932d3d298b742187c3bc588
MD5 7021118decb146faf5e0e9c05251df87
BLAKE2b-256 41788f5bbb696f0a76421c4e5d84892e91384ffb3e2e48a93de1ba84ed8f4d43

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bed42b07806578ac03491999c1022e31803b347a5f9931c719ac9ef096a6f4d8
MD5 57351c6bb1aeebef3a80f09538c61e8b
BLAKE2b-256 cdf941cf68ab30f0928f5f1e770ad5a866a31570b66de3132e3be7c4d3e22c4f

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0b3230aaf5cf54f7186ab99a5c3f94a50216510838590387e4f666edc18746d3
MD5 7494501c3d51833f056833481f888d2e
BLAKE2b-256 e7a2e37515c3b005e6bb721499278f2ec92902bfbc049ffb4d4cd113fcd51d62

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47267e0afcedccfe26dcff05b37f7304d59bec460e8a5b92f442a20c7e84b3b3
MD5 595af607501b4c718d9272043c14a031
BLAKE2b-256 3ee568b1eb4f1ee7dbd8c1312bd707a793687d3c695b6a06e39ed4e2b76d2990

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5dcf38ed1b6528db25469957ac4ab119081a645b2a201892444ac5b56bbe50b
MD5 fccf52ca5679f40144aae92d53ff1306
BLAKE2b-256 5325d82490c059880eeaf1272133804273c10b2d50549950e67449133446ea16

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 89c0555248ee334e1e3145658bb55c0eef1ae00de69583df301316192a371ee2
MD5 557104604d073b2db9759cc7a4712a70
BLAKE2b-256 7ed863ed9e09b4daf306263af2ebb688b20547777dff0513b257ee12d54e06af

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 5d5891f1ac501e69e2659801b365f63303059de5efbfad8d8c57c87a31f62e60
MD5 01d95d418a5c58979eca70dc27ecb561
BLAKE2b-256 4e6ce260981d5f2f97915abec01c065d25c9cda1c6fbc91713c7aebd6b4eb3f3

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp311-none-win32.whl.

File metadata

  • Download URL: opendal_min-0.45.2-cp311-none-win32.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for opendal_min-0.45.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 4d2f6fc186802ed680e0a8da58c5a2c477f4aec8d1ab617cfac1a5b14ca523d9
MD5 12299f56fb2d42395b4449b1a43e540a
BLAKE2b-256 71a14254bfbff970d3ea76571d98c986c4be74b0919c36123c88b477926bec28

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c9299e66559b7374ab9ac3fa2c8ef487ae846775a8f8efbc2e28939c89dbdbdc
MD5 9b127b635421ceb83360ecbae64e22bc
BLAKE2b-256 a3ed45af83eb3402d4b23f544bb6187e52f7f20ef6c9d67875622bcca79eb296

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 11407451fb077f7f53f75aa156d5a97d20148008639b0d49276ada085a51628c
MD5 c7660c219baafdbdb887da6ab8b62f1b
BLAKE2b-256 2fce6c403601ec26e8e9c32e81c1643c53a317b63fce65753daa2486d77192e0

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1913c67d4485b4501d8c60a8fcb04fc48ab8be530df335710e17610c2542591d
MD5 bca82541c927b8c0443ac3f78db5eb11
BLAKE2b-256 98fa6008fefe942481d0468ef34560227eed4f695369508d75306f70b0785f93

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b3bc7445cddb56f3749e11b81dca6ace2bc9885f64e43d784bf1956f322713d
MD5 7171ff186a92f7df8f8bc1addfdc8617
BLAKE2b-256 77bb20add117a1eae5d9392fa2890a4707dc6c44e69b6b90011a79aa5a83cf42

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2462188b0e789697bb3aade2a2d4652c2cffb42bfaa7a2fecc0afe6150fa49c5
MD5 a301fba1f1c0459e9015f94c62fa5eaf
BLAKE2b-256 fbed0e056c19999dbd8f27a44dbf9d9526003932dca693acccc896f861415a0e

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e03b0ed9b4bd3455ede65636359aa9582ae74379c8002db7beb08afc74911a20
MD5 f77012d5044872b41bde9cd36ec7f915
BLAKE2b-256 adfae430ee63de37f23c09360b7ba45b6195ededeaaf4bd174d6239347417d8c

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e387d7fad59cd511e2014bae6995fac243116b99ced7031c0d9d9e1c64f3eb22
MD5 5256feba8dc31be776c1dec8eb3a9b1c
BLAKE2b-256 adcc7cf19650dd4a417c0ba3f72f735daa496274ec8a168013b06e1b7ab75f82

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 50770cddd22cbcbea9977aef783f12c37475b6499dcdab497338a2f3e71d71a9
MD5 8902b3aee15f60906d45dbebc963a078
BLAKE2b-256 05e506008678879b84d282bb63cac039cb201a4d8f2320f99e565b0e51c1c641

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp310-none-win32.whl.

File metadata

  • Download URL: opendal_min-0.45.2-cp310-none-win32.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for opendal_min-0.45.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 230e94ee64cfcd5c00d2b721e5fc539d207c01ce27092840ebc243a786e5e24a
MD5 e539c9d7b20675720ccfd64c270a1389
BLAKE2b-256 ae6c422cc782b17022a5f9748c939f9c4a856b107b6cf9737cd66513f9330054

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6c7a34ac7153fb573bef2b4d13935f5f7a19bbc95f44f8419929d9c1243f18e0
MD5 a15668a4f1f8df04d236164f626082a9
BLAKE2b-256 831e8422a9aee5029cd30fa8df0b16de450a622aad30553c9e3195dde610182a

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1efe292c7d202ef3b9338e069016d9b31e3568161d78748551c853514fd86f8d
MD5 f59fdee8d2b9363055d59a745bbd3d3b
BLAKE2b-256 444a6b3b81e34a137ef4bd53e7c2e0fe4b1c5946cbf74823c88ddddd83e60c0a

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a4131dbd130c676601f1893847a58a82883d8133f418a4e4da7d81c9c134f2a
MD5 30ee1050e1a192f519c284449c42f4fe
BLAKE2b-256 fec6be4653809bdf3c44647e01da2280aedf6931e269c9eb12d05f8f0bf6322e

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c787c8ed5c6227af416733a0bb68c964e74c3bd7dbe0fb6a18c0096ab22e12aa
MD5 d2964ddafedf296d969cd0a116f99285
BLAKE2b-256 0c4322b492a1b6c4100873f03175b8f0dcc32c33ef9d886ad7c56a927d105b48

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f9023adc291be63400107e2d696c9896ac6ca5d4d6254ae92cb1b30a1a20741
MD5 2e132792e63fe5cd412cd50cdc0db6aa
BLAKE2b-256 31fdd25bd55582c9c0141b22a577ac0cb0746102f110b337b9ccfc6d0c60471d

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d81e3156de08fc31e1e1f94f3e0ced8491ae77aa2c3adff2273f9583c39017df
MD5 3ad3fa466f17b779f3faeb46319e622a
BLAKE2b-256 ebb76c1fc5f7645ad3e620eefb36d05e01f75088456fcdb717e9056f64021804

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3dec1c392ecf2fd6a67083d29442899e40e0fc86c33393da850e841926aa93ed
MD5 982b4b7b4c320a9c8dbdc7a4cf94f51a
BLAKE2b-256 107e9bccf67473c804603690efc274568e0275e3f048fead76620aa3c279f95b

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 68940ab8f4f45ee55f9faf03c0762164e67ca58e3ae22e4569f80bc22c685bd2
MD5 866e944888583010e38574d4cc40f80b
BLAKE2b-256 c635fcd5f873a4ef9e4fc956099808324b763f83a5f8d5853c900d5fed9f27b7

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp39-none-win32.whl.

File metadata

  • Download URL: opendal_min-0.45.2-cp39-none-win32.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for opendal_min-0.45.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 5342b5b673da3eef1dd65fbc38e120c642c2fe2cc2c8d2804e6facc1b9a9de23
MD5 07c814669591004ad726a08cbf776966
BLAKE2b-256 d4a97f3d6088574c5891dd88ada1a5f52eba1e6f7cb64eb34a9c5874c1d438ea

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 956af52be72db205c055a3be48c2eb670fd5671ff85218eb310c63386e224afb
MD5 fcd21833964f65a665cd934478859d4c
BLAKE2b-256 75d08abb7389ced986de20722ad89ba5e6049b2d35c73ef6c3e8f5538d9a824b

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 37d4f27e6fa8f04d41019ed1aeae2f5d13166d3fcd88f9d8bc3b10e70f011acb
MD5 a7277c5654816f39b1687b3c94589bdc
BLAKE2b-256 b3f2e9cdb476e126197cf3f6f90c9d4c802069596f9dbc3b0a6b7886b6739284

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7295b942a7975b0bf4c721282cfccd34bda11e8eec5c28a73614351340c102b9
MD5 5cea3d203d7315f89e0d966d14c018fd
BLAKE2b-256 d81008bacb305d3a6734d07893eef19f5cc2df9792999a6b3ae3f827c0fd0c4a

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4f7da5ba503642413cd60f0b4a572b685ad69d190bfc81a8cc8e8431f05c3e2a
MD5 ed7581148a67f306f4e3d49d55650b1e
BLAKE2b-256 11cffa315cda97c0263f742d3e32375c040bcbde166485870896ad75390d5425

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a25fafc2bfda51868206afbd0f9c8de650a61261782cffaada5e9b9bcab73937
MD5 e11b64310bbc3686bd24688d712d41a4
BLAKE2b-256 fe4760a323f617de06bb128e47c1e61f81e058a8f6e39bea17064d7b454eb4c5

See more details on using hashes here.

File details

Details for the file opendal_min-0.45.2-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for opendal_min-0.45.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 660931365198d979b13b53f6839da0fdc353b9cd0e09a242ffb5b90745c4c525
MD5 f191556f932bba9c93b6258b4f653663
BLAKE2b-256 3e120cfd9577eb1a657c2efe457bdcdce3226970903c87eff2946f81af29122d

See more details on using hashes here.

Supported by

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