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-asyncio
  • sqlx — Async SQL toolkit with compile-time checked queries
  • sea-query — Dynamic SQL query builder for multiple backends
  • MessagePack — Binary serialization (~2KB per query), 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.3.1.tar.gz (82.1 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.3.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (5.8 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

oxyde_core-0.3.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

oxyde_core-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

oxyde_core-0.3.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

oxyde_core-0.3.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (5.8 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

oxyde_core-0.3.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

oxyde_core-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

oxyde_core-0.3.1-cp314-cp314t-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.14tWindows x86-64

oxyde_core-0.3.1-cp314-cp314t-musllinux_1_1_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

oxyde_core-0.3.1-cp314-cp314t-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

oxyde_core-0.3.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

oxyde_core-0.3.1-cp314-cp314t-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

oxyde_core-0.3.1-cp314-cp314t-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

oxyde_core-0.3.1-cp314-cp314-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.14Windows x86-64

oxyde_core-0.3.1-cp314-cp314-musllinux_1_1_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

oxyde_core-0.3.1-cp314-cp314-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

oxyde_core-0.3.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

oxyde_core-0.3.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

oxyde_core-0.3.1-cp314-cp314-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

oxyde_core-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

oxyde_core-0.3.1-cp313-cp313t-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.13tWindows x86-64

oxyde_core-0.3.1-cp313-cp313t-musllinux_1_1_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

oxyde_core-0.3.1-cp313-cp313t-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

oxyde_core-0.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

oxyde_core-0.3.1-cp313-cp313t-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

oxyde_core-0.3.1-cp313-cp313t-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

oxyde_core-0.3.1-cp313-cp313-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.13Windows x86-64

oxyde_core-0.3.1-cp313-cp313-musllinux_1_1_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

oxyde_core-0.3.1-cp313-cp313-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

oxyde_core-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

oxyde_core-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

oxyde_core-0.3.1-cp313-cp313-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

oxyde_core-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

oxyde_core-0.3.1-cp312-cp312-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.12Windows x86-64

oxyde_core-0.3.1-cp312-cp312-musllinux_1_1_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

oxyde_core-0.3.1-cp312-cp312-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

oxyde_core-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

oxyde_core-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

oxyde_core-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

oxyde_core-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

oxyde_core-0.3.1-cp311-cp311-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.11Windows x86-64

oxyde_core-0.3.1-cp311-cp311-musllinux_1_1_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

oxyde_core-0.3.1-cp311-cp311-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

oxyde_core-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

oxyde_core-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

oxyde_core-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

oxyde_core-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

oxyde_core-0.3.1-cp310-cp310-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.10Windows x86-64

oxyde_core-0.3.1-cp310-cp310-musllinux_1_1_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

oxyde_core-0.3.1-cp310-cp310-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

oxyde_core-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

oxyde_core-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

oxyde_core-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

oxyde_core-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1.tar.gz
  • Upload date:
  • Size: 82.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1.tar.gz
Algorithm Hash digest
SHA256 38bb19ba3f1fb6587c3b36ac6e51647a9bdbd8491ed976974aa7513dd534f393
MD5 a91c97241c5335ad58322f34cfcef239
BLAKE2b-256 cc8c8468dee2228f01893630f058fc1cc3be0b4c277c6cd3c84d78fc07d119ab

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: PyPy, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 668e1dec6a60a5381c2f551e3da0e217b2f051cf18b4f07ae7f1f3fd90db390f
MD5 d2b24dfe227cc5f2ceed99242fdaead9
BLAKE2b-256 afd0a657228c7e28164463231741da615c65ab258ced1d69af3b72c1e06cf1e3

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: PyPy, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8885aa7739ce19f9c567590f6cafb0a9e644f56effd772d380d9eafcd5e385e2
MD5 9e77c33841276dbc70f8b3aa9de3672b
BLAKE2b-256 6ee85e2d6c929b02715c2b9afc7d1e2b52e8ccc193e1ff1b326b8e17297a7357

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9016bbc40ff531c5b8c200567c0b9606f7e0cc74240e4419fea8e720c9cccf88
MD5 b379dd746ed6e76d04825867fa2fd13d
BLAKE2b-256 24798cbab0b82a1278c27cbb6664ea70ccd0bf9b7fd5f3f1105cc7bb7ba7627e

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c0c64aff6e515e1cc7bc5911b26da454714f753b2d3e07ee2309d7f7cdf9643
MD5 56485c9c485ce48a55a1d4be64b171b4
BLAKE2b-256 a2284658e7ea2702de22f8a1d7c816c38af5f44bddcd06a4a9342eef59b7bf13

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: PyPy, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3e672216b68ba13a51f3bc92702af859a8d13a73af7f3b13a98621d4082ff1b5
MD5 ab6f31fafd4a14c8f9d0c0e0022b40b5
BLAKE2b-256 7155b8a0bb80f4d278c287a5fd63a7713d33b80d53058283cfeff08db62439ef

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: PyPy, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 90482e0dd5cfe8a4b344c3ad8228a7025eef0b06c1b3c9441a8a8ea16e1681f9
MD5 5ef098ee531b0aa1347105664ae59563
BLAKE2b-256 06ffaea31e9e0e107008e01ecdc076deda965cce52ed2038a4a9011b9974da99

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3288c559fbbe0b8b6a6f385ad312cad119e93398a298e4c9a58be5e5630cb781
MD5 8ef4d270425ff3048db429021661434a
BLAKE2b-256 b1bcd54fecbb3d85c4ae662146e757cba81634ad64875e1bd11dca67f566a4f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f3857d7fad36b107e9327dcc5f2de7958af2ebcdeac3914dee7f2a3935112634
MD5 17c7c9384f5b69464ce25efa7325f534
BLAKE2b-256 1e9359d22ba2720a942a94d47aad3cc144b71074e39fa3eaa0e86bf4c23cac40

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp314-cp314t-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp314-cp314t-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.14t, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5d999e79d033776d014e90b4cffa6ecbb01cbcc74a7656f3279553c67d0cf65d
MD5 24d1ff26a1aafdb218d8c184830712f9
BLAKE2b-256 03ee3ae16dd5667cd36d27f20f71a49987eb1a65ad60362e2abcd4f551f0a0e0

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp314-cp314t-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp314-cp314t-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.14t, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3362337f310d316cab64d2bad9867106e7df9f90550934121d19319a6eddb9c2
MD5 61eccea28413f8c53ba16c2c71d8fccb
BLAKE2b-256 9c67038c4d08198cd93a25c536513740f9c2c8690a03512d292f1fca0caff1cf

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a414c4314368ea592c25af2eeb77c563018ce83d4f8b544fdf67c032fddc7c26
MD5 1cd0393630484453822592891ccdda9e
BLAKE2b-256 88cdab03e9998a431c4d486f39037688849ca585cd36054d875e0c00cd0b35af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8723f1644bf7e9d26994b9e011f40c53d93525a676a215b2b5703c304c763cb1
MD5 fd43be61bb584fd18d2c85bc78bc9d31
BLAKE2b-256 c481f8c5ae2f939328bfd524bdcd47ad4718bc3eb6bfc6f98e0ea802ac7382a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 019d69da24800038dc3ff18c2810ed497f5938ad3be9e1971b69340ec37ee11b
MD5 87f854c15141bbd778ec8d32f324f3f0
BLAKE2b-256 fa69e186754a59c1c3272191aacadb34a21f9b628714bce0e2736106e202f789

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 67262729529b85384589763f8977c3451cc233850e3101ffe62025a0a74ba70d
MD5 322965aaba5b7c9b22fbdc5e2539d908
BLAKE2b-256 704f4e4492f4b1992259cea76d052fa72f91edba5de356407d1844513d3f4e95

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp314-cp314-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3e0056a9b01d0d36c3b168aaa433207bb50f25b20cac7ede9774a580cd75a018
MD5 b49c59cf8abb2f25839954184e413052
BLAKE2b-256 43dbda1ed3eaeeae3ce96daa922ccc5091b35890b0b596155e5934d98f53291e

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp314-cp314-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 270fe9b03c6a6e5edeae8601e36e1d6b04c30c1f09e0189d6dc3b3c41cd8cfcb
MD5 1093a5cc82459bc1f2af4bc0929bdbf0
BLAKE2b-256 d4186ed888b87b638ab3f8cc61b7b0feb9977913bf1b3106daf151499cc419ab

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e2989df358033714972a77bc0d9068d11d7787773101a96151424b757bb0986
MD5 4c43b4e2c02eb962c286cfcead6faeb5
BLAKE2b-256 95af9806133d312b0749452d09f0482bce8ad3a38c80282a0ac3713f48461bd1

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 628b45f89fff98a87b1b68b7dad0792d9de77240db2165510d5dd352bedb0f26
MD5 1db970d7f6683ff5089f0339fd681ce7
BLAKE2b-256 d59b53657e952abfff24ecf8b6c5f845decf53565f179b719a82b904f2ba0243

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e02ef64c43b47cb6cc0d400416f0f97b201bfb3f4b74c1c18189a1356a3cc5a9
MD5 43fe27735bdca277e58aa369e7d7f9c9
BLAKE2b-256 77a9720dcc24113fcfc05447487286a041a266eb63e273bae826760efb81896f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a52f130f84b8f59efabbd1bd2d3ad4f30d631cb37b02078a835ac2bcac27f22d
MD5 44a8a966b073e893a2a502025b7247f6
BLAKE2b-256 732437ef127909d56a6bf210dbac769fe86eec7f0aaa67e536becfca3428f9dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 21608918fdc504b8f39421b8d0a86f40139ebce5040d3c74c003736b226b1174
MD5 0b668e0f46582cd085cc29f0bcf1b522
BLAKE2b-256 c9ae0c150fad7da964c70c5536f3cee0b8635b48ca97e48041b863d2c8673ef8

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp313-cp313t-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp313-cp313t-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.13t, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 871b2ea41efe0c80d98def76b54aabcf8181f53de344b3528881dbf3fdf38700
MD5 ae5ef89a9b953bb004688247d9ec05c5
BLAKE2b-256 93891ccde24b73cf36a6eda150f60a68fccaf6cb0d7671f3e76572babae0d41f

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp313-cp313t-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp313-cp313t-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.13t, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6fca34669b39921b8563a38566779f6cfc5066a46e7093883af46c325ad4f9a3
MD5 255159c4379f3a67c75b26dfe4bb4901
BLAKE2b-256 fc7ccbd97d9b63df6b6583326a8e5a0481799a9c25ba93480e450ed667406122

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23cfcef0c424cc80ac02c266a5e8150930e89cb84058c5cfdeb19f4c4a238320
MD5 2a9c129c5ff989716ae425194db9a4fd
BLAKE2b-256 70a2531006787c13c1ccdd9b838b992c9721186b159fd7a4564c44fd360ee02a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp313-cp313t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.13t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bea2e4ac60583786aab2de0d04d4b0b6869e37df482bbcda5eacb2f208965e0
MD5 6267f10e4ac018334d55f32c3f3c23c2
BLAKE2b-256 55edfb89ba2a49c228ee28683a6873a7c9269083d3c303262b0c0b27c7ea919f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp313-cp313t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.13t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 016542d605b06454d2bf5b4d432a940b3875c842b54cb179c0044c02b9855194
MD5 f62ba2afd9c692e90143e94348f439bc
BLAKE2b-256 143eeb20c0c75005e7bd81d8436b1672c186e91f6f0346c112a56f4b051641ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d852cb11cc411b203b125d556a157b23e9578cc8c0011ce211521f192f7968b2
MD5 492e9a9848592d1cb0a4ac96291a00ed
BLAKE2b-256 fff64d02535c9bd812c665e39a62082c0d19cb01698a9c40f4d39e956ee42ef2

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp313-cp313-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0d2aaac40610662bbcc16d0dd4f62632f51ba4de12e6a661bcf9a3cd8e0644f8
MD5 a222a180aa02a864e2fa07f02473f8ab
BLAKE2b-256 53ff1a3368b6d70e037a58a7573b91fd8267767012cd2f95901e3c0f8d04887d

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp313-cp313-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fbee84936280e419ec05cf5b61186b9b7b60b5f7aa2f4f39dc72795dee45e462
MD5 a95ac9d7ca4ac90f4e396bd2d4b306f0
BLAKE2b-256 fe8ac3a863ecc17786a1a55d899de5a3db5b0150d3b2eb4788d34ef8faa8f74e

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8442834e2952888e4fb2d1ed5b744103c06881bb8afc6ee888d35c38fb83f9e0
MD5 1c9585657bf336567efb6841c8043995
BLAKE2b-256 f08802c64667f62bffbea66849afd76fbeb0db9c92b66e5c5efd2f3fb6b5150d

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77d6d3fbbf2944d4d50a1a5c6f9483630bcc44ac1f18b284afcccc82d854ef13
MD5 816856b13b701bc4ce2fbbde4133ef00
BLAKE2b-256 d105aaa9522b7cbfd9c0664652fa8f5a13115c68a100b41bfe9d03462ec1a6ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a66f9b2575925c90509e942ca8906ab21a26a8d86ef25a0a0b5fbe0f1a2af61b
MD5 22a53efe8ba3ca6aa0c23aac635fa80b
BLAKE2b-256 882200ad17f6afcd947eefc118d8c7686dbfef9ce9879c0276b4c13edf15f871

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5c593626ec810fff7c1ed10ec65ba9ca23e6d7751f665d8907a242fc74d04c6
MD5 ff85cb4b5063ea397cc9ee36e1627995
BLAKE2b-256 82863978c4790156026e40b50d36740628fb60a4d0faad321a0125624444d258

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4aaf9fe4a8a5110215cf99d69ad8c7bed9456f1e0da4eb4659f7f8648297cba4
MD5 41057cdabc953f050a68bed26cd14d77
BLAKE2b-256 b3b2ddd5b93f3b78cee8d6eef14131e11b78f41d9eaa691284df7643a444912e

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp312-cp312-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 83eac0b357d23895b1933d99ce4c5df5713580d6031be4b59ebf8183e76411c1
MD5 cab8acbe5de5c520b7f8f576cb195a13
BLAKE2b-256 b0e2bbea7365a77356fb30efed6a257140b7915cf48462ec0a16e4c180250b88

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp312-cp312-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8d2342ce3c44d94e8f2245b1a7403032537be3c0ae53117db282047f1ccc53c7
MD5 7aebb0ff109d3a62d94dcd87036e5c0a
BLAKE2b-256 8b8204c305a3a6c255a4d920462861d1c5b6b9919a6673532640ecd5c123590c

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c02ace0deb64219cfdcc63f683033b710aff7a753dd4dab7215ea4bb71d83011
MD5 19f6bffc4214982b8b7852bf95322d8b
BLAKE2b-256 4a4c007bc3deb67083eb773d0c08225116ea5711f23b6cd19b93c211d99cbeae

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f31d643fda2bb85d00721e6e6fc54297d34794bdfb8f8d0526b99bd34ccb02a
MD5 505b9821d472a629afefbb54b21d2833
BLAKE2b-256 c96dccd72731bbb68009523c74d6e117cfb8166555871bf99a57e447e130a3ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c066ecf17f48f7fde90fcb671d7eab214310792d93f03752d3e66dafe2386739
MD5 ca36d603fec1357cf9faa84c44ecfb70
BLAKE2b-256 f296696f78d7038b245f64d63510c222c5f184fa2a70c8d9acda2730f4c56163

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c373f71826697405f9597c97c21569ac0336733cd8c0a1cde824e88387a3ec7f
MD5 e3606b141d981b72054383f4a3c1acb7
BLAKE2b-256 abe4085f236e6624ed0c8b68734cff37233f7bd107dab56a6b807e76786795cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6396dce184144bf83821ee0a59f6667b3c87beb2a8d13bd8947576bd6335ff13
MD5 1cf19742281b911eb51ab808aad1d17c
BLAKE2b-256 741da8db5059a05731596099035f74afada768b8aceccf893ba8581ae76c63db

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 60fe5487178a7d667629f2bafcb9796f134b648fc5a5cbc17b53304c700cee0c
MD5 c17db3d975c3a0b9c755700cb0422c9f
BLAKE2b-256 3ea8872a7f2bdb707371913f60d22f066424614d4cb0bf1ebc9d5f12a0c7bed7

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp311-cp311-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4c22fea420df62e42640bc3b18a304f0f4e750f675d11d0dd7c51f34dc8f23ab
MD5 7892f0dfb082fcbf4da7f0e857082e92
BLAKE2b-256 aa179ebd13e846caabb7cd207fdac4dbbd182a70c848fd67ecf7c7ec20f18df1

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e232b68eefa8e4837fb5966603754c9802ea5677eb561c34014187360b79032b
MD5 90df520b8513a8449b093e2273e0d021
BLAKE2b-256 0316dd54a1acfef151993492085210da091f60940371e2cbfb6359192031b8c7

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 071d008d74c1c52360d8081ebe40a7cf74bc8bf915496e610ba34566946527eb
MD5 5befea392a30bcc62e7382a8bb652b09
BLAKE2b-256 099169e365c788ee08c9c05dad4005040c81ab7a9efa6c7a58e2121862ef020c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e7824eb0526ec2a4b1e5903a423008cf567e9a64d64fac1545a363130913c3f
MD5 3b3a01167aac18df49e2f34045b97316
BLAKE2b-256 b46bfd75460d7880268b0f81e7c739b4bc1595df346bac64270f4d2b0458fe5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0deb595d85ba3f6b867b8fc703c2810ea57a035fe7b0ed296c14774c1d3b88fa
MD5 efbc0c76fab9fa114b009d623e0ecdec
BLAKE2b-256 decbc7c432b5add9047b44ffb603d2adc6382768fcf6f0101fe8f63c08b7aec0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3a9d4cd18eeb94fb356338846599e7e6582204ee8ff2b597bceb9faf420f141d
MD5 a02e08c6f69c6d5be0ce49cd7fa06d9f
BLAKE2b-256 61cc3c52dc6efe04f82c8785550a4e940ff06181947319a90b44eb31cc07e03f

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 09cd9d4b28f02901dc190a52cbc8f2cb0c51058d5a8b36ee50eb6d1ae059d061
MD5 a376a9215f0c632b3131f8d4caa82ec8
BLAKE2b-256 a49c6eb1201d9b9a6f4f26128cea87575b77ab0ec73dcb56b8ae35110b75eae3

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 57ebde94623db915dbd367b85cd2d66f9d4422efdf0a87ccbe2ce1d8a5e3081d
MD5 32fb6609eec85a99c858abc66340281c
BLAKE2b-256 d67d2a155ad552ad810830fa2435c868a36bc6f8bdf5179f51614ad12b183afc

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba468cc39c8945fa8e43bb4d8118457af16b18d0b266fc788b4a515b624bcbe4
MD5 bdd1f78636eafd4c8c41d5ef0dab45da
BLAKE2b-256 9e89425cfbffed8d10d56f8aecd302e4679e491f670f2fa8291d8971f8e2fa96

See more details on using hashes here.

File details

Details for the file oxyde_core-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: oxyde_core-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06d198a1273ad0a051fe32bb387cc7a962684345addf6aedc6997f35fbe54388
MD5 3e227cac19c9220c550ccd745ebd0eb9
BLAKE2b-256 21119e9a82f5c8e08111d2ba7395f125a5825e524a03dc735bf4965f495514f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b642ace7cae8b7954af7614a31a81f307c12eef75f4a1e50abfc561d8c38733
MD5 5e0322851b8b4b27b177adf71eaf6d14
BLAKE2b-256 a3c2abb2d3085677b74d86e47b301dfd509b89e1d482daf8893989461c593475

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.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.3.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bf209ea104508a7042a0db5025fef4b608ed2dde1a09f776ab1d5e52d5ff7aaf
MD5 d8be10a8c7c711dfd1edb3df27a6d8bb
BLAKE2b-256 d254bee3d9a98c41f5ca4aad97b72a85b8b80bf1eb148e7f2d280130639effdd

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