Skip to main content

A Python interface to the Rust object_store crate, providing a uniform API for interacting with object storage services and local files.

Reason this release was yanked:

Will be deleted in the future to reduce PyPI project size.

Project description

obstore

PyPI Conda Version

Simple, fast integration with object storage services like Amazon S3, Google Cloud Storage, Azure Blob Storage, and S3-compliant APIs like Cloudflare R2.

  • Sync and async API.
  • Streaming downloads with configurable chunking.
  • Streaming list, with no need to paginate.
  • File-like object API and fsspec integration.
  • Support for conditional put ("put if not exists"), as well as custom tags and attributes.
  • Automatically uses multipart uploads under the hood for large file objects.
  • Optionally return list results as Arrow, which is faster than materializing Python dict/list objects.
  • Easy to install with no required Python dependencies.
  • The underlying Rust library is production quality and used in large scale production systems, such as the Rust package registry crates.io.
  • Support for zero-copy data exchange from Rust into Python in get_range and get_ranges.
  • Simple API with static type checking.
  • Helpers for constructing from environment variables and boto3.Session objects

Installation

To install obstore using pip:

pip install obstore

Obstore is on conda-forge and can be installed using conda, mamba, or pixi. To install obstore using conda:

conda install -c conda-forge obstore

Documentation

Full documentation is available on the website.

Usage

Constructing a store

Classes to construct a store are exported from the obstore.store submodule:

  • S3Store: Configure a connection to Amazon S3.
  • GCSStore: Configure a connection to Google Cloud Storage.
  • AzureStore: Configure a connection to Microsoft Azure Blob Storage.
  • HTTPStore: Configure a connection to a generic HTTP server
  • LocalStore: Local filesystem storage providing the same object store interface.
  • MemoryStore: A fully in-memory implementation of ObjectStore.

Example

import boto3
from obstore.store import S3Store

session = boto3.Session()
store = S3Store.from_session(session, "bucket-name", config={"AWS_REGION": "us-east-1"})

Configuration

Each store class above has its own configuration, accessible through the config named parameter. This is covered in the docs, and string literals are in the type hints.

Additional HTTP client configuration is available via the client_options named parameter.

Interacting with a store

All methods for interacting with a store are exported as top-level functions (not methods on the store object):

  • copy: Copy an object from one path to another in the same object store.
  • delete: Delete the object at the specified location.
  • get: Return the bytes that are stored at the specified location.
  • head: Return the metadata for the specified location
  • list: List all the objects with the given prefix.
  • put: Save the provided bytes to the specified location
  • rename: Move an object from one path to another in the same object store.

There are a few additional APIs useful for specific use cases:

File-like object support is also provided:

All methods have a comparable async method with the same name plus an _async suffix.

Example

import obstore as obs

store = obs.store.MemoryStore()

obs.put(store, "file.txt", b"hello world!")
response = obs.get(store, "file.txt")
response.meta
# {'path': 'file.txt',
#  'last_modified': datetime.datetime(2024, 10, 21, 16, 19, 45, 102620, tzinfo=datetime.timezone.utc),
#  'size': 12,
#  'e_tag': '0',
#  'version': None}
assert response.bytes() == b"hello world!"

byte_range = obs.get_range(store, "file.txt", offset=0, length=5)
assert byte_range == b"hello"

obs.copy(store, "file.txt", "other.txt")
assert obs.get(store, "other.txt").bytes() == b"hello world!"

All of these methods also have async counterparts, suffixed with _async.

import obstore as obs

store = obs.store.MemoryStore()

await obs.put_async(store, "file.txt", b"hello world!")
response = await obs.get_async(store, "file.txt")
response.meta
# {'path': 'file.txt',
#  'last_modified': datetime.datetime(2024, 10, 21, 16, 20, 36, 477418, tzinfo=datetime.timezone.utc),
#  'size': 12,
#  'e_tag': '0',
#  'version': None}
assert await response.bytes_async() == b"hello world!"

byte_range = await obs.get_range_async(store, "file.txt", offset=0, length=5)
assert byte_range == b"hello"

