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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

oxyde_core-0.6.2-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.2-cp313-cp313t-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

oxyde_core-0.6.2-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.2-cp312-cp312-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

oxyde_core-0.6.2-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.2-cp311-cp311-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

oxyde_core-0.6.2-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.2-cp310-cp310-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

oxyde_core-0.6.2-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.2.tar.gz.

File metadata

  • Download URL: oxyde_core-0.6.2.tar.gz
  • Upload date:
  • Size: 96.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.2.tar.gz
Algorithm Hash digest
SHA256 afd5b36541c2e54de5fa23d12a9b004fc476cdd7c1ea8aa3d6784b03ee3fee20
MD5 7cd35898de503d7b42b27886dfcc688f
BLAKE2b-256 82a3dc084242c11b0983d5ef831f9532976bd03fe4d4d162316ce4b876a0904b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28b37a5b9e4959c5c36b1e4033e222767194530e9bbc36a320cba56994a01f95
MD5 a679c5d4ed8af03a3978db1ef12cf62d
BLAKE2b-256 81bcb4a7df06ffe8fe1e25a94219416322127bbc54846fa383aac00d6d6abf2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 457dadd1a152edf5f1c11493363727e42bc6c9623f9f5c3ec2864b718dcbf61c
MD5 1efdcdbee61c9e73a68a60816109f218
BLAKE2b-256 e1be48ed790d30182142379e21dd8a6e45400efa8c040136f2e498ad9e8c56c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4136cd085e5a36a85f5c43aa6152da447a8102981831bfaac22d869c35ccff4a
MD5 8bde25da0aef7b6a3e53ee37e5385006
BLAKE2b-256 8c3e9e83c87ba6bb8c4a560f199790e15a7710979f717d480f9a6ffe20a25ccc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ffe956ee363a491c6b805356132fd6a297be267488b73ee643cc3a7abeee9a48
MD5 a3d2ed7522dc30e36cca31037217993f
BLAKE2b-256 2e503d3710f4b2ec6289107f80f8c0e00104c7c1f20f20c507a46785550be48f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee17fb151c32fcc1f01f88b4df969ab16ff19b24c324c2a21406d1726888bffe
MD5 38d31fe7196fe27f36eb57652b355844
BLAKE2b-256 e62c5bdd70186b2af6de9282c5ee817abed142064d46c00eacda4504a58656e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71d7f608f1ea878de353c4cedc69a06dbfff7fb9160fdc002a2dfc04acfdcb9a
MD5 ba3ba4c795105d5fed5b878472c394ca
BLAKE2b-256 33b47d76e7b1703b8803053be92849cd97cdbf722daaa0acc14f20150ae1176b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b4d266d5019c953e8c52b04e7e63932562529b6ffde7f52f6cf24d3a366b950
MD5 dcc9ff63ee544af18add2c93555be2f0
BLAKE2b-256 6f8b06ec0742df1c74b2741ffa01fe76ed6b45e8346d04d16606f77255798557

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 56ef10183f26b3107803cb0e50e6d2cf9d39b3c68cc91d54c393c7badc5290ba
MD5 2a947efd04dc63c7ee0d497366a559a7
BLAKE2b-256 8264f1165dc6c0d41c45ccf38ed3c8c2a070942223eb0827133e82a2fc03e92b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8db2bb0b93f18c7ec74b1fe28fc9a47c774b9080b6e47757ad1d87d5b04d9b08
MD5 02d7a5e2cb8960ebe09044e97b9d7dcd
BLAKE2b-256 737341b948a6cf7ff2bda82341ef89ac42f31f6e80a13bdaf0f21f43cc79dfb1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 81d3c153ad3d2b496c18603ad8577431d5a79853589dcda3b0a15fe9e7627041
MD5 0fc1e38d9415bdb61dd083e9a3280182
BLAKE2b-256 2e175586fa815155d8620b87184b3ba5eb97163da34bae4e112d9697f214eb43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 30fb6ac567649287857807f785849996f4e9456adeb8564cad48f117d4a7c640
MD5 8259fe6c66b5702af90d1e87683cef26
BLAKE2b-256 2d714630742c7f2539a04cb3d24897e19c5b13c9be79cc26bb28d0f90be16aa6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e5c68ee8d8bf6b1327e0cc8899be4d7009e290e3f78e21754239271bca71b7ef
MD5 7690296418acc52bea75c5279fafc524
BLAKE2b-256 c2aa6dcabad16724f00a38997bb05b44ce7bfb413f746c0d0ec2a313cba01006

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b5503d1af728de48996a4a56cde012070a7e7fa1870ed4ae4a94c6100f5bb53
MD5 1860e6982ca47d5f55a656c6c3b24cdc
BLAKE2b-256 881265f07f0165e3da0f6755b895e4ef2012c1854600c589b2be059e4cd576ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 97841bf0eb87563d9b00f5cacb0be0f0e3f02310a1186b22ce4b9c6a774cf9e8
MD5 aa3518866b18d60a65b2351d49becb45
BLAKE2b-256 63526b8f46f8414be012decd035ac58bff6e632df25e0355a38018d287b80999

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6237bce21b8faa2d980c9f9a1b9254a265ec211b96b5c678dd30ce3c80c48118
MD5 9fb8fd1079662da1aefddba3ff9f1a1a
BLAKE2b-256 01b41ef250a252d9c313112598e75737eacd35e2a20ad260a1afa13493c7c9ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2187ca0d7e640ba5f5ffbc4ccca6d7b02f2eea910d35a40f43fa5585fed5783a
MD5 db4ca5d547f2827952b2d5973fc53ad2
BLAKE2b-256 8b564e78cf877874e4498238dd00be8df3390aea98a7afdfef3d7c50349dff34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7772c8ed27610a73621b7f6b88fb8db2df240fd31327386aab30e2ed466652b3
MD5 cf3222864ff2d995ff8c20ff55d81685
BLAKE2b-256 252c8154839bb030c47d6b9c1a2c52d59d49ee56400a33c4bef4f143c6f5f793

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ab40b1955d69913252912bd5dc9820848da3b1da3d8a2bdc94df68d54125f74a
MD5 05647c6150078cba621ba78b53dedbbd
BLAKE2b-256 7e8b60faad654ac11a4996569347078404172a30ebba6856d46d0dac7ecfcc7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 068888e52d8111bc46f79e5d564a90b3f5b6ad49cfa7a6441633ac7967737639
MD5 9eb4be80b2cdbf44bc44f38ba835e04d
BLAKE2b-256 ace0472a73bc84f4722346c7bf32cedbb4e427a7fde4d375b9124b2c4f8e9909

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29ede146592e248c166349c2f23636740fc21644f3377bdff61d106a221e04d1
MD5 1c8a55c4278570e4a623f7ba2422e73b
BLAKE2b-256 f40b755ba1e2f7f189ac282cb0ebbd6ab4063571302a30c23496d630370fcd91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3929914f75a2960cd1aebda937ad6b67e5d56802b789a2cc4952f9b17ec3de6f
MD5 67aea716f060d5efb338b845eaab849d
BLAKE2b-256 6a04684af679b21201557654a5324951e1d51c2721fe059e933f956ef678060a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 25bc3cb904aeb4b43636c0f85ea4b81a6859123dadc562fc3d7b103576157232
MD5 bea1db960791a392de7987a897cb9d4c
BLAKE2b-256 c780eb2923fc0ff50b4b91981e9dddb1066451143c975ef71deebf2465ea5312

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7479d825dfac8bd090cf5aa897f7a81aadf034499e1858d7ba9de918c9eea6be
MD5 62d3e5c2fbfc1acaf95894548f93cead
BLAKE2b-256 8626f663eb85693d07c3f56e45b7b4eec6f2722722348d338ff6027d7820dd46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8002075d763666bea513a7e2163612941f358956c41614d408fe3188178a650
MD5 afc89aa1c6e7f4f09ff4b87ac41e38bb
BLAKE2b-256 69e75842006593159a5543f36f88350a546b4fd16304ebb6d174529472395dff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e23654ec16a724195422a30ce53f474fbf8bfe56d7d87a187c6c7ddbd3d4e43
MD5 fee830d578d1a9fc5967f4f96cc4e03e
BLAKE2b-256 1e9b53c0cc155a8bb9093c3c5f593b22829b2e271c236c0955c3d61d8a203562

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6effa81e3c6fcac44f9f3fdfcce69aabbd14c05fc3f9415661d6bc4e9aa6dc33
MD5 aa254fe2ade8bb1a9763bf708607f082
BLAKE2b-256 2373d87e3cbdbfb729f7111ce10f57207b7a7472d28d0e02f49387013c09916b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b357ba8c1904f7c2cce3616b3dbe71c31185f30bc9bc1413783ca7917bb13892
MD5 457d31242836b268fa8f12a6caf657a7
BLAKE2b-256 95d4c68c3c1470e591d4b13c40b3e26041cbe9ec7b0205afa9afc8fcb9c0e9e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ca8687451ca9a66bcfc2c228008ce99b831305c265d84c1d73621f250942ecc
MD5 5ea2c4deb038ee904819e219acc72378
BLAKE2b-256 0b92e101efd86bc5c83a881a39ae07c4cc30b366d5d1dd6add8c152febbdbbaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2faf35c65763c1f39ff6ecd6a18be7f115c71c73a512765bca2318709ca8b793
MD5 fe84fb9cdcc4fef067762cba38f88c4a
BLAKE2b-256 57d22d15fce904d90cfa45e367a1eb80a7ad481cb8533d3742ff43900b50aab3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4fdc1084debd5b4d3e706c51c3bcb3905a83f6e5e7f1d852d9d7c13ca0fb621
MD5 e55d85b8685d3d6dcc1382d76b5dde80
BLAKE2b-256 d6ad94ba8f1b6ed73a773fe16d0528499ac98cfb9f03a4df602c1712bcd60cc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 530513858239cdb7cdfa92d9fc18c8c3c0dd1d24ff30f240c031829ce0d66b8b
MD5 2bbcabe17b1854717075bd5371c152fe
BLAKE2b-256 712c6a6fd0ced422b6712a00c33ef04ffe72a197635ef892277a5cc96a26a0d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 813a8f9e95fef003f15f357f4f3cc88f89851b5eea460ff60c1b6f5f55f30dbf
MD5 46b9c6c079e8abd2fdc605a50bcdf671
BLAKE2b-256 61b3783b3a4550afebb2f853b9b948b697b9a4f9d34fc9a41b5a310488cf26fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40a249580c6f1a9baa1f7e629a230c4cf2015e4e6d33aa2917e9717cdec2f89a
MD5 c9a906ebdfd283acdbae2dbbed9fc0da
BLAKE2b-256 babbf52df32bb47da866aaac54c366afb7c24d07792d2d137fa3c5e3fcd26b6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b1a4422d189ee62d89fce5a71f8d9880b940037c78ef99b853715f932bf4e82
MD5 b3c664b7f3b6fa2bb8f36d1ed4fe57fe
BLAKE2b-256 cf9a7cbf145cb8d5b66c9cb3569499455641b270eeafa03f77b6526a23d38445

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b0f734f1110de443a3a07fe70f952db25b694f3c1fc8f63e18d4c5eeeec4f9ce
MD5 f068c65139fcc9779390485a2f9e79a6
BLAKE2b-256 71e340cd4887be6375a0a085dc2b83659440c533f7e3817e138395a76cc97e6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 96e7a79ecbd7969fa1bd9967c4fe8378878df53af491521cd7d243d9fa18f212
MD5 11d6fca965cb13920eef355d749fdf79
BLAKE2b-256 d75042f9c8a61f0b5699fdfeddc4ee44f1155a344e827406efbdb92bedec318e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5712ac9d8fea230e9f7a706db7bebb88fde792cde84e846e4a0642a5d56ebc2c
MD5 558b2e9f21b13e7416137fea39249ac1
BLAKE2b-256 f059dfdc55839b31ff7c83e859996915b72b19cbd41c192db0d8450f2e4d798f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae1b050fc3a37d03bb538a10cb934c12f77cb2995c0c365d1dee7fbede40013a
MD5 fca351d0b62a996ad518576430953686
BLAKE2b-256 c52e721dbbe6016ca90a21f14bd906c89faf50d8e723a996e92bcafb94844554

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b13e404dfe7e986bf98be9301c45b7795266938ce45a8c233597b0cb71e5f2f
MD5 42daca909e5407c40192fa9f5fb6c672
BLAKE2b-256 b87e65a0043a220d549c7c1856180ad42eb214c8b7d4464004d0c543620181c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa8567cdf6f1d1a2723c005fa564d63ced6252c5d36f83114559a122480365c2
MD5 f7c102a418d91c1d14baf8b9692b5976
BLAKE2b-256 dac33c00d3570447967876b0ff6fb45579e2362c141193d172ef56118378185e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e2625a27bc47b0c2b833a57a429d73cafeea4df76d3f525d390d70db9209963
MD5 db163e53acf3637591c903333217fb03
BLAKE2b-256 530f72191604ddd7788b71b39f3ebf733a0e0253560272f83dc47c283c1f0527

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7997cfb66274aa44307fba0498b37a68a7eaa02794148b19f8d31daadaecb003
MD5 83caa52766129039bf824ec88bc65b2a
BLAKE2b-256 e6f9bbf41124df9679347b8b915e1606fa085670fabc967a7eff9571ffa0cd92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b9e8ebdbcdfc610a3969b032d160cc705584caa48cff6709c9f1569c7050e356
MD5 9fca4654355d42ef60c5ee25f0dbb5e0
BLAKE2b-256 3ee47cc632a4eed3c3a46ff53db99606dc59f096c9cfd991db31e2366eafa971

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 839ed84c05d1ca4c6fa5ce1cc2656feb635e5a3cef352676ef22205da4337df8
MD5 505a515ff2bfebe9ef5d4f6f0bb0a988
BLAKE2b-256 13ac1f0040529f67f1e688a50bcab2f670227d3e7f3c89c03aebb02c1bee0ad5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23f7913dcf008e716d0a0ad588eb9b687d559d159c089b781725d6c837e93ede
MD5 6c0edc74ae820ae879c6556186784e44
BLAKE2b-256 387f4c5bae4f0777c39039fabdce8781e42ef136647ed07c7770dbcf00f50535

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f66dc80eb659806bc4411030dbb9056fd3e732e060c8f72bbf36e5f480fb250d
MD5 1ed3f57c1503f1a0ea4ee715a8ca0ab1
BLAKE2b-256 d1f1874d633c34b8c39d99612ddf989c783752819ca2810b8742fc9a6991eb74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0f787acd8717e962bbd24ef1b1e59042b431e5f8302a45f76e4a7e06429e159
MD5 af9f4c4c98f03a9abb5cf485e9ed4817
BLAKE2b-256 b9f23899ebea381f9925a336cb7028e88154f5e37e748ad1c6e4a6a7471d9dfc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36388b2f138a6fbc41c8815145ad1a37dc93f48c6943f0e61350a2ec4a43b79d
MD5 2e363e5d930b0f4852090c349d6310e3
BLAKE2b-256 e3d7e16fbd69f536e6f63383ecfe9540fcfbe8f8d9276d2dadb23924a07fc253

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5d9a559d3aa1a6be2cbc342859daed0bd9139960d80f05cfe23aafb6aacef7bd
MD5 8243ba5ed1ac26157a7d98dc3f87dddf
BLAKE2b-256 be923e1b5c7403690875e646d31971788139c972609c5ea748cbdd5a4ff1d326

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fcf8e4c9e7f145161f4f47a855b81a956e7d40e52e9aa67fe956691b46df1e8a
MD5 f816461b9b3021111072e712a6590060
BLAKE2b-256 d8c3bdf9379cc988c8c6bc26ffb9e00c800146c6fd82e6ac760911c67eeae367

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ff19cc69c8600a73843b341b81825e6e4210392d3123406624a15ffc332ac38
MD5 b919546870a2f8be5d15427bfb85e45b
BLAKE2b-256 d784287cfe813e40670f869c20baa39b60ef5b3c6029b10e8fbbc0aa9547584a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1abec4ccff03a55977871d358e1f83f66b152229be14272d06731ef4057bbb62
MD5 862fb20df8047c0a0e36ccbdaa0cfde3
BLAKE2b-256 75a2d86006e72a6999fd0c0b70c12f5624553f447a500e0ab78b21d7f774c138

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26866cd9f848e82a9fa8905ebd93ef84abdb0d72831d167dd0f36d8091c4ca89
MD5 1667c2ee7c4a2c4f9944abab008c6bde
BLAKE2b-256 5897ed7b43e0698faa28fcc7ef2b06a63732822cbcbea717c2b3bb8a717ac78a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 68b9ec190d1d8217000abdf013a8a3136de500b678919f017a2e92fc99841f6c
MD5 eec5458066d064bb272ca5277f3cee6b
BLAKE2b-256 8f45164b914f8079559deca4e795a346cd8ceddeafdff36c34a848dabe543c46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3598d1c94e943d233ac236d9e90dfec31d4b9ba914ef2d831aef062e7df3f0f5
MD5 1445cc2d045c7b9a2d88cd394a7e21be
BLAKE2b-256 50b6bff5dad023b4fc0d4a7e7f8e06be04febedce4f8b47239ae64824db2ca53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.6.2-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.14 {"installer":{"name":"uv","version":"0.11.14","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.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a90d06945fdbf92dd2cecd4fecc64853f67227b31d377ea8187f43d19635a52
MD5 f073d785147351660c6044459a77503c
BLAKE2b-256 aefcc5e0586a4147bfb2af9919f0bc69626e715f53dcbd3482b2f3876931e186

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