Skip to main content

Rust core for Oxyde ORM - high-performance database operations

Project description

Oxyde-core

Native Rust backend for Oxyde ORM. Provides high-performance database operations via PyO3 bindings.

Core Technologies

  • PyO3 — Rust bindings for Python, async support via pyo3-async-runtimes
  • sqlx — Async SQL toolkit with compile-time checked queries
  • sea-query — Dynamic SQL query builder for multiple backends
  • MessagePack — Compact binary serialization, faster than JSON
  • tokio — Async runtime, GIL released during I/O operations

Why Rust?

  1. Performance — Native code execution, zero-copy where possible
  2. True async — GIL released during database I/O, enabling real parallelism
  3. Memory safety — No segfaults, no data races
  4. Connection pooling — Efficient pool management with sqlx

Architecture

oxyde-core is a Python extension module (.so/.pyd) built with PyO3. It exposes async functions that handle the entire database pipeline:

Python (oxyde)                    Rust (oxyde-core)
     │                                  │
     │  QueryIR (MessagePack)           │
     ├─────────────────────────────────►│
     │                                  ├── oxyde-codec: Deserialize IR
     │                                  ├── oxyde-query: Generate SQL (sea_query)
     │                                  ├── oxyde-driver: Execute (sqlx pools)
     │                                  │
     │  Results (MessagePack)           │
     │◄─────────────────────────────────┤
     │                                  │

Internal Crates

Crate Purpose
oxyde-codec MessagePack IR protocol, query structure validation
oxyde-query IR → SQL conversion using sea_query
oxyde-driver Connection pools (sqlx), query execution, transactions
oxyde-migrate Schema diff, migration SQL generation

Exposed Functions

Connection Management

  • init_pool(name, url, settings) — Initialize named connection pool
  • init_pool_overwrite(name, url, settings) — Replace existing pool
  • close_pool(name) — Close specific pool
  • close_all_pools() — Close all pools

Query Execution

  • execute(pool_name, ir_bytes) — Execute query, return MessagePack results
  • execute_in_transaction(pool_name, tx_id, ir_bytes) — Execute within transaction
  • render_sql(pool_name, ir_bytes) — Get SQL and params without executing
  • render_sql_debug(ir_bytes, dialect) — Render SQL for specific dialect
  • explain(pool_name, ir_bytes, analyze, format) — Get query execution plan

Transactions

  • begin_transaction(pool_name) — Start transaction, return tx_id
  • commit_transaction(tx_id) — Commit transaction
  • rollback_transaction(tx_id) — Rollback transaction
  • create_savepoint(tx_id, name) — Create savepoint
  • rollback_to_savepoint(tx_id, name) — Rollback to savepoint
  • release_savepoint(tx_id, name) — Release savepoint

Migrations

  • migration_compute_diff(old_json, new_json) — Compute schema diff
  • migration_to_sql(operations_json, dialect) — Generate migration SQL

Supported Databases

  • PostgreSQL — Full support (RETURNING, UPSERT, JSON, arrays)
  • SQLite — Full support (WAL mode, RETURNING)
  • MySQL — Full support (auto-increment IDs via last_insert_id(), UPSERT via ON DUPLICATE KEY)

Installation

This package is installed automatically as a dependency of oxyde:

pip install oxyde

For development:

cd crates/oxyde-core-py
maturin develop --release

Usage

Import from oxyde, not directly from oxyde-core:

from oxyde import Model, Field, db

class User(Model):
    class Meta:
        is_table = True

    id: int | None = Field(default=None, db_pk=True)
    email: str = Field(db_unique=True)

await db.init(default="postgresql://localhost/mydb")
users = await User.objects.all()

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

oxyde_core-0.6.0.tar.gz (91.6 kB view details)

Uploaded Source

Built Distributions

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

oxyde_core-0.6.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

oxyde_core-0.6.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

oxyde_core-0.6.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

oxyde_core-0.6.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

oxyde_core-0.6.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

oxyde_core-0.6.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

oxyde_core-0.6.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

oxyde_core-0.6.0-cp314-cp314t-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.14tWindows x86-64

oxyde_core-0.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

oxyde_core-0.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

oxyde_core-0.6.0-cp314-cp314t-manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

oxyde_core-0.6.0-cp314-cp314t-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

oxyde_core-0.6.0-cp314-cp314t-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

oxyde_core-0.6.0-cp314-cp314t-macosx_10_12_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

oxyde_core-0.6.0-cp314-cp314-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.14Windows x86-64

oxyde_core-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

oxyde_core-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

oxyde_core-0.6.0-cp314-cp314-manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

oxyde_core-0.6.0-cp314-cp314-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

oxyde_core-0.6.0-cp314-cp314-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

oxyde_core-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

oxyde_core-0.6.0-cp313-cp313t-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.13tWindows x86-64

oxyde_core-0.6.0-cp313-cp313t-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

oxyde_core-0.6.0-cp313-cp313t-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

oxyde_core-0.6.0-cp313-cp313t-manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

oxyde_core-0.6.0-cp313-cp313t-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

oxyde_core-0.6.0-cp313-cp313t-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

oxyde_core-0.6.0-cp313-cp313t-macosx_10_12_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

oxyde_core-0.6.0-cp313-cp313-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.13Windows x86-64

oxyde_core-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

oxyde_core-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

oxyde_core-0.6.0-cp313-cp313-manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

oxyde_core-0.6.0-cp313-cp313-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

oxyde_core-0.6.0-cp313-cp313-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

oxyde_core-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

oxyde_core-0.6.0-cp312-cp312-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.12Windows x86-64

oxyde_core-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

oxyde_core-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

oxyde_core-0.6.0-cp312-cp312-manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

oxyde_core-0.6.0-cp312-cp312-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

oxyde_core-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

oxyde_core-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

oxyde_core-0.6.0-cp311-cp311-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.11Windows x86-64

oxyde_core-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

oxyde_core-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

oxyde_core-0.6.0-cp311-cp311-manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

oxyde_core-0.6.0-cp311-cp311-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

oxyde_core-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

oxyde_core-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

oxyde_core-0.6.0-cp310-cp310-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.10Windows x86-64

oxyde_core-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

oxyde_core-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

oxyde_core-0.6.0-cp310-cp310-manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

oxyde_core-0.6.0-cp310-cp310-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

oxyde_core-0.6.0-cp310-cp310-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

oxyde_core-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file oxyde_core-0.6.0.tar.gz.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0.tar.gz
Algorithm Hash digest
SHA256 d5d5088a40f908913b37e5fd52ad590da6600f7ffd5a8a08baa5916b96aeefb8
MD5 e5d03f55723ac37bcc9784877bc886d4
BLAKE2b-256 3ceeeed38ad9ff1eb3d4e2fa3e8ee7955ce64031aea0e7ba4e807ef50cbe1f94

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebd3f798d96e17128fb20e3b1678e94e038b98150211ddf8b122b16f39e951e6
MD5 fe419227092cdf454d9c43288f4f1f01
BLAKE2b-256 f025088e86768018e44797f9df7db47c1d6071740368a5c1ef467001802dfc84

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c20d37c2a1b09b483f3facde876881eb376d90760f52f654dcffe7fde88a14f
MD5 360c6c5fb9a1eea6f360cbdd04fcd422
BLAKE2b-256 c479c0c56de6837eefef8c02dabb2d5b3359eaea37ccfedf88b90b3eb0e4e813

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: PyPy, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d32871fd6c03afbbe3927bc62804381950cfa01fd84cf5b297cbeedeb53c8da
MD5 ed09121325c2c6a523e4ec547f923d47
BLAKE2b-256 c7de0df01aa11dfd0438f03ffa09bbddff8eaaf5ff07893ed50a6fb6a1e77115

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: PyPy, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79453d841b2c5108e8b3ea034d4308543a27ee583b63c9900b1fea84cad72903
MD5 c2f8db1b92b562310b995878a076b712
BLAKE2b-256 5174b2253f7907125d139148a1140a8519ea86bb3729c4e4712412fb3cd74202

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d631fd7c19d31db0a45c8597cdecf5e4114d402f339c8a62536cc85241318071
MD5 b000bb2211b3fd914ceb82ca512263a0
BLAKE2b-256 0a76f90d24ed4ffe018658ba2d8b55ba97fc9df1fbb4d60d8d8f41aad6ad6e28

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b428ca8658f366bd277060869f06a88eff5b7bd3d0e0e99c7bab1f10fee1606f
MD5 deda096ef299b6e0b79887465b602d5f
BLAKE2b-256 b8623b590c9c76a4e16cd71944cb842a405be7cd2af448b571f9914e951593b8

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: PyPy, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf92a889cf2eacf4762c874118044d17af2fb4a1700a42d2ba6307d0233b39c1
MD5 778321ee515dee14e9d8f3c1eaed1c3b
BLAKE2b-256 b6a3ba8b0800f4ecc85cd466e55ef7cab79cdecbf8b908452e4b48be11a7cb51

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9f647a65e222c607c7e76b86827f151ac1019a281a6316adcf2d8cb1f2c8e320
MD5 3c03a6e812f86bf5690574d747fc9df4
BLAKE2b-256 34796d602aabd89aaeb3efc6505c84eac9f4f6f124260f07b50993a42564dd03

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffc34aabddf95b9122af638253a59a7fee14cb8613f677300b42b252c7a2fcf1
MD5 cd35900c074ad7e9cc2925a139f1347f
BLAKE2b-256 faae0c68aae15cd45f28c97c571548633fea5f5590916934a55cc07a2d5b8a75

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2124345d84d36b17e734c1649f4bc6b548ac14cff87ece83908355d33a58caf
MD5 f29f03c5e293e6885076ebd39680fd21
BLAKE2b-256 a144cac6363a9dc68445d10807728a0818a5c3c23dade30b11468c4deca84a49

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp314-cp314t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 efc7ea78e084685da845db3ba1cd738d8a2f095ad15edf18402ff864bc3422bf
MD5 66cf960ddd3d36f0ebb9633769397f23
BLAKE2b-256 cf295017e7c2e09ab6f9336275b98164290f68d26dc077da4e8f7a0df01533c0

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b63b97f2be7dace6194dd4a666db8efa981e6d366dd6f2c01ae906e53c6fe04a
MD5 22d5b7a47bb37f06d79ddf24f0484ac8
BLAKE2b-256 043fa94dac8a0dd5fed55e989b3f9678cce4c1e3ed60a58010beb01c017decab

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef0ba50ac9f958982b3e488b9ec10184c81b9b5d1f9c442c22d419e3905fb9b5
MD5 79a830613df78131c28496ff04a81681
BLAKE2b-256 511180bfa2b2c52217579a43ed7d573b963b2323b2141a99e3fa083ed0d0c4f0

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 856d69145be54b89d544977baed90345765d83637f54c5c6878e30411ce08fc1
MD5 528cc329e73913562f9b6bf341b73f90
BLAKE2b-256 a879c497b5cd60109ac1a1871fbedebc1705a017523e6ca0f2c824b8c0de203f

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 78a6757e14c553b9b5ba9de6863302e71154834b04c075d3fc6c1349ce6d4356
MD5 8179c22a75bdfabd04f3cb30dd6bc7c0
BLAKE2b-256 d6e22f1f61a2e8db128045fd8cf7064018027fdada335b57a582634e59710842

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38757a6fc4f175263ab763ce204c1dd449d5a99761149ada984837c1310dab57
MD5 a1f6bcf4113b669c867d4b12fbb99df3
BLAKE2b-256 d2219d05f900e11d2c4b10376bf6c0c8e439000c4cb4b3c834b0a24e27acbd3a

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6f654498e7f87ad9829cba921cc5803f063fc65826106954976ed107305bd8d
MD5 240dbae91fde2181362b9fa01034185b
BLAKE2b-256 95097f8644b1e9f2b86a4593eb7f190431ccaf1266f90beeb8a70b54bda584d9

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 031756c56f16679b468b14053b01dcaa09d081403e9e30d1c9c418e0e310fb8f
MD5 48f2c7cdc4ce9465292a2a0351304ead
BLAKE2b-256 b259aea4c3ab833a05b25aeb3daac95936475373698ae011462f746cc3350afa

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ad660e85aabb875cff1844f0610d39b0181db344af0f2ba103360a6574729ea
MD5 0bd8f26af6495edc5755c150e8847d17
BLAKE2b-256 094917c7d8ca774e23610c5802c013951f8f8c0afd713a38606845df6f18be2a

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9221eba8eb6a1fba1e153dd9ee3bb0f2c8fadd691c99bd0795ca183dc1f4c308
MD5 54abd5bf988c104b5fcb6218ae7d93fe
BLAKE2b-256 25748b2f84f62f2d61a85eba7b7718de8f43f52655d8dc01560db350353f6ad8

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 053f9acb38a298a4ef8092a82158bedd71a56068fbad2a5d4cf57dbc553d96eb
MD5 7c848a41d0ef842e677afb565ce72ab7
BLAKE2b-256 94ff00aeab6c9daa2158b143199bbdfcf3bf89751a782f3f188d04acae547a7f

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp313-cp313t-win_amd64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 b9cdaa36adf0970389e1967a22626f85a40f894eb99fd5aaf6ad872d46bd1341
MD5 6149a3da44a3c80b27c5ec130a4d60c1
BLAKE2b-256 c101a3cb2007d509c1665637de91e885f38a55cf6c66a501d33e940017567151

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf4ac246acb84eabe86b97d97eb4db69c330373ff84b86f956de8ef684e7e257
MD5 9e1e0617dc083a476884226ec402c9d2
BLAKE2b-256 c6c90a6453b535806f6ef928cd45c065f4eaef4d332e97cee3efd709b6296286

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9732aa182cb195f1e80165550b984efabc7775d68701c8823f812e4bb5d82b13
MD5 53af1d87fdf779b690fe037ca855debf
BLAKE2b-256 521afef945fe276d55aa12a750c347ed0e7a33f4e38ff2793ed45ef74326c348

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp313-cp313t-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp313-cp313t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb0a76101e754adc345e675ef625146a5e30313e7cb537590378dc080678add2
MD5 91405520eb635fd0989ae3cb97ed9ac3
BLAKE2b-256 d8f3d441cce933d5e38dbddf773fa864ab40c65f2a4f33297c797fcfb45b6ae6

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0aee573f265374a4fcfec36f134ddcc1082234293d620fd61cd5623e24708227
MD5 82ca2c8f0528334eafec6e0d85d1a7c9
BLAKE2b-256 6758268429e2f5599288eefbac4a1a1b617d3dbf707c295f911827651805b79c

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98a014669192910b2f2151e10ac5003eac7f9d13c9243868c8a7fe178beca282
MD5 6e581ae3cc7db423acc3f8554e6a7346
BLAKE2b-256 e96259cac6fbe0428da340fa52d07759d3e879b042775b56cd25df2c12cd3416

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5d88364e174a667bb6f58e991e082e38d1f0b7c249995f71e065552ee32f180a
MD5 aa3970436441503b8db0be75afec346b
BLAKE2b-256 9b30b8de38595a32d1365f1dedc8c9f9ad72857c145413847ec73a862dce7a5a

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c51d4f92befdc71a7bd9e87fd4d47f8ae84a524afd88abcefce8e47bf3d9b441
MD5 83dc65e303bb4e153fbc09ba4681654d
BLAKE2b-256 a34d6246da63521911bf6e744eaeba70ae2d1259b12511090e3821b3374b0242

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbd5af3d51944ea4e302af79427f408213348d424b5bb1b913c94350c3b63d14
MD5 3ac6b7249edffc38566b5e1c02078cc1
BLAKE2b-256 0ee1a1dfdaa59e3779e8a122f280206248e40b1c0da19a5c8dbf979273618dce

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a1992868b527eb68650d9c41de8aed5bcfa309395f54ee7b09dc678496b3257
MD5 cd1774a18cef9514b27d63e5a5b1af5f
BLAKE2b-256 56a4472615f44703015fc662ca3ed774fd6b83351546f8ec7e2ecf492f0ba594

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9003d247b386b87ae43b4be2ea729d13e221448e27549a26f9df833b9f216dce
MD5 e4d772b964aff92477d32d16ade325dc
BLAKE2b-256 d466640aa02423e23e82990b1568ab8d5764463b05800b559b4c0a6e9397b568

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8098dbc365e8b2ef80d3c01efe63c258de373bbf2c379c35e1bee4d7700f2960
MD5 d52d4880d8aec6b7b6557d3e41f9960a
BLAKE2b-256 132b122604fe330575830977906b759fe32e7b681411367b3cd8231cc06fca1b

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a02edaf49882300fa2f16604dd4b5370f375a3a08479a7cf8ed40fbd0ddba8e6
MD5 0bc35ef4c81360b060ff992375137d07
BLAKE2b-256 ed3c20f3325f1d1cf01f360f1cac1dd0a35eaac4a9fda7535138e9bc4b971e86

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f858f83bd6ba0e26c33b4d2fffdc2d34e918ffa8052bd371707776270abb7fd
MD5 5dd50cf136176b715eed65d7f6ad588e
BLAKE2b-256 2469148ccd76e1f0a0b279b4f9b1d5525029fafe34dbffdfff063a288329d9da

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 991128f8670452b9b14343335fc7f31f0961330893181b614f5d8ef55e21e2ec
MD5 daa3588a92a000345160d2315f1d14c6
BLAKE2b-256 f982be761e904b6dbd1739a8ea6cf631ba0c4a1e7b9faa1cd2fe83da669ba6c8

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10d792d5b45240b72e3988ef3b97fd2b27edf4bb600980f52ab2b1e506967865
MD5 83ffa598675fb42c93105b683f1392ba
BLAKE2b-256 670930af4731efe6a540419d4df0840a4f472379e25abb9336260c5500726ab8

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3fa0fd810957ceca2352f88cb83e920d631decba3883d5cbda593886fcd7b22a
MD5 4f8f0e6135306697640eaa1dbf0f34bb
BLAKE2b-256 6be9802f99368d76932530ca2dbc625c18f5d55240a32705117316aac5f59d6f

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a74d0c0bd1098e0117abc9ae9d840f4f2f35780eeff6941e98352721d8279fc4
MD5 ad0f45a835a85ffecb30820db9b0b25d
BLAKE2b-256 e8c43e36da186238c47184bb5a06e139e95c26d8b7a3a75cc3a315982f7ccdad

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9cce819ed73edd3c4d97c372dde6bc7321ffd7145ad259685e17508625e8faae
MD5 c88c635b4b4d03bebedc949b9a9475f3
BLAKE2b-256 0dd27a9ab1a31601b3a48e72829b89c09ed531701d62ef4c0eb2b7823a782cb9

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d04c1e4b71d254dd7d4116adfb8f5853d2b7af44135ccc6628082d7d95d378d
MD5 3aaec47088e0ae44a3f2d44597f38671
BLAKE2b-256 55f7673a57e952aaec2d5c5d6a81ca24962a512c6b1f8c4e575f2c55b45ae538

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 865860cc65fa6cb3f143c6c907891653394d1a4b9c48db1851583566f0e9ee98
MD5 b0be0691f399a29d3c39848059c07db0
BLAKE2b-256 12b4d2eb43bd69c50c02f9d148a9f2745cc9f6d27818a0aaaabeb601297f7d35

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0c02b3992a86534329c4f9b1750b0d99210196da5a23095e0e43efd5fbd33eda
MD5 c42424e6fcf7228c5d21a21bba1c2c73
BLAKE2b-256 0662929bf87d2062cd04dbd3f080bddba7bcc7d1335b8c1a60c81452f9af1547

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67f0ed4145cc4ba43adef469fe9c0c8cd33bf6efcc211f2d5af86d5124a948c7
MD5 526583d3b92dce1f1b8264395076215b
BLAKE2b-256 160cb7df6907314524cfc94abfa69e2a8c1280ababc43e6527cd6ac4e1bba0d6

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a84645f1aa49ed009143617b4e473a042411624cedc094cd97a6d8aa93cf6bde
MD5 1e6ff32f0687717858b344662938b6ac
BLAKE2b-256 e19384d4dd6611281acc0d29efda15dd4dedb3cb867787e36f3ec48ea9de75af

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 898d0008435f3cd556c87f798259a3adff8a5e12c676bb77fe03cda33550c438
MD5 8a5617e9c0a4c27335620cfa61260549
BLAKE2b-256 7c0817fd354b7ba43a80565db52ff033d037dab9d25ba005b7407835d0f0e4f1

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca7145de84a763de69db26c5ad4c67d39cfd424d9fd570f657e3b9e8c075780e
MD5 613eda0d06a2e5f81f52f132981680d2
BLAKE2b-256 a0f26a07851ea0896d1b2f53af8d3b2dee92483acdc4a5932c2587e1319049ec

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d655b151af992fdb7e1f3911b208120247a5981c833e2afab6d120ffd764397
MD5 9598b48561371e6782acdf118fa56959
BLAKE2b-256 06e15bf88c91bb3ecbf19cb53d275434b2dfb631a48d8a63ea95443003dd0481

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 13a9849bf6b1d2c0e517bb821d7c2ea262b5a2bdfc2d4ecf67983655181c98bd
MD5 b59c66e1c929a57fbd3f6865ecd3e79c
BLAKE2b-256 1847f45fd616114bb2d6cc5d67f11bf14863f422924bbbc4526f8c4d087d110a

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9f05d94ce6148df674138aaf1609c58763d245941fa7fdab2faacc346bd20e65
MD5 4c04119383b7606c4bf4b565e7612b29
BLAKE2b-256 8ccee83b77ad5e50c3a7d49b5d10673c535d2f6b5fb53f846e71a456e34c7708

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a86b78f8cad2a0c8015f71a6d83689175372af1bdb65b881579df25fd0734773
MD5 cdfc61623083719b7ad3823fb31ed1ec
BLAKE2b-256 5932201829382481155f699c6de23839ee4a1355bd87a00c361ce3543d1333d9

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f89dc6a1bb54f4832b794b8c7db7bec89e6ab0d69a032537882249625f3e836
MD5 4ead1d7d73d56e60c75c6ad07450cf41
BLAKE2b-256 0f598ef0cd4eb42876aa73cfeae02f9558b70a5c723e4f621ff30f8cd351938d

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.6.0-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for oxyde_core-0.6.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f84cfcdd8998cce4ee057a8332bd5f54ec70e1b0118a5d63f1ee75329ab521c
MD5 9083b8994beed5026ad867383a93f0ce
BLAKE2b-256 d81dd42b4c913f45976bb354fadb483e717a1d363d9c1351944489b0a44c3859

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c73cdd773f367e4576ef800164e9f63987daee4f4d4173e4550c3b12076ceaf4
MD5 405b9c8870488bb2887b86fadf16f4b3
BLAKE2b-256 ec509bf3a0aa80cdf1e180dcf73fc5ff17bbd7f81b2c25ffde98010c16ff4dfb

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3d0f92cdb190facd6c5f21b74064f763a4ead0613dbc2a1acd62fa003fd4680
MD5 9e67200306898fcb65ee2acdd8e810ef
BLAKE2b-256 85be5958fb6804035ab5e97f2aa32a9d4851a3fb5ea29343021d4fef58998ae0

See more details on using hashes here.

File details

Details for the file oxyde_core-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

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

File hashes

Hashes for oxyde_core-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3f6a635e23d898ffae9f38728a0e3c21ced86e7f89e3e0675855dbfff50996f2
MD5 c12107d3bde4046ce019e5d0d6deacdd
BLAKE2b-256 fef32cc95aa79728069f5cf756f46b18b2e250c6e62945cfb0c5c1c0b89a2161

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