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.1.tar.gz (93.7 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.1-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.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

oxyde_core-0.6.1-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.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

oxyde_core-0.6.1-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.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tWindows x86-64

oxyde_core-0.6.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

oxyde_core-0.6.1-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.1-cp314-cp314t-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

oxyde_core-0.6.1-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.1-cp314-cp314-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.14Windows x86-64

oxyde_core-0.6.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

oxyde_core-0.6.1-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.1-cp314-cp314-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

oxyde_core-0.6.1-cp314-cp314-macosx_10_12_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

oxyde_core-0.6.1-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.1-cp313-cp313t-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

oxyde_core-0.6.1-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.1-cp313-cp313t-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

oxyde_core-0.6.1-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.1-cp313-cp313-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.13Windows x86-64

oxyde_core-0.6.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

oxyde_core-0.6.1-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.1-cp313-cp313-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

oxyde_core-0.6.1-cp313-cp313-macosx_10_12_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

oxyde_core-0.6.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

oxyde_core-0.6.1-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.1-cp312-cp312-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

oxyde_core-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

oxyde_core-0.6.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

oxyde_core-0.6.1-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.1-cp311-cp311-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

oxyde_core-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

oxyde_core-0.6.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

oxyde_core-0.6.1-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.1-cp310-cp310-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

oxyde_core-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1.tar.gz
  • Upload date:
  • Size: 93.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.1.tar.gz
Algorithm Hash digest
SHA256 fab65eb89899b51d7c75c82d11f7b66110083e828a754f23a6d0f4889ffd4a32
MD5 70089b48e6ac96a79557bbde78835ca9
BLAKE2b-256 bf203541fcb1702f7f9062669906bf3e9a4bd830b93ebcea78cd338db864e34c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 587c88729744bf776fe1c5b09b0e66df2540a2733b9a6ec4e0139b6ee61afaae
MD5 87a3b9f0db388c13b2c144a207c56b00
BLAKE2b-256 07949a8eaedebecda2624ad725423bde0d45bd71d63a1b4fe63f5a405040681b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bdfef84a54eca73d0f8d2082cd1efffd88d8f1e9ca96d42e3a997f08200db72f
MD5 2540f3477c832aa383ef03adb9847679
BLAKE2b-256 248520dc852335eee99d4047c1d3581787256f3c0eb5d36e45748fb97ca1a9f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aefb7d2e5fc42277fb58bb98ce3a0353f9b0d95040528bc65820d0f307cc61a7
MD5 3d2e69e4daa446a6964ba4e121edb450
BLAKE2b-256 b90cc652a61468cc896e0f2ce6599c05f91a84eca8e4ce34b923c607b2119586

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba963076b057772d35341c8dbc1c19b8c63b3940fc7f4544b3ad4f68607365f3
MD5 9600f2f8a37dee933248c27f72a07112
BLAKE2b-256 826b6b45c5753960e6e8b1664308340f9f1769154b29446c3f2013662c13f3cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 accb948c09b3fea84e24d0f61cc872c8afd614d2fc8b0ec1e9100f055eb7c474
MD5 c7c39a8e52c2ec2862d04868c6650eef
BLAKE2b-256 b1b01c80c9d2870242365a3fb8c52554d701a9d3ee294125071fe6c91d26fcff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fec3ac82b13521893e63ffbdb47c3160f73f49b9e254066c421440a8d7b1d71e
MD5 f8f9186092cd8a673404aa04824e8178
BLAKE2b-256 4b1b17082801d16c7a31f262ea6192b471af28955f2e3c01ec3ce853c6d2f5d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ead9acd81ed8cacc23916cc9601543be37be9388a9cde7cef617f0b54b080ad3
MD5 775317ea534f1371010c2b4fc62c8c8b
BLAKE2b-256 0bac2b59663ef9f34deb23b0966f44db97f6b4b6853838963a0022c928289133

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b3e74ac5737d677feb3c17043ee77276b99d631c9540ac79d27d8c48d626b925
MD5 d900d2fb249f8deeefd6aee6b16f86ea
BLAKE2b-256 e2efd238e6f16e915ef1523128f9ea093ff62b85f58da8abf139e2171a463bbb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36178cd95a2389a7245cf760a67e01e138c5b126eb2ff9547203c3fa7cf54aca
MD5 22f1d7e616fedd1997bcb044f4b15641
BLAKE2b-256 9dde1678fb728b9c828275746110d5492b9ddd9d23eb9da1a394df693597ae4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74727730cf18632fd11c01bbae43e9ab30ce93ffba9cb4febf99780c8b24125d
MD5 eef2064690b3b9294eebfdf122faf2a2
BLAKE2b-256 c04cb631260d23b3fd4e152af6d74f9c1b0f3bafb4a74512bb344ec55952a995

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bf58396cb7b1240f69c5d87eed4bc53609c37ff230526a7f0a6d05dc400d6715
MD5 9a135bdbd3e593bb4f2a98e3d5cbef90
BLAKE2b-256 7047fc7d46e0f4c389dac6d52436d300f489ececdea84da1f2afe8bab4d2affc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f964d6de16c5ae7624255990224d0aa142a086342bf3e17c3adcb6381155a4c
MD5 7739b9737659ac4e17a172a8bd8d3d8c
BLAKE2b-256 840741f83d25c6decd4376627d4592d6d2dce8178c3d98fe9fffe21a8344655c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01da4784009306d9e8b893204a5b59cd87b0a1482ca2e9716aecf0d1f7d72ad5
MD5 35b01c0ed8042bc33173b55c6de3bfcd
BLAKE2b-256 f10806d63f8179846abc8514b5af95780f0b2a84dd7cb32911098b6210ce6b89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9c536b1ae68d69be8ceb0492958fd07cf5d97e8825927028c57d4a325337682e
MD5 602fff97fdeb40be2e285a79e6297dc2
BLAKE2b-256 b0a08938baf6fc76022d8fdbd21a48a3bd61a6013c7f0f7b4de44412b2d36134

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ee034bf6a396df85639ea80eb324a93783e2b4750e9dc43ac8b42fc6ab433106
MD5 4712ecd4069c6824c6a2891551a9d32c
BLAKE2b-256 8b1b8dc1555d2b440776252178578dae95aa49724ed2e23a63eda5c58584a7dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7806ae2ac4ad363e78f9000016889d5fff9b1dbc0fa91ebe174c190adc81133b
MD5 a9bee1bb2e50190382f5dea2d8923873
BLAKE2b-256 64aa1627d8f007b2ff6799374363e0656b59909ac3eb494f26de016957f73c82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1916fb1a278fadaacd25e3a96b62b7d9703628038a2e0bee6ad5697fd6046a1c
MD5 d5d593c4cdd4bda8dc5aaea2140b9b61
BLAKE2b-256 e58cf50098b478f41aa70ffc6ff549e6d493f0df6d41ca8e9a3ff928e0c370fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 662a29b7dc90b2e5ab516ff4be662097b48587229857fa80479d7921cd99a205
MD5 46d68ddf5d914ec1cda55b98e68bc9e7
BLAKE2b-256 02e26904d1a1cf4ad49f35411b25f8fa531ef0693350070532436bdeaa4dbddb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e10d84e19b8497efd006450d383d3acb89bc348cc3b6a10a4f2d2f80ef184643
MD5 12942f0acac4bc9317f865cbc4857aba
BLAKE2b-256 bd5034dee65e1b9fe8789f4268c576630fea7938fdaac109f7623a0910d029d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44556df77c801cbe91b37b9711f4328e8cf8074f3129e5aa37d71cd80d64a5ac
MD5 163030670254360eced826e1ce0f4bad
BLAKE2b-256 26f6a6157cf71428a4aa0d4c43d41ed38011c3ebb4edfeb8b708e9c42807d88d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 89d920927c5bb3998440b55a461be5c0e5edf6c97431b6ed370ef87acfd91fa8
MD5 1f090800bca023057c130d9a220ed6df
BLAKE2b-256 a7112002dab324e827b3daf6a8ae3789eec4fb4e8cdd2fef1a6730fcabe821e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 889252c14c07a0dbef1dbc569835db96990a3a6fa7b114898992bc6cd44c142b
MD5 23bcafd4eee2b52144de14e14435671e
BLAKE2b-256 ee996318def32b9bb22cb44c94d079b1041b10c59a2d5a69f1e7afb3802e987f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eacf4044ee9343822c698f7905e37bcfec7dee3db97a52b30861606c40f77bd7
MD5 34c925c863106fd2ad52ef93b9e8edcf
BLAKE2b-256 b9ffe6122bd60446d321d0a6a8d20036aa2a28de1ce7c422264a801aa380a2de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d32002f5640ed0e198259b50789f417cb8fdaf0c37c3bdb5412808337996c76b
MD5 a733836431d22489764da1d72c9b7245
BLAKE2b-256 0c1464230c7adecd578f73a900f0b98732cba245d4c5c1a3cad4b599557fdd3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 91ee24d4449310ffd7d6bb43ad08dd54b738a0a2f60cece450283e3376764264
MD5 a7176087a853428cc08fdc782d0edb63
BLAKE2b-256 81c68c1b48248b04cc99ebf776a671a28d8c6552cd0aaedb10deaba629f497cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 17390d885fc9a55247ed356f05110d95b934b85d8a7e9dd8ef1b129939907e69
MD5 af9829501b0a3b0511ebf01e4d813f4d
BLAKE2b-256 d66d0c307cc83bfa3f0310ea0d23950563a8824483ea8b7474c9db4bda0d4a1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd1de95bcaa284afcfbf44bbe64f1dc9314d82a23669c92999aab10a85fa73d8
MD5 0a37c534926c1c37f850f981663b207b
BLAKE2b-256 41e4bf469990fa84f1eb9b684409f79d29d96432153ffab46c295050efb1973b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9f2ecb0b3cd1f437b0e4bc667fd41e7750bf51df44c6c9502b0ea5c68f0a7719
MD5 20884f6d3598d31475c4f0fe10c4485d
BLAKE2b-256 b0247e28efdef40dfdafa4c101e60d2429536d0ed6fc3a0571edc7457b145edf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 eee6b80feeaceea8573e1e558970af542e340f782a2e5725b20b8640db455107
MD5 4f1159b4032381f375e19dec16a90c7c
BLAKE2b-256 432e059b9fb93ec5c21f64b329b6f0fe931c2f5d4e7cf911bd12f7384420a55d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9109ab117a7589ce97219e08c69d0a9268c7315d2e5bd799cc6dc4a5fe378497
MD5 ec3185345c6e5e842b46b4eac336ad2d
BLAKE2b-256 df672f6b377fb6677a1c8f84cdf6aa975eb351aba07559097e1177968a64010a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c8d3f968ba5849a0d6dfdc16cf51e08fa1ae50b1f265298887388c110f0c6ea
MD5 17ebea61c10ec9a51cee4e6926a36522
BLAKE2b-256 3bfe258d086b3c5a20778b7c482b8d6cfe45e8692cf4a984d37dec68f37c269d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ea90f408882b0bd859c5e5bec427a4b8cd5454cbdf44ecd494b0f19417f69c6
MD5 e4031bfd06882fd4d8dd0893fed4f1d5
BLAKE2b-256 761e8d0323e524661e76488ee03302370f61cd108a694319327a6e811f330c04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8fe3144203a6ae3f82d0b6d9862e1240f7c8a4cb08b02586a0401a23ca2e4116
MD5 7cc2ab87a37a752ce607dc696240f019
BLAKE2b-256 81c50ed27136fa5b6ec639f6cb9300520ebdc2aec2e708d1d9087d677a40df02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5917536ba75d720d9c0f9baf2eedd5be88911bc4d51c74a22ece205d2b1b4900
MD5 e0dfcc1e5833f64182812ffe66401b33
BLAKE2b-256 0aa5be0151b447b839fe876910952e3cb4e604ef6b8b8517b630f57f343fb713

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ee63e88137dfa4197061271db6c6beefdaf94b6cae6e51d64aa8559f801c9bf
MD5 0fda33eb52038d2de476eda26460330c
BLAKE2b-256 a6539d5274aa4fa4ea8c0f1dfad2b2453e7dd5b37ed5d6d38f0f0011b036efc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c90fcb8b0ada28b6dbd1c3b46dcde054090a14869db824bd981f01924d347445
MD5 08a675ef113677cf24d6ddea1415fba9
BLAKE2b-256 a8531ec6f0e08237229a93cc05586aafc5180e6c92ee0a9cf7b105702e059994

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43a2e5ecf4031797735e545d09fb8b4d028c5d5a1f956bcf2ca2434e0d94aabe
MD5 a9d8ec456ee8006a7ca4fadf681f89f4
BLAKE2b-256 87bdf02bfd6f141fd693f1c8c020783e24cb6b00832f2deb4059eaa1a5892479

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fcaf5ca928015e40765c45612162aa5415cd416fbbf3734d416095e904a9c57d
MD5 26819ef324266207b2836cd2870351c8
BLAKE2b-256 1a5a3f89cf21b21e0d6d790afcd5be2c023f91e53f899b8dcea144ca46ba92dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 287926782e9a072c408af847ee9e997eefe04dc6f38023f7ad7908170e47f832
MD5 b56c5e5c7cb7a5c50d959376ada74194
BLAKE2b-256 18a0c6341167faebae6e23c0d125b6506c9656aa7d3d7a081f010a3b672b759a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee45899f1c48ffafb045c1415a8b081bb23b11c01299aa129b34f9ef6f091b84
MD5 178ee5afa42a0c4603079c64fc349b2b
BLAKE2b-256 444d3516aa6b818044c583a1fd9e8c3c17f90846f8c170055a76fbd01401c37b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3773488467f82eab608bc3e104dd1d90063e193a0aa301b480786f758748cac
MD5 6081c013dae0c4662b930106ddea491a
BLAKE2b-256 2aedf84b4bb8d2b660d4581eab030bf23a2dbf9b246f6981d6b8c5c8f3fafb96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 348e6c83ef2df7fe3716fa3c3e4c32c8ca2bf14b001487fcf0b836871ff85785
MD5 bc35c74bddfb493911ba08453db26f94
BLAKE2b-256 33064af4ec580520473ea1eef8b51c8c2cf3f271c81d2768b89a13cac305902e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 305ef2b18afeb2fa60062ada94082d910f3541265af257ef6e30243e707f98f9
MD5 438ac2da9c5a51638a9a61e23bb32120
BLAKE2b-256 3b4979fbc73e36578e7d0672c26f3512af36babc32540fa8694ad91edd6e34dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b429a06f8534adeeb987e008dbfbaff700536a4013ead0e4fa7ec62043a2a427
MD5 f70ddd338dd330160297a732fbabe06d
BLAKE2b-256 a749f3700fc99d6e815c03898f02ca9dfb3ee17a92df0be23eef38ff61973580

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed7a66eaa281f534ad1024642765daffcaad34427c2705b4efe9decfc8ba118d
MD5 01c5f79a945fdbde9307e1d3276b45af
BLAKE2b-256 60b4478acffa62e3a61dacaece5f0f1d8cecde742fbc0909a8bfffb08203acd7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9dbfd76c9a96bbca9eabf9d3cda9e7106a3df8221b5fff27d26a69997855ca4b
MD5 d8fce43b952b36849b1237e140f01dbb
BLAKE2b-256 5d9d60d01719f129eb5caac9e4d02e5d4be3e7116ae79b42982131df66786b15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d77c87fbccd812b96907346a47ce378a6b48933caf55bc273c5657e597864f7
MD5 a327645698e372f842c00562b09d6ffa
BLAKE2b-256 76c1fcd35c46ee4f8f0f98d20ebac402e11636633f63fe20e35242bca720892f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 151519cbde38b996ce561664072fee3dbda8f98a9823df2c7b46ae865a21bf8f
MD5 73a5cf933143e3cde4377db791e0ae0e
BLAKE2b-256 ec882189380d177952709c9ed98a31dd0fe0abf5809a0f6b93e36cb26e3afdfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2c5d3cb2d46946f362c838d9a8ba106e72576535ba1408b448271924cd48dae
MD5 512677a2230a76f627ee4f87ddbe1c02
BLAKE2b-256 63d95e22f24cf722ffa0294f59a3d1fa08c3dbf98ce79c73c4712eab793b2ae9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f0abd01d5cb5869d2511c9566b75439b5b59d853467c6a341b2cc4049304b44c
MD5 ccbe90ef98c9537aa6b64cd22283828a
BLAKE2b-256 4d61323658430ffe323b543cce779fa597bbb53a46153cce158c26e4a3fc646d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ef5a7cf21af66366ef86bf1ef6256e3ef1cdda1655faf3623d943c98d2dba1f
MD5 1048f3991d16103c6004fd7bf3085ce6
BLAKE2b-256 8bcd0b7a4a8a0477f32a8e7e0102a2a625511d95fa69aaa3c79760ee6d160175

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63741cbff9a0ba4d08458a584a68b9ff9e347a337f164ed1e0b400fcd5a67402
MD5 d68cf0589b6c1ee162e484b9d8dfd22e
BLAKE2b-256 43c6bbf7a39fdb0b41bd1a794176d093fbffa83f9a9fa239b331bd37c13a2f7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90d9217588c1d25c316e14b56732fff6436c88170ac97ddcabf2e0a4d6c98dbd
MD5 06017a3fd5ac4124a81b91e9972dc80e
BLAKE2b-256 6a006043c3bb2037bf168c7c44f9db8dcb6b6a2947deb81f86cc66484901993a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a06f89912a59712562d3bc785a0891745bef958969a314931ed5635152ba3304
MD5 545aac55bad64c4114c48a3a20661942
BLAKE2b-256 74ebf9b03f0d433f236ec14c043bf9485bbbef8c7f5d4f431b87acf81e781095

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-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.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a80bf6ee77cc31935a5981418ce026f7648202141404720a475a86c5e9c60f85
MD5 6e7457710098f8a84c87424c68327c2b
BLAKE2b-256 b260776ed93c1e0f2d06f4dc55afcc635ff362150a6c76deb05860eb8d716bcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 599e305c3c20153b50434ee6e0d87395b19853143f82e0ca332adbaa82bbeb7d
MD5 243a967d6c7541fd598ced0a652bd7de
BLAKE2b-256 62567ed84bac9064cfba605f67a3a59aaf06c97cad5d3fd1463b7929107c961e

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