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.5.0.tar.gz (86.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.5.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (5.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

oxyde_core-0.5.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

oxyde_core-0.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

oxyde_core-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

oxyde_core-0.5.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (5.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

oxyde_core-0.5.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

oxyde_core-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

oxyde_core-0.5.0-cp314-cp314t-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

oxyde_core-0.5.0-cp314-cp314t-musllinux_1_1_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

oxyde_core-0.5.0-cp314-cp314t-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

oxyde_core-0.5.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

oxyde_core-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

oxyde_core-0.5.0-cp314-cp314t-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

oxyde_core-0.5.0-cp314-cp314t-macosx_10_12_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

oxyde_core-0.5.0-cp314-cp314-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.14Windows x86-64

oxyde_core-0.5.0-cp314-cp314-musllinux_1_1_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

oxyde_core-0.5.0-cp314-cp314-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

oxyde_core-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

oxyde_core-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

oxyde_core-0.5.0-cp314-cp314-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

oxyde_core-0.5.0-cp314-cp314-macosx_10_12_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

oxyde_core-0.5.0-cp313-cp313t-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.13tWindows x86-64

oxyde_core-0.5.0-cp313-cp313t-musllinux_1_1_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

oxyde_core-0.5.0-cp313-cp313t-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

oxyde_core-0.5.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

oxyde_core-0.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

oxyde_core-0.5.0-cp313-cp313t-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

oxyde_core-0.5.0-cp313-cp313t-macosx_10_12_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

oxyde_core-0.5.0-cp313-cp313-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.13Windows x86-64

oxyde_core-0.5.0-cp313-cp313-musllinux_1_1_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

oxyde_core-0.5.0-cp313-cp313-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

oxyde_core-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

oxyde_core-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

oxyde_core-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

oxyde_core-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

oxyde_core-0.5.0-cp312-cp312-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.12Windows x86-64

oxyde_core-0.5.0-cp312-cp312-musllinux_1_1_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

oxyde_core-0.5.0-cp312-cp312-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

oxyde_core-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

oxyde_core-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

oxyde_core-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

oxyde_core-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

oxyde_core-0.5.0-cp311-cp311-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.11Windows x86-64

oxyde_core-0.5.0-cp311-cp311-musllinux_1_1_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

oxyde_core-0.5.0-cp311-cp311-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

oxyde_core-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

oxyde_core-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

oxyde_core-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

oxyde_core-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

oxyde_core-0.5.0-cp310-cp310-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.10Windows x86-64

oxyde_core-0.5.0-cp310-cp310-musllinux_1_1_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

oxyde_core-0.5.0-cp310-cp310-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

oxyde_core-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

oxyde_core-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

oxyde_core-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

oxyde_core-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0.tar.gz
  • Upload date:
  • Size: 86.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0.tar.gz
Algorithm Hash digest
SHA256 1ac7be9c8312931add19a5d9f12bad65c435bbc582b62718b231d94574a7eb42
MD5 0e0a563c11925013b48c8026d6bf1ba0
BLAKE2b-256 9fd4cb403be79e5b73980c0f82c16fe1844f89ae2ef52a7ae8e599c824423c05

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: PyPy, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9cf41bbee5d84c70a0254ac0313dc8fac0ad59971f95c2dcd3cb21344114809b
MD5 9086fb1b08b2b7a6131c508e589cf111
BLAKE2b-256 29b209e639c80ba9ec01318a6c5f818ce019f8b1c669eec36da0bf65c8f1bd03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: PyPy, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2497da57486949b928decce423e5a33c13c6fe14dbca00af4149c988613165f2
MD5 81387fa7dd55d366acdc149d6a6c1f04
BLAKE2b-256 c5ac0946e3970c71bd5dcfca3a5ad1216319d3b554b30e050b49548c5314668a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36a8d5acd6a7e9ae99d6e47b6f90b80ab7e97f5fe2307db4954eb2436b8b9e7d
MD5 7c5c57754e9b2dde8cde5e9ba9c11f04
BLAKE2b-256 559c7c1c25d910fb8fc2b59bbb615755b998d2d2242a2afc8d0c2ae81d59fa77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc8d04edc7119b751ac74d0fa5bf6349f5f5125461c57cefd69294a296ecc7ba
MD5 ffb5635e4aacee5fd8ea6b1519d8723e
BLAKE2b-256 79fc28b607822eab0167a80c649e69d0a10baa4a6d827a2e1b24557a0274ebee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: PyPy, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 33c02199bdbd3192ad7ebd9e088a8b1edb1aefccd0516ff34ba7cb62d2555bf3
MD5 aeb2c35bdf5e2c3f51fdc04888c315d7
BLAKE2b-256 5090c660c7f2da5aec874081fb7b6d9bccd809768408143fd70f3fa1c184ff43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: PyPy, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f63518f5b0628854ed3377404f400e13b2ca86e1c188daf70fbb9e72c4a53aaf
MD5 3781fb52267e33eb23cc0b5471b7d42b
BLAKE2b-256 cfddb262f9b31c81538f5eaf6a89ea6be2c4d76f0f9fad0e3c903768e38ccb25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e3a08e86a514eb01524d29a3d2c7af728933053d80a1266555dd22d0804ad9b
MD5 19bc1887a604618cad91008d01dc8ebe
BLAKE2b-256 41716ee27e09305164f2845de3fe451a0ce9a77edd16b7141e51fc0a21bd265c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 34199e4c3137ce558d7a552b5eea3a9b8fc8d4262c5bde4e9cde9185707c391d
MD5 7e8fb2824657c7a1d4b953e48540da4c
BLAKE2b-256 054d6a32189c0a5e672dc99b28f724e480802c195c6da4c31acf0cc320fa62e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp314-cp314t-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.14t, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 81eac6573b92cba12929e228f64ffd3d2285f972d6e55cff61fd8e96071c21eb
MD5 b566e744fde0678f9b2682f0eea96519
BLAKE2b-256 8b5707f100dd0f232a048bcc6ecb75c8ef42463dba42901be4fb3daffbbe232c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp314-cp314t-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.14t, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3e171f622b33aad373d2ca46fb976e7e730ac0600a04b971f7514db66af5cff2
MD5 b06f1dfeb5d8fc993a24ac36e70c2fd5
BLAKE2b-256 7feee1b9f94c836b21617d270c9292c42b4a185002b854f751fbb70c256738d4

See more details on using hashes here.

File details

Details for the file oxyde_core-0.5.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.5.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 578fbd562b8092c1fe16cbb9f3de2ae8345db1cedbb7c8a2ba5cf42fc79581e7
MD5 3045492301dadebda1718521b5ba4cee
BLAKE2b-256 eacb25c3c7cd29d9ab05ce8cd326ed36d5180591778abda770c8e2c6ec37c95e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee09203b19fe79c3daf883d15ce6b26b3fe409d03f9adea1cd2d49fdc2eecd03
MD5 50ea54e92eb81072c2ad3d8787d94dce
BLAKE2b-256 fb37c876684f11f344f0c78affd2e661c44560e68ae69b9ec242715213aa1291

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b052de1d1500bca5f5ac80e3f57c0bd134606bff011fcab7f2e4d664caf3597
MD5 25d960db3f0e4d6b8f1eb375b3622da8
BLAKE2b-256 391a8ca859655507743618d3fed495a3f2c3c407babcb079f5ee1257efa0a8a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce24a2991249e064034705e29fed351b2fecb0e5b085fc5e354ac182bb0611ba
MD5 a413d2d16294418407db90e560df02cc
BLAKE2b-256 8c1b991c9edbec098709aa61c207c43f44ced1952582f8e3f9277f2dd6e8eef2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4123baa12a82ff6d1257fb842dd9dae1e7a53136f2837a5d8a11089b96a3c17b
MD5 e13d34f8d34e47bc6bd5a843aa8f3d47
BLAKE2b-256 7954ecb63e1dff7aeaa02478b6c55c7205f156f1b049e68ab5ef8b60dc7221d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp314-cp314-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 98e1b76f72176ea2d77178f5f6a2b1b3852a9bf5f3905160b1e6a9a22b5bc406
MD5 f7ecbdebcbe1d46d06dbd637a3d08aca
BLAKE2b-256 e540b79ab292cdfec0bfa103e99fd1766cb7f8a4de1f5fc32c46ae95df7c4e93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp314-cp314-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 af13220cae8b08f0aae94bfcf8788147ccc6040ade95d2a3d7a460b433f8a753
MD5 d6b0465f9d49e45d0ce1828756972453
BLAKE2b-256 5829bd5b7f18d28752055ffbfc5250f22c2b89f096d6702d41edba4cdcabe939

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c426988c384a165f71d3976337282c8190f120fd8103dffd5bf658355c2815a
MD5 ef48d3f2135d999d609ce683cd286038
BLAKE2b-256 91668701e3da3c1a56e0770378bc32bc42f7ecdd93acd911b695313a048700c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff63a665afef1bac715c263db455bdfd76287c7c7983e12483e05f60c271f585
MD5 13b585bf3226dc4b493bbd3c53b870ff
BLAKE2b-256 7d840e0893891bd11e095470ff8a725dd84deeeee81efe1bf3014369da1ce3cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3f1b4f75b7f36250198a4c741ddfd054b88d7e4f64989ac69c82bfd7e1a6188
MD5 b9d738a94f9089c531d568e6dfbb21a1
BLAKE2b-256 d0965ab50b054c23c86ea09dd93465d9cadf2d7b289cf1be0c913a05eadf8eee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9f016eff957366685278456a404549d7ec94f44275d16a9dcdc12c6b6af7d3c
MD5 7f42862194f6ae0885cf99f782e6eb86
BLAKE2b-256 76429eea10a7636e9d6c0a74551298937c57a44d87f7384e19a7f8581fe1a22c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 ebadc6053e62155b965e16146885172dae3f527200f0fe4a9d6fd1fecce2aace
MD5 de5099f613b4c662f34d85e6bcf0035c
BLAKE2b-256 a0b91d62111fe4253e3de0b3403577bb62e0de98bd1b9d01f4b1792b663d3098

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp313-cp313t-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.13t, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c0e368a5d54d4de3a5dc306fa6e953bef2eceb65b6cc3a661fb16d87d8a96734
MD5 247e17ba2c87e8c1df9d6f3958e69def
BLAKE2b-256 01bc3a10c3a7b52e21413ac0fe2e4d757ced82dfd5f22e9af7150b545ee6373c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp313-cp313t-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.13t, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a80e63f9735af4621281381b832062ce28e94764b0236415002ba436af61c7e8
MD5 ee936ed49e752da8280bbce7d84d32e4
BLAKE2b-256 8f0ed62c24edd765cbc020756cddf36cc7cbe3084cfb3e5436b97e89141ccc06

See more details on using hashes here.

File details

Details for the file oxyde_core-0.5.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: oxyde_core-0.5.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 faf563471db0021206b149d46ee6baad7e9c90d2c29a2b5ecc731239d3ee30cc
MD5 ceb3de311bec912fc0fb44828f82f4f1
BLAKE2b-256 4574b3b4c61637fe1ec36d67a53127be5c51f320c669e8074ba6d80918ccde25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f07327555be01c82e34093e5e9797a9159bb24eb07851ed8080bd6d9828b915e
MD5 ca252d642ed1827b00fde630681eb448
BLAKE2b-256 8198479026a529d5b3e8b01012fe0855b999632a98eaee8124edcabb17cc6b3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp313-cp313t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.13t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65e5bfe748869b3ab77b27b40bad5cd77b85bce93263667602e818ebcb04262b
MD5 50f30a0662b4f03a45abf8e67149b210
BLAKE2b-256 e30598edd82a09e031b2e7788eff589c494c9300a8eb75faf771f179e0bbef8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp313-cp313t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.13t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 75d27304966a25438d207dc3f8b2c60a1aa34fff53add3248a47f386d51bf25d
MD5 88d70a10ce9d5dd2d0ac17991e6da755
BLAKE2b-256 9833b5395b9bcad5b74158cce47138db4a968b7b8a7194e60ece95b3d54b2ce2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e95ac84ed94ecc5f0dd600367e8f6857336a4ea06dead403b0a35d29ea2c8a1d
MD5 69a5df4774a96b9424dfbb8d00356ea9
BLAKE2b-256 ff40264080a399a24747df539bdebef75953fcc4983243fbd15331d50a3b83fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp313-cp313-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d07fea8d4b4878f9a8f28af2db87da899c722354ed039afbc4c6c18b7b6708d0
MD5 ecf696401d2ac01f297082411e96532f
BLAKE2b-256 71b93a2d00a1054e33cad926847444e27f754931b6b1e5b5bb62c339711d4871

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp313-cp313-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c0fb591a4bc37a7c07bd6955fedc5b0ca18084b606572bf2bfe3261a40277c41
MD5 f9a35cb3e0dde2575ad53a06eb38adda
BLAKE2b-256 dec9b9f04078b613b3432651e2c85fde07f5d44e8b912deb8cf6d9eb6c56dcd8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6cd5436cbbe88d3a31ae670000978fd0b6b749da4337f5a1c43a9758ff9906e
MD5 9d504978a739040d2279ec4bdfef9e80
BLAKE2b-256 6f9468cea49b90649a577d0a05446da33d10593cb341de85cd44a1ecb2c00bba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c6e6a2618dcfedc73251bafbef4c43ccfddaf09a0d061421914d2c133fb65e6
MD5 ef06011bea8ae584cca85fdafd7e7dd7
BLAKE2b-256 0001a2bc1c6c98ae64a225db2706148787a048b774d6d2ad66c67affacf012ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e07f9c1775723d3a6d0aea41da82da769a1a06b2f4afa8738e8132e6b7004e97
MD5 f33fcbdb994879fa67b89d405dbf781c
BLAKE2b-256 3500b6a1283bce741d4ee0fde134cf65aaf4f9e5ffdbc182ee2d4ce9e8e2127d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 818334dc1dff3db9e41b41fa039a1c32eecd15007a1924b1260fcc9ad1e6c452
MD5 255bf4b828fb969a2e9d50d62eea7422
BLAKE2b-256 77c4c4b49b359a3707ad23558e8b9034115f51bd93558ba5e149841d6a96cdd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bba030049099aa961658abf7765c83254779c14ce6c6db02351bbacfebb4c570
MD5 af44cabccb6475fac3c97bb01c1ba230
BLAKE2b-256 7d386abb177550b200f18ea9f55a6afe52c222f0f37f0ba48d056d8af9051797

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp312-cp312-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2ad14a36b06d365cf9cf9220fb9125fcf731047f914bf36fced31f5f1461bfb3
MD5 42063be73242a16fbb1088928672e2b4
BLAKE2b-256 484e631c4e39c2c884f93f4ebf4d99149cc67882e62dee35fcc85dad5865ad58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp312-cp312-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d7c3e13eba4638c78cce36a321ca528ed48d42e4e4275c0336b6499a79973752
MD5 1d4182b62487a9315e23c96ea8f24cc7
BLAKE2b-256 b71a7afd53524d1f3d4f6764217c6f177be0177c0d6f241a5e9bbe0ffb2e5de6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67e08fc9c7c9cec36589589e076e2916a15fea0bd09a1fb70a36390778e19192
MD5 725089729e85349e455bd8b30dd2e618
BLAKE2b-256 fc5dfab5bf013a78f10cf996317ba3a7e7ee2192ba1ec820f72f6c82bbbfbe30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e327ba3b61461abe2e5a631095217bc82a367a88f0a8b59fd6f0a521c7ae11fb
MD5 59a6d8a9e6e723f00ecf17c836e799af
BLAKE2b-256 678a431bb57a3db4155e4f82da7abc7654077f87e9a1029aa75295a6b2b7de76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f619d3dffb8ec505acd43bad1dce9cd3b5f7ce9dbfe27c8b72b3cb04ca5c694d
MD5 d8395662a594db3d49df7894756e04a4
BLAKE2b-256 b709b6327c6d112cef98778a4f07071b05975f11ed61f5e63dee6c71a3e44e54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3c15c2e8b4bfe5795cf95d90b7f7c9849066f95b868874ebbe48dc96ae790c7d
MD5 e51a7bf162d3d2c848e27a47967011af
BLAKE2b-256 253fa0da663cfbfa39582803a8ff0134be16189cf7def607ba846f76a88010cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8e943babd03ba4fd95bb4b7f93924ca8949c91420fe229de0a85fbe4e25b25bd
MD5 0f4a5e7dbd40dee5865d9f54e2cc1bb8
BLAKE2b-256 96ac024168c5a7cf0479612c3ef35b1fb2d4a0867a6c8358748dc2712597fec3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1df4b87e943491c86f3e6d8099adb1d14e352063b66216c2c7058aa9f20102a5
MD5 a36c82c0da2a9322416478dddbd2ebb8
BLAKE2b-256 725ea68047a4af8e18c731c6c6cd85f4511e3692e5312c78c89c951f03dffefc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp311-cp311-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6182d22ef7ff4c5a608e2a25b7e73600f0ca664bb6c942a861762a24c91aefbf
MD5 257ea4f737a7666bc389a028449fb68d
BLAKE2b-256 293941ba4651047bbd6576c706c4b6733924ebafd0230906cf96dcba35caafd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d53faa4013e8a18caf4a2ec193a5f1008982c510e0f433679b47dc4a8e85d20
MD5 51b252b3664e6937db22cbb27ecdcfd2
BLAKE2b-256 215ea627aafb9cf4a0cd05ec1098ac0dc7fde8851ac6a456d29fae568880036f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1937919c29370566fa1b5e06f91c5350a333187de72694a92d73add8ef9f6ed8
MD5 e65c78d75e4065f7764b77d31751eae0
BLAKE2b-256 57fb52fab73a9fe5805b59f5b01f973561869a5d3103693206b9722f7c042b51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f07269a688c3cb1d019a26d9a5c5716af1b717815eb80722e71f5f93c8e0130d
MD5 6df0eecebd85c3dfbdee3eb1c89682bd
BLAKE2b-256 443b66ac1545db395ef815d9effea0a73a88ac4bb301f5db88fde4f4bf830910

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d36ab715cc5a183c6adfa26d97c6a8a574028b270c13afcfb02262c3b22d3b7
MD5 ff7a7bb9fd49ec8e7162b0481a2c187f
BLAKE2b-256 14b25f516156e757daac1d9e7b4d42357267f06be110a4615ff894b020e24f93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 87ce01f733bdbe2d1f32a1e77f38c55c3886ef27412b04dc8f8b25ff5e2d9b5f
MD5 95f737d2a94de36a456681869768017a
BLAKE2b-256 01e9ce7e5069197d2123bdfe5dce27523392a677393fc3971323eca8af055713

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c3a0dcce1f24d92f0d63ec9cd41f54232df37b3f30e6f4eb837c6545932a3550
MD5 d4e23ed7570dfe32e256d4ae01687236
BLAKE2b-256 d8dfc1c1612bd15f88773efe2524ff1b2313430584ef4d7093ba48e8ba6b40f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dcfdff9f30f143363962f2dfd59d69daef5498c6a2996a604117dd888607e390
MD5 cd2f01282c7d24544615b57a2c4203f5
BLAKE2b-256 cf2af5d9e40134893def038992a01f816c8bdf0788866d7d201fd6ab8d8229c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a15b4df92b43c87e043fc5e170f2a5279267e9ff4c5509568a9d399bda504fb3
MD5 cb7acc44edea559b282befb9365b36fe
BLAKE2b-256 7775d520a5d756d833c084b035aa387628082827a4cefb09a429b0119f14700b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e19b89e84942d0b427625357f40e9511b072c87b28e1aa9e7d51d0e9699e39e
MD5 eacf49dfa1cc6b09914e358471f8a9b0
BLAKE2b-256 46bd96cbde487c9dde2ffce91e78a3c5705f9c5bcd2634f6dd9c94359e1b6c64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 844d881196f03ca3ca5437d26e1d8ca061544e4c57cfcf5ae9aec71183568fab
MD5 f77a77ea139b62b8d28a6db7e75a3513
BLAKE2b-256 a8384a60ea2d2f53c6730c59ad8a4134d0444ee14b40ab22778b37d6a368eba9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","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.5.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cc65adf06636d412bc7697b505839e51a27d52a0b9ad3f84f2ec562ca8f8db56
MD5 8414b78970b584c7dacb17b64000dd15
BLAKE2b-256 781115fd0dbf314ba1c5fb65ec4d814ff480daac788367e5f7760b80e18345ea

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