await obs.copy_async(store, "file.txt", "other.txt")
resp = await obs.get_async(store, "other.txt")
assert await resp.bytes_async() == b"hello world!"

Comparison to object-store-python

Read a detailed comparison to object-store-python, a previous Python library that also wraps the same Rust object_store crate.

Project details


Release history Release notifications | RSS feed

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.

obstore-0.3.0b10-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

obstore-0.3.0b10-pp310-pypy310_pp73-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

obstore-0.3.0b10-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

obstore-0.3.0b10-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

obstore-0.3.0b10-pp310-pypy310_pp73-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

obstore-0.3.0b10-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (3.5 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

obstore-0.3.0b10-cp313-cp313-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.13Windows x86-64

obstore-0.3.0b10-cp313-cp313-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

obstore-0.3.0b10-cp313-cp313-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

obstore-0.3.0b10-cp313-cp313-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

obstore-0.3.0b10-cp313-cp313-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

obstore-0.3.0b10-cp313-cp313-manylinux_2_28_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

obstore-0.3.0b10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

obstore-0.3.0b10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

obstore-0.3.0b10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

obstore-0.3.0b10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

obstore-0.3.0b10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

obstore-0.3.0b10-cp313-cp313-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

obstore-0.3.0b10-cp313-cp313-macosx_10_12_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

obstore-0.3.0b10-cp312-cp312-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.12Windows x86-64

obstore-0.3.0b10-cp312-cp312-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

obstore-0.3.0b10-cp312-cp312-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

obstore-0.3.0b10-cp312-cp312-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

obstore-0.3.0b10-cp312-cp312-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

obstore-0.3.0b10-cp312-cp312-manylinux_2_28_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

obstore-0.3.0b10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

obstore-0.3.0b10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

obstore-0.3.0b10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

obstore-0.3.0b10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

obstore-0.3.0b10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

obstore-0.3.0b10-cp312-cp312-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

obstore-0.3.0b10-cp312-cp312-macosx_10_12_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

obstore-0.3.0b10-cp311-cp311-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.11Windows x86-64

obstore-0.3.0b10-cp311-cp311-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

obstore-0.3.0b10-cp311-cp311-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

obstore-0.3.0b10-cp311-cp311-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

obstore-0.3.0b10-cp311-cp311-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

obstore-0.3.0b10-cp311-cp311-manylinux_2_28_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

obstore-0.3.0b10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

obstore-0.3.0b10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

obstore-0.3.0b10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

obstore-0.3.0b10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

obstore-0.3.0b10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

obstore-0.3.0b10-cp311-cp311-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

obstore-0.3.0b10-cp311-cp311-macosx_10_12_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

obstore-0.3.0b10-cp310-cp310-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.10Windows x86-64

obstore-0.3.0b10-cp310-cp310-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

obstore-0.3.0b10-cp310-cp310-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

obstore-0.3.0b10-cp310-cp310-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

obstore-0.3.0b10-cp310-cp310-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

obstore-0.3.0b10-cp310-cp310-manylinux_2_28_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

obstore-0.3.0b10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

obstore-0.3.0b10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

obstore-0.3.0b10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

obstore-0.3.0b10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

obstore-0.3.0b10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

obstore-0.3.0b10-cp310-cp310-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

obstore-0.3.0b10-cp310-cp310-macosx_10_12_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

obstore-0.3.0b10-cp39-cp39-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.9Windows x86-64

obstore-0.3.0b10-cp39-cp39-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

obstore-0.3.0b10-cp39-cp39-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

obstore-0.3.0b10-cp39-cp39-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

obstore-0.3.0b10-cp39-cp39-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

obstore-0.3.0b10-cp39-cp39-manylinux_2_28_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

obstore-0.3.0b10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

obstore-0.3.0b10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

obstore-0.3.0b10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

obstore-0.3.0b10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

obstore-0.3.0b10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

obstore-0.3.0b10-cp39-cp39-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

obstore-0.3.0b10-cp39-cp39-macosx_10_12_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file obstore-0.3.0b10-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f13ff4d49553b1bc9c98117a046f0b393f93e116a4f651b5b6b4896d593aee9
MD5 27670541f038af8ff470b28f389c65b9
BLAKE2b-256 99b3e0cff4b57b49ad7e59b4ea5c205d67a2bc3579d6a576b0f552d6dbd3cc85

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dfd6595a623674f62f5f85610465c25018f66cfaa0a23eda6452b7f73723d0c9
MD5 4fef2b5238ba5a7475e7e629e86986ef
BLAKE2b-256 be499bda9c7836ebd47ca7bddb556743024f9e0dcc1e1a848f2a990add41c483

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c716a3a87967a56c33a46b3b528877a058d4cfba067d7d4cbca07faf88aab1ce
MD5 f835b01088c5f627ef9fc0041afbdca3
BLAKE2b-256 c14d0a4600125d12408502f2be59674b69c8bd3f0b1e935f9337156999ab79aa

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2107a9048e9a8b827db176164cb6ab156f4d74e7e60bb369514f1e6bfa4368c0
MD5 b16581d7d84b8c8733834df6d7fc042e
BLAKE2b-256 e9643f802af4ef2f607e57442e201111ce51c9b081064a6b85a35724197c94ff

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1ed7f27abef1ff2fa4a97d481950252bb9907bee477b064543183122fd73867
MD5 899c6522a8ed7d618974dbc782568fb9
BLAKE2b-256 e87a506fc02b1219a4595ef39603bdbd040336e6af8c566422855a19dd6d8963

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e432bdfda152fe295960d0fc716c693794317d584f5bbd41dbf241a71b1261fc
MD5 dbe8035537d3652f1b0a2c562b894ae8
BLAKE2b-256 78d68dc14a4fafbb98f040c79e2b17835bbb82ab0c59772706bd8bf45498d6f0

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 49e555ba693b4bb9c168a57d404e2ebe71d1dd3942867505ba35000d620621aa
MD5 21f619ab15cfb88af839bb7f1f8e90d9
BLAKE2b-256 5a9b55383e299256b3435cb2b285f856c62287eb9cbaf6ab0db45b60c76f5be4

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f7246ec00d02a6fa65bd7c7ddf99ef33e7b3ec037b9d376188cf2a20ffcc22c
MD5 9ae670c0c9f9ad68b3071f8b5704b8e9
BLAKE2b-256 085ff9eba834ea6f144a15b11101206efb824da21f596281a98b05401c463891

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 256210f604964b1c93f67d57421ec5d18cf42ee1fb5878ed5a67659ffaa24615
MD5 053b7965ecda01f6e364c5de4b2faa54
BLAKE2b-256 742422ed619ed8867bd0bb7c626d7fd74bb9062aee2e743416b3e5abc83e187c

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d71fc8f8e744ed4c7ab35f4f6f61380c139cee43d47cc5e045e6b801df93baaa
MD5 5e013257625d724ac166d5985fc5f24a
BLAKE2b-256 20fe1f0d1ce8c5d1c87806af7360f5201dc0560efe33ec9a770d5ab77894503e

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a47e9f32bc4ef3cdb46d8f7096d2ef33cb9bcd511f568cd9a9046cf88c9b75b
MD5 95a5a9169eb1fca4fd31174fae795f0b
BLAKE2b-256 16eca043a4cf13826656e2db212abaa5ec47067dff2ca7b6d351ed7d980ff8ea

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cea662e3482d47ff6d7b9ef373ca215a779c70bd2a4275f4e2c6ae595d7c2291
MD5 8fc60163d6a83d033464881f559698f8
BLAKE2b-256 16f201bb150f9fa4d0acc0af056b79beccb2f79d92673889ad6938616cf8ae34

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: obstore-0.3.0b10-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for obstore-0.3.0b10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 19685fb86a5979a3c9de468024d96ce31634dff3fb43a8fb2a360506d72a81a5
MD5 99ee3d0d0d37703a68e6ded8e698212a
BLAKE2b-256 b9a5baab9f3a0267334efa9ce47ccf94486dd22a286d4f9d38ce36d427a9f164

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd2c60f2037a0237adddb68abdd13bd0c58f5c93d9e9007fe9d3819972132c7c
MD5 566699d8542ea9733d2fb625eb384ef1
BLAKE2b-256 0226e3b8ed662ebec29098bac0adbb6f587ae8197b6595ad85192c6ba36283f0

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed171f4ac1b4089f40df7855765f563f932c5c2bf18058494fc59d76dd53e25b
MD5 dc07571804507983cd21c0243e059fa3
BLAKE2b-256 51504c4df53b3dbf6f86bb4296a8f6989d5845f5570e1c109ed7523b1c86d942

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 18ffb2441292e592b6e5e8e008d7256895fa96ae97e5f6fffc61074dbc65ef04
MD5 091582a81f2d4e846ef29f79faa625f9
BLAKE2b-256 3e53ac2e80baf188aead1b954c29c7f5affc8b92646a937307b403eed40645b8

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 048fcb7e0fb05ca549a086b347f7b1c41621e524b8f70f43d60d30b904f2b9d3
MD5 a1d507911efe641815b0a099996641dc
BLAKE2b-256 3c279ed12ad0dc31f0c9a26af4791ab2585602a667751296c9d47a849c7c59fd

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9fe4c521a9788364a47b6f25cf0c69046ffb2ecd37ef61c7676f82320efce152
MD5 d365dc35bf77fdbefdce62b0b6791f0d
BLAKE2b-256 33fb27e0577ba04e77da1ffb0ccebfab6a6fd31c06f8f8c07d7160cb3526a61a

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1d434d347fcfa2c321d0d0871ae3236ea562285c10e50acfb9caaf3bf3baaab
MD5 2eb06dfb24c289055c3ba77859a47319
BLAKE2b-256 a183a7110bd629b609749e54c354d11399556f1e885179ae304999db53bd6290

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57ed8d68a14c9b7835364453ff324856fd3f94d4a89cbc73653b7e64f1eb7165
MD5 47292420adcb46ac6033d9c1eed79bf2
BLAKE2b-256 a6c43fd0e59e3d0d1cf97478756644c6d18321932a5af8ff452ffe6d55b47155

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d142755d1fb8840eac81fe6b14510e146cbe872f6b8ec00b95cdcc42a020a94
MD5 2dbf2454710ee36b714f6669f9075890
BLAKE2b-256 ef7744fcd97feba3ee8b9f1a887c29e33082b423b03c59b2742c2ffbd5b232c1

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a55ef5cccd10a2d8f3adc783e02ee4ea0ce796dc27fbd233bdbbf97c3accaf5
MD5 2c88711d0315cbae73d76bab2ea5d69b
BLAKE2b-256 2ac01dcf8ea02ceb330ecc805672726040d2e97517ed65afc059ccf301ecebfa

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45cfefd8f270210a8b5e16810c99bb6c94b01671e97da2296b5d51524a46f702
MD5 9bd6b51e4afe4e28e05aa7087c7dd546
BLAKE2b-256 eb3e3c885ba87724649ec0d962cb2aafee1b49ca00f0985b49835224a7fdc8ce

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74f1ef4b1be39ab98260963e5fb8a9fced4e3a2c84d64076bb22320f0dd47935
MD5 558bc25ca3bf275478117dbae9c1b34c
BLAKE2b-256 3e19089e89ad5b67af9badf4d9312032dcdbc8a2aa32ca778d50f82bce10c325

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7de076ee6e5b17377a78bb03fbd7ecfe4d9c9bc8e33dda674e6919cd0548895f
MD5 632fddfe6cf4e3cd0ca35d9dcd237496
BLAKE2b-256 f7f17f7047ecc2ab59bf25d97e4a73ea8ee90c5fa9160e720a828a5c3e71633e

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: obstore-0.3.0b10-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for obstore-0.3.0b10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9aa479511f37388b8b769eb2d1f1170b2ca5b3e313ef36c9c0a1e30cc5c0c58b
MD5 fa48c2a162960f10f55d10cdc7bf5160
BLAKE2b-256 d8dcd16d260778c9c79004ffb2bd4d7860998f3dace94bd4660c3785f3d3528d

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef4a7889bd5596d960cb5ef143ebbd5378a024b8f28ad07c58c4beadef459285
MD5 b9d1b8cb4a33e4b3839350759abd5276
BLAKE2b-256 ad57ac0206dfe3125c7d11deb29d9d47a483520734c612a3cd873f3479b2fa6b

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50e857a348572c786ac47b33e63d8ef1d7614417dd5bf760e3a3dde80ee6c654
MD5 4dde6bf0c0812abe1cb39ec0f3e01e6f
BLAKE2b-256 1743aff153ed08f63050511d2d69b25fc07b3d1c4ab38e92671c10196c8e9e92

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d70c25a2d73d2aaca14842420d08caba4d0317681f43dfbca2a2816ccaf55649
MD5 e4c8780879749078f2a4a991cd58d990
BLAKE2b-256 582375ba814f45b28ecc5f67318aec78ed14cf54124a4087436e93fa0d68a1e8

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78a92fb8f263e5dd97c29ba06ed1162fd293cc1c30a01b62472028c5dc4a8c69
MD5 dda8125cc75b81e8adbc9295de7ac4bc
BLAKE2b-256 d15f553778613cb4ec4b64129c03d2576bc8fc744f1d7a4991fa23573982629f

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f76dec9a7d52866b22c19d905feda4b2cdbfb5e172a99763c0342d93eccd61f1
MD5 bcc93fa609460754012ca758f286e216
BLAKE2b-256 b8f3d1667641d390dba4aa66bbc13d86140da1b8d84315c790b3b7e4c22d9973

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ccb4061b4cfa869d9e3e076fc86bc67335742cb5bb5cbfc8f92f213c7eddcac
MD5 af9edd8f0a4abfe5b663fa5cf771bbf3
BLAKE2b-256 1f43e70d9fcb2a07fa1c53c664aefa3e1ca5ea40432361c18f9c817115b5f126

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37f8bcc133d2e9e974b0999c8ce92bbe29b5281f275a850e7cfff29629b7c4ce
MD5 2d97feac5d5c3c660cd462338adb4ebd
BLAKE2b-256 978bf41d48a748ef2e03388573d012e6d3b313630955c18967dcc683239ed9e9

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3dfe49931d5fc3f5e40d9267b17a9e1dd6c0aec2b59136a64fe5ecbf48802c1f
MD5 f736595be4f471bed7a2d11d182e53e6
BLAKE2b-256 731a0212f789f1eb6b3de7de2c4d6dfd4af30319010d994b3e57fe7f490e340c

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bc6a49ad3dcdf84fa1c52ddff41d2ca6232b454ad546b2b83d98a93341b40e7f
MD5 63425bb921a42cfe540b15270888d0bb
BLAKE2b-256 ff0de0c995320b9ea6b800cef15995f8ac4383769ece8df79b0005262c41683c

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93ccf494e6cd8ac8e9ffeb1fb73392b43f31b5fc21ab8e3540d4bdb6b6b4ecae
MD5 05de43be9c8090816917214b93cb5a8e
BLAKE2b-256 d541141efa23442ecedf6d20dd2f986ff3d5b483e1901efe72b6f6fe284e29ff

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbaaf87b386529f1a8eb6da09f7e39e18c9e83e64e383f0dff27c28094519928
MD5 185f92d02d350f1d430b1fa4ec570c2b
BLAKE2b-256 3fe70941ca521169131a654d7f9a5ce7f319006b6bf84dc290bbbec766a13de1

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c13f564b80053faade4feacf73cfc0b4615a9353344f71ef0738b2785a72ab7b
MD5 7d9cb8ce7e4562affd16483d8b808a6a
BLAKE2b-256 6b2d0ffdd135970b4f5c9caaa973e4d1ac488eeb9265d3a86bd1bc69edab2f4c

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: obstore-0.3.0b10-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for obstore-0.3.0b10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 46f2bd4645f445e2f87fa5b26992abb35c859a475eb2f92fcda084326b07230a
MD5 d217b39e558f9d1179a8a96188a267c7
BLAKE2b-256 278486922f6371fe9f9fc0ba98a4d8698cdbadcef39e21cc0820b8e413913387

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d45fb3ece3a5111e8040856495bed47f77dd7a95ef57a6658d28b7f99a6a086
MD5 c141d688505a755ae2e39ccb20a2764c
BLAKE2b-256 60093f9eca92213f26285dd4e95041606b40d06f078a62f3cdfc0d80b3dccad9

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9678019df79b9df38cc12611418930dcfc7588f5ebad9a279e4f946344d06a67
MD5 82fd96c5c7b3aa8a01d079aeedc1a14d
BLAKE2b-256 4896651300941788ca565be9a9ce113dbf8a0b7d7b6996be8c98e7dc51933b7f

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 21d6e5f49219a0a45fc29593043ce72fdb630e28dc764033661778334b0c0d40
MD5 f543bfe716c24923b6efe9fec869fd07
BLAKE2b-256 7035a8ad766ba9ca8b168f688ba4213580faa2e11154c06a6395edbbbdf89544

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 486b7b83fa600d46c67a957143bb876345d73daab77c37018d5a1274e7c8d2f8
MD5 fded5df6be12d61991b55acf8e20a363
BLAKE2b-256 b0c2fd987559378b18c898879655a33bdb40afc8beba49fcca5d54bdad4cdfb2

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 643842996b579aeb8682b1def34b760bb5868796b225c9e8e5d663230bbac14a
MD5 33cd8dd42beb2be56546b231c8c00dc4
BLAKE2b-256 309664c2aae1934b498e2f02562f7487b654c17c732d347d0d281109932ee573

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9375e3679f280dea552a4cde330d6d61a2d92c332a27b097341ca6318e1184d9
MD5 2c7a35a1bd4f8f52ef8a83b8dea44a7a
BLAKE2b-256 944f93717f776df7dd07408e19a67d94836e0acf762d4b93d182baae9e15cb6a

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c4c3207ccf6d41f6394336233a1dd4042c8f018dd7c5f3ec56d6dae50ad1309d
MD5 6fea418e61d25e44a5d98239f12f6f8a
BLAKE2b-256 960649efb746e862f0b21c47214f266b0b4def1c830ba234e1de26fa71333137

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17166f42bdae46090302123e676130b5359c8c8e8ac42a197e075a0fb2cb1190
MD5 f3a85b36a698274a53d16aa3ada20506
BLAKE2b-256 e41cf0539277d995ce5f8df0941d79787a70e103dd52470978d53031189f54c4

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 124269b262a82e17a40f941e41e1dc5f60c0145047de12bc40b304ec5e1740ae
MD5 865341ced8a9311d04bd440a51ca3cc3
BLAKE2b-256 14a69b6e38cfd65443f09224d1c427a3fb564e95893b2f4858853a9f37beaf45

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5e17d327a8e5d6ac4d46888e2e5c9ff43e593bf20db58fa388ff2af94257fdc
MD5 fdc764243fe4767d351e4b293b3b351e
BLAKE2b-256 78c5bad5590db073f206acffe8955fda5ba93a4c8161201d1a7f514e753328b4

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47bc3da106ff51641618cdcdd1b6374d0f2e09d2757f6ab582a9b0f813ba2d07
MD5 212f2af02efc15ece85685e9b3c319b2
BLAKE2b-256 ce54490b9b424a1e3510f0f5041be94ab3c2677edbb378f2151847faba296cb6

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7666477dc9104d1c37700bfc41facbe70a2aec939ffa11bdb2fbcc451845a6be
MD5 1ba16f92f224edf6caac69649a48cc43
BLAKE2b-256 bd0b545a6af577cd306f6e5fbf3056c9240467ef813db489bcac06e4d83f175a

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: obstore-0.3.0b10-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for obstore-0.3.0b10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 54dc3b5e05037cdcff987b267ccc6e3494bd4c446baa7479fca31ddb3074ce08
MD5 404b863acf175c40caa504678f6e65e6
BLAKE2b-256 a6525185df20b00dcd2c82afd257975ccd5c92448d87d31d0466258e42425a81

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4807e4e3556c9bc720e456a0d130ac16ae20e977013d6be85e17595cfbc4dcef
MD5 3740fc7f77c56fb1db5d5c24b3abdb9b
BLAKE2b-256 d3235e5e686b80d2ff97a1871d12a5c5f2cfd6812740b2200446fef3dc414c46

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1257b1f0ea9b1498bbb1a87a5fbb858230b58cfa8f0257195d4ea24d65be6fbb
MD5 911021b0d8d046e68c3622a5a425b48d
BLAKE2b-256 f99999221d4ed08e58edca598e6315413ca41aeaa40230e3c25c767b07dfa748

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a90808f225895277f7a15abeb642ca435fa2dbca707def636f48dfaffea792d7
MD5 c586a848905f6ce52c31a4a5b3f1418e
BLAKE2b-256 a0ee63aa9c38d507cb8e6842ecce5b2cf491accd72ff74ce5091b679962f4670

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 264a866dc309d6c26187d15cc640e47749581973ed50d392e06e7d6fa739beab
MD5 71e04a32ed223308e3f5c6b3ac0ea6cb
BLAKE2b-256 5db6554e28ed9fbbb9d332f7c30ecdc4daac0cb1afc7b1f9cbe5e2e9cb271427

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a0562b100d8850bc6316ff295b216c40f18e5708b7357f215d2728623eab767
MD5 f883da5fbab76f06b2bc175690ae4824
BLAKE2b-256 69dc4e295b0086a33fbda1734134c7867ce20f1bfbc25dac33987b80044974c1

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ab218845f05ea2d4c0041422524e2a5b175826cd39aa63940e91e47f8988eb5
MD5 7bb8c8d7374072b108c93be11807243c
BLAKE2b-256 bd654788b533d02a2499cfc3af16c8fc36635b68317652a611882d8e510cba9d

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2ea1bacda12fe4d61a95a56a350e6e7e64dd4e31aeaf46da9bb2193ae57cfc77
MD5 15a30a217ace9aef4f891e2ac95d0965
BLAKE2b-256 c6037da3b60c593198a268af3acb26aa9a4e9685746884250336a9988d501cb4

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6f6a38a22a5ac28ad32106e536961bad7d772a74214e3181b6213ae1cd582d08
MD5 d94923353af7bc33cec2eba5f6bc6e94
BLAKE2b-256 f03230d5b8425aa79277bc967fbddebb91740a984546aaf2711b4baa6c83d8bd

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc29f0e73a16ecd6526d03ab318d950b741311dd058fd6ac682f8f9fc9c8edf7
MD5 157fdf33e21e9d71d69c53e0b5eb1e58
BLAKE2b-256 20a959dcacce40e32f68141d77d8f51a2cbb5fc4f01032947c2d72bde9843a55

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 75a9f1408384c1e413fa91ccfe50bfca54a44c937d80b4cb7ab6a7ef99bb1128
MD5 3cb0f86234ae53c778a901998d700eb7
BLAKE2b-256 da9b6ea8f5cdb56dc6cc883b604fa96c75c271464c7184daa0c7b1f954ad8780

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d66a955fcd94310f2940d49225abb384bfe050401129705533b132de394aaf8
MD5 d60ab40d001f443592451c36dfe7436e
BLAKE2b-256 0cd02e383f04ef8d1e4dd1ccf69ffd400246baa1012b381fb00b58a5b0b8d885

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a3a108818dab60e05821a072e5ac6635875328f02261b76160b07ef10e16ef4d
MD5 2480d8c9575c71df7acc5ca89001c919
BLAKE2b-256 1465f557c53cec497e335f2840c401d3257c7a9b9a5e4fbbfdda3397703a3294

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: obstore-0.3.0b10-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for obstore-0.3.0b10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 37f1348f3d605d73df96c53cd7d56a136d618c9b73dad25290ae1faa0cba8b6f
MD5 6306c8da730385a21a020bef05a653b3
BLAKE2b-256 7eda7254652fa72a8fc592fc6ad87cf5c7e5d7a86eeb418f4a666cd18b7c4bc3

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f8ede4db6825545d3ea44b05bc9cac2e2fb98ff621175b7d2c97f591897092f
MD5 5627459859e3ce63d6c47552d0df8c6e
BLAKE2b-256 82ee5ad5d748efcc3949d79d5f3b4544115538c6642ca52ec9f90b249c575907

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 918f488b192e87d910cdcb92252133e7196b7bcdb64702fb3e70bdf5570d57a2
MD5 7a223af87202109aac75a4c5d12be93d
BLAKE2b-256 5ccf4892bd365044864d9aee0b8160ba5928d46de50571289b44141e3f7d3f3f

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d975d2d012ee34dc047d07297fc130a50ac515ee678bb743fb7028e56432fb53
MD5 dade19bb40635f1d7942345fe6267614
BLAKE2b-256 a8625adfcc026d03a4eb1184f47a53926ab1048d5467d19a4c179b9355126949

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc92ac4fbc52c2166bec73040b23b40aaf4a2df4c06cf6d190fb62acadef8695
MD5 5176a76b6cc1f3748262537543d190f0
BLAKE2b-256 eac4e303bf97bc1f31b4882da2590aa8ef24ff808fb68bb161897a0a95cb94b1

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d1e3d40b9be78838a1f44227ae92f593d0b347d0530134bc79e96700c3f3981
MD5 aaee03f73d754374e028b1e413f2e3fc
BLAKE2b-256 d9e11f8f0cf59a139c423dab43a3d004bcc10664c971e4625c161786efa59b3e

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 198fc39595be420412d27c402f8bfe502bea33687dc838eb9a81d7b467f94270
MD5 1ee2983fa4518d1d5c38c0d54307fb60
BLAKE2b-256 c0da523e66f0a255c626f179566e26f592f840de8a79fc5061fcd40cf9088ed6

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 baf262f9d7139373f40d0ba2dc18575e9819d013b327c716dcb31db307bdd045
MD5 cca7dfee5ccf9cb88f1e979a9af6db40
BLAKE2b-256 399ba0065ba2996d4112322e17e03da124e09dd5fb67ece65fb5f07986331832

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c68bcd9d85bef2a99f1bfd6dfd09a0b70d1ee66e82a1d3438fe3cd6349542925
MD5 cf51e675d79673d5797b072b97e60f97
BLAKE2b-256 3be1b98995296c5f7e3f1e67bfc88fa06acc3698d991b89baf6b74739386826a

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5065b4c00bb9669c74c8c5fc62e989b2f60b4c5672bfbb56c7c175831c2374b0
MD5 2f2fb387782b6346149518e307d55fe8
BLAKE2b-256 5b62a21464252e6c4ad6927e519a995e82c8c3ead8fa85b2501cef21e7801c5b

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e9533fbfee77fed77bc6b2ca6597014a8abfe81500085115f9987b1f2636d8d3
MD5 be06826986e7beaa0fc29ddb92223f23
BLAKE2b-256 ececcf529fc384586bdbb781b436ae6f4964fdd59771bead469d69341c74d57b

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2defc54f8fbef4afdc11108093015829b134304bdbc9778bd3ad85826eb59330
MD5 2cbc79f2f8fa9a4efa464a72cf09fbbd
BLAKE2b-256 da136ebd5d96a8d97053c8581d5eecec4c54cb30f0c818da2cd3131ea7edeef1

See more details on using hashes here.

File details

Details for the file obstore-0.3.0b10-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for obstore-0.3.0b10-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 22067f0688cdb0950ae65fe388f1a00173f8a789a86f7e562be5629e6993fae0
MD5 9fd2eda1fc55677f5c7fec5ebbc333ac
BLAKE2b-256 781ec3b43e30501a4a254523194558abacde730a6a5d45f9b161541f5779d1e0

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