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

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

opendal-0.45.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

opendal-0.45.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (50.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

opendal-0.45.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

opendal-0.45.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (50.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

opendal-0.45.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

opendal-0.45.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

opendal-0.45.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (50.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

opendal-0.45.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

opendal-0.45.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

opendal-0.45.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (50.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

opendal-0.45.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

opendal-0.45.2-cp312-none-win_amd64.whl (14.8 MB view details)

Uploaded CPython 3.12Windows x86-64

opendal-0.45.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

opendal-0.45.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (50.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

opendal-0.45.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

opendal-0.45.2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (31.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

opendal-0.45.2-cp311-none-win_amd64.whl (14.8 MB view details)

Uploaded CPython 3.11Windows x86-64

opendal-0.45.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

opendal-0.45.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (50.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

opendal-0.45.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

opendal-0.45.2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (31.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

opendal-0.45.2-cp310-none-win_amd64.whl (14.8 MB view details)

Uploaded CPython 3.10Windows x86-64

opendal-0.45.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

opendal-0.45.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (50.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

opendal-0.45.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

opendal-0.45.2-cp39-none-win_amd64.whl (14.8 MB view details)

Uploaded CPython 3.9Windows x86-64

opendal-0.45.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

opendal-0.45.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (50.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

opendal-0.45.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

opendal-0.45.2-cp38-none-win_amd64.whl (14.8 MB view details)

Uploaded CPython 3.8Windows x86-64

opendal-0.45.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

opendal-0.45.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (50.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

opendal-0.45.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

opendal-0.45.2-cp37-none-win_amd64.whl (14.8 MB view details)

Uploaded CPython 3.7Windows x86-64

opendal-0.45.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

opendal-0.45.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (50.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

opendal-0.45.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

Details for the file opendal-0.45.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 693e655ab419c60f938eb7ad22e2c0f19711bfa53975b02a7a8f74b88ec8659b
MD5 16abb9ac48f1b847785ad495610d2a68
BLAKE2b-256 607a22aca6f8975b15fe6cf692ef9ab19f1eea5ccb455303a2ef7529ff290b7b

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 76138b0657710fa666637787a89e75b0a3163b0f994475c6a0c45f53a7270045
MD5 dab994365609eee7d2edf92a55175dee
BLAKE2b-256 cab8e341b5e4df4525d8b90f1706ea1f8ef90cd1a02e5941fe0b326d9bb482a3

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5422cb4a567faf88cfb663c5d9c6646204c07f6d011ffc598568212908a63d5f
MD5 b78a622194121b1e07811cf522ecccc2
BLAKE2b-256 d508a66768d9a323d74053df5a7c442fd4016721b19174019c989287880d374d

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b14664f878caef6a6355ffa3479186d3851e6fe0a7f4098acc13ef66c513ac92
MD5 d00034d68e18c3ce70dfe421b1fa1154
BLAKE2b-256 6f2e5b6804d58f9c27b18697fe60f05f14984459978c8bbafc5f4add8499e191

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d15acde2debf080a4c43bb4d7b3409b979a7e12c9e739dcdc4a432c357124e12
MD5 36c33392e4da9b1eebbfa66e50797f8f
BLAKE2b-256 e949b00f063b5956cf1f038e41840eafb2fc452ffcf93aad08494a95cbddb503

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0a2d753790d467e381d1acb3adc816a1f384fa31a67b6e3f8443d1659c67ef8
MD5 2c563f9d470702c1a24100262ef20376
BLAKE2b-256 13dd118360e4dbdf5755155c440cbc47de941da2f6012752722c48aaf692f1e5

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 133b7700e46c7c3e7a9be8018cdd20e58eb0840578a2163bde83a217958f779b
MD5 ed82a5bc29f92871623e40675953b11e
BLAKE2b-256 8491f7599962c5692693cb73b8f8211d33adea63015946c81e10e44e44c4bca7

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aeb93af92db339169adb67d15a6f809cf7802813480f13bd31ffde1d2f937345
MD5 1667c50c3af92be40e00542fb158b2bd
BLAKE2b-256 bfbe3e8f92344db9a66c324794cc5793add3d79f53c56c7ff267bc526905ff72

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c314687925e6f112d910fc280799f930fc93166d0ea525f19c5b2811b0738b0e
MD5 80e6b1eef1ed86596600889694469d58
BLAKE2b-256 3649ed2994a4e67334ecba48fb923a0ebe9fa22c17e0dcbb40e8d18f7dd05045

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 49926fec95b441d06679ab984d4091460a6de538f8e6c09e55b892f89a88b1c5
MD5 b7e2473cdad6aedf276f7ccb705e09f6
BLAKE2b-256 afaa26e430d70144c2ebe330752af153958e194a293a8730d55d73e1427460fb

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b6ef339cb65881d3313dfa8a5572914a1850a938465c2660c2418fec589958c
MD5 812ba40a6d8b9125c1fff660d1772631
BLAKE2b-256 439f13396a7600626fc198fb8a08cd6d6533f1b1fe76dc3a19ba67a12907a4ff

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for opendal-0.45.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 f9f3f29e46995490a2ccc7de05c8d615f82c201002db055020a8f2b48f4a2f07
MD5 0de0d9e47ad159797144d48d8068cb85
BLAKE2b-256 09d7c3cfaf7921bae33ec9bdacc7c317b0349e220426fcacb0c7986ea430bb54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opendal-0.45.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03ab1a586e95e19766ab9ad414e2cabde613e2baf9a6a69b320afa83c67628ad
MD5 719a314a744fa6dd69a6527c869b303b
BLAKE2b-256 13eb88980c25907041a3d44fc08b700e775ae43a89dbf2f5f41b438dac2e06ea

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2b717c5508c73f84c65a32b3adb72d6a25e64ef00de82270e7337aa7b042cd4
MD5 1e92627b687324c2e17f16f2809d86e3
BLAKE2b-256 792004ef6d1664f6bb614f820d0143df6e592cbd00c1d5f80214398be78a4bb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opendal-0.45.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c3236d08b226e0da6bd79fddd525927119ed10dca72a59c6190bfa11f608996
MD5 f4ed8f6720c5ad13ef3b4b2dd069ef98
BLAKE2b-256 ca325666998541e18744a5a76b269ae493f134ab8a2b1c4a91852564bf1dde77

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 03ac21a0987534fe4ac2bb4cb391ed950e044f1384080359be6e521c4bf768e5
MD5 3ce16bb4a53c5873279dde8c6945b1b9
BLAKE2b-256 821042101d226455efa6abe2d8a3fa99b4e0f8e3c71b12d5234061a73653a304

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for opendal-0.45.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 240208f89aaa669c64ac1d78f2f2f4a7bee59fe1d9c245c46f2543564d722536
MD5 fead7819fa4431f264cfc874c6ef7b3a
BLAKE2b-256 487bea5d668fe2b867ca413e67d64322b8609f5d9d100b44152bbc00fefd22a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opendal-0.45.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7da320f562f29b71f63b1208ceb942a54667d7d6fe8c672c88f32912aa5507a9
MD5 d0d1b0955a5d30eee64108dfbbe3fec5
BLAKE2b-256 dcecf58b55b034b5e24d52e05434b67c0e01cf57ce17ee27933f325a954327a8

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 748186816441cec9bd2282e293abdebfb1c9512f1b91bd5f61aa681a1659b7bf
MD5 e8119aa7373a306ec278c0fef144ebb8
BLAKE2b-256 dd6342bae92bdd477705ceb6d2ca041fd56ee3b02ed94f45e1e9f1f0b112b938

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opendal-0.45.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b485599f28f950a569ed701f620cf5ba3837eaaa8d55537bfb74769066bf0457
MD5 fe3f8f6bf756c658f6d3965b0cac1af5
BLAKE2b-256 0231af15b04f4c1bda866f99b43110db2e917144787e4ba72019093b2743b558

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 58cd41421748e22b6d8e0884478e59d3db6d92f8f1d67b8c5599466321996062
MD5 a04b2b3ec1225f84440925c39e10e7fb
BLAKE2b-256 ee6533b98117b5be194b0491c002efec7a6dd414553dbd2a8b53f2945175a8e8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for opendal-0.45.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 39e64fda69c90176f59a4dfdda62b90ef029c27b20017e1dbb4ec87fabc09918
MD5 2123452bbbaf6095af5e3f58678e76c0
BLAKE2b-256 5c1e165b7fd5fd7b3aed517af87c923d1a0a117aee58e450c8f327e6e79f5010

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opendal-0.45.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 711892106f6989f33883f3ade2b737e53a6877776c55422247cd2c032d0faafe
MD5 fab9dcea78b4c25c8b850a127a597e0d
BLAKE2b-256 b4d773352fe6c940eb064f06325be3f750e1a0aceea8ee0bbbc67bdf2d073ff6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opendal-0.45.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 68a0e1d1c1c7e9148c9682c5964236aefab1fea8a19cf7b9c3311fb1384493ae
MD5 7f176a7d0b1fda07a4cd9d6a8553de80
BLAKE2b-256 d667f5e75359b2a0b51070a89552a24eba41721fae420c29becd0dd42216ef46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opendal-0.45.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba1be759bd223a5ed3db8345f572a1b504d7822d867c4e862855573a47e022dd
MD5 a98cddbc95d5298f441383446207952c
BLAKE2b-256 95e33160615474461fb53aa9c14e60c2ee5d2913ebb1af5b5e9a57abe54c8a75

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for opendal-0.45.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 950454c1319c7f07559676df4d8f2b0c7d9dd909822ce4f5c03dd096ec50cccb
MD5 c7c7d44ca5e3fe562d430c73bce8fa2a
BLAKE2b-256 7443ebff140e69f9f44efa318edfcf7c1c3053e0b0482533b7d8ef2338d33590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opendal-0.45.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7663480b06ea3e829569398b2b661a2ef6b8c900affb79fe8738c113729e835
MD5 dc61e00ec6a91afde5f6e8040781bca8
BLAKE2b-256 cd39b054134a7f3ccaac664fa9faf0259d0c623ffd01c06cc1346235e4493ef8

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b176b34f17fc706eef89f38bb1bb20c63a609aba6d7fdc1114fdafd29a69bf65
MD5 80e6c097ec703afe1a90454d1785c6b2
BLAKE2b-256 f880a27d5dfb94d05cb1e0e55e1f496367ba488879551c41ceaa9eaa3f768bd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opendal-0.45.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29bb89708a591de271a81c032ce179a3327de8555ad90279c160371b2dc951d8
MD5 54af19ee1b168981ea8f47fc55bb987b
BLAKE2b-256 e57d633771c5516b98f00355532be9fcb564d280da3d32b64ffaa8a5ff4558db

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-cp38-none-win_amd64.whl.

File metadata

  • Download URL: opendal-0.45.2-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 14.8 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for opendal-0.45.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 08dd8e86a24329a00305535fd6e8a1dff7dcde3c662354899279b41d61ed82ed
MD5 ee8db0014d9764fa3aac75c09692f276
BLAKE2b-256 99956a867aff41e397b6617a728e8af75e972c6ef66118015f743b5ff90eabb7

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e40717736ad406453513cdae1df6be91a7eb104d2fc4e62c4ebef03e0aa4ccb
MD5 b29484c4f49d7ff97d02700e4d88b3cf
BLAKE2b-256 6883779effa298949c613762c0a5cd5e65acc7f50fa16c92eec0dfc73c734f01

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 741577e3ab3faf5ea3aaf2ee1139994c0d25ff752699a4d8f1622ed21ae27f81
MD5 919ceb0fe1078ee9bb3086d64c28c395
BLAKE2b-256 354a2c2afe4de25fd47b8293301994a7e36e1ddf996a44bdfa1ff20b4a018aa8

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a46be8c71ec66c129f62ec6d18e6c76cb14a8f2d9279020732c758eb46b0008
MD5 d95ffd4719b2358b124d024a73d7c3a1
BLAKE2b-256 61474114475b74f5143a6f2fe36abe794e3d73239321add9c6169e7aa550425e

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-cp37-none-win_amd64.whl.

File metadata

  • Download URL: opendal-0.45.2-cp37-none-win_amd64.whl
  • Upload date:
  • Size: 14.8 MB
  • Tags: CPython 3.7, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for opendal-0.45.2-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 34dfd38ed82304ff922d4c81376374c157bd7fc18b7fa923607d1cdeb0272133
MD5 b58d5a07f2b5ed7305621ab6e682cb30
BLAKE2b-256 c1b8c4200361bb0c244494083c2c468a6b20a174297c3db7326850192697e9f8

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f2b72ece1ecf879ef437e46c189858aac0ae6938eab579c4967c11cb30e4112
MD5 346ae52daefe740d6e78ad7155da859d
BLAKE2b-256 2957fb028297840b48ff36edbf58de04e6905d9583aad389603b6caf4562205d

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 310ff55061e08c9c1c8040e93caccd3530e7d6ddb857f926a1b0f3ec4ae1fad3
MD5 e7b2f2488b8672a466776c1b9a299ee3
BLAKE2b-256 793b15008a4314341efbd9f8c413dcc20b63ffe513676318234e4560f76d5c67

See more details on using hashes here.

File details

Details for the file opendal-0.45.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opendal-0.45.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ee0abf5b8387cf6fee950e1838de98a21794ffddd726e59fc22c58ffd510c17
MD5 6551cadce375c947870e16ffb4cc58a4
BLAKE2b-256 ef57fcaa28fe597e2f9e785dfdabec48e98efe65fb51d1da36caa62449d55c56

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