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.4.0.tar.gz (80.3 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.4.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (5.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

oxyde_core-0.4.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (5.0 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

oxyde_core-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

oxyde_core-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

oxyde_core-0.4.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (5.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

oxyde_core-0.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (5.0 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

oxyde_core-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

oxyde_core-0.4.0-cp314-cp314t-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.14tWindows x86-64

oxyde_core-0.4.0-cp314-cp314t-musllinux_1_1_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

oxyde_core-0.4.0-cp314-cp314t-musllinux_1_1_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

oxyde_core-0.4.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

oxyde_core-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

oxyde_core-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

oxyde_core-0.4.0-cp314-cp314t-macosx_10_12_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

oxyde_core-0.4.0-cp314-cp314-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.14Windows x86-64

oxyde_core-0.4.0-cp314-cp314-musllinux_1_1_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

oxyde_core-0.4.0-cp314-cp314-musllinux_1_1_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

oxyde_core-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

oxyde_core-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

oxyde_core-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

oxyde_core-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

oxyde_core-0.4.0-cp313-cp313t-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.13tWindows x86-64

oxyde_core-0.4.0-cp313-cp313t-musllinux_1_1_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

oxyde_core-0.4.0-cp313-cp313t-musllinux_1_1_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

oxyde_core-0.4.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

oxyde_core-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

oxyde_core-0.4.0-cp313-cp313t-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

oxyde_core-0.4.0-cp313-cp313t-macosx_10_12_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

oxyde_core-0.4.0-cp313-cp313-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.13Windows x86-64

oxyde_core-0.4.0-cp313-cp313-musllinux_1_1_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

oxyde_core-0.4.0-cp313-cp313-musllinux_1_1_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

oxyde_core-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

oxyde_core-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

oxyde_core-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

oxyde_core-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

oxyde_core-0.4.0-cp312-cp312-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.12Windows x86-64

oxyde_core-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

oxyde_core-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

oxyde_core-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

oxyde_core-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

oxyde_core-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

oxyde_core-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

oxyde_core-0.4.0-cp311-cp311-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.11Windows x86-64

oxyde_core-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

oxyde_core-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

oxyde_core-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

oxyde_core-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

oxyde_core-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

oxyde_core-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

oxyde_core-0.4.0-cp310-cp310-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.10Windows x86-64

oxyde_core-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

oxyde_core-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

oxyde_core-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

oxyde_core-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

oxyde_core-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

oxyde_core-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0.tar.gz
Algorithm Hash digest
SHA256 cc5ad766755102823f181f3fdcff0a4cf2c695565002ee71a6a73b8de3147278
MD5 6492c7525e0c1dd7c3a82b09d218d1b8
BLAKE2b-256 3c096fca61e63e36b6651ad0df14d0f1a6be4b43094e58b2dfcf8496401a96c0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7c9bc38defbe6c1c7e99d63a92f84baa70d884056eba41e59a89edf9594d0fa8
MD5 a645790d65fafbdaf691f16de6f981b2
BLAKE2b-256 8b48b95c11c4db268873a927ce362ced5986bf5fdb4bfcce5d685abb32506297

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4546a515f17b69eb927309152a9f4fcf45370b779e43ee0197f206c06e356390
MD5 2d3ca2b73cc56770cfc82adbd2f7b587
BLAKE2b-256 24d3487e69bf8e38884df6e026d4c29f1e6141def3ae9959d4aec0884379f7cc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ec29923ec1f1c046c7668e75910e01c95fc8c933fe8aa396f7c310e56a70398
MD5 4941dfb97e555a51f5c73fb6a4814c78
BLAKE2b-256 d16d617fea851b4b779398aa818ba11881a005625c1b2540cc20781f8e45060c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6850d6b522bcf678b31c589fafa2d3e121c7757482e79cfd783c24393f05193
MD5 3226b96aee36f195a632f459613c5e00
BLAKE2b-256 3959fb23094384eeaf753eae96380b8b319626033c5e59777ae2c516eaf6958c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c46dda9db106a7e8caf2a1ff11162f1978771e8ed4ceccbfd52e334a345ac81e
MD5 2764af87b31f22e18fc90e1466a61926
BLAKE2b-256 c5c784d8f616282a4b3ad9fec82d48986058f5c52f96a2778bc1f7305ab5ba6a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8eea7fe241b82c4ccdc6138a69ad4af7a67e8a2c9c8028a77b1ef817c68def5c
MD5 3faff2261cd27de5ef8f28539f24cdf2
BLAKE2b-256 f6c24cf67e0b3284d697cb7cc0f14cc8c5c35af0bb564eb00ba4ee28c20fbe18

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4e92c9c9eeb429a64f3d5407de89b938b56bcfe96bedf87babd28bdfa488eb2
MD5 d55779ec6250e60a43ed732d5049ae1c
BLAKE2b-256 1886ab5ce017036ca4aedcdfa05cd8f0d199204723a26056f713b4b08e8710d7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1555f166b4747939b93b5ea69ad72be0cbc9f4251691bafe7e601c5912e37163
MD5 cf5f1746032a81a1e4bcd0ab4e2a47cf
BLAKE2b-256 7ee9b5a0f1ac3ddf0b1562a305a419d71aa37befe8a3ec07982f528ae0825fd0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8fdd97a406c90485288fb0a1c190074407677732248aba6186efe4db6e067f49
MD5 1a303478d322cd893ea43d0e854175be
BLAKE2b-256 2adb5cc943839f905368f1efc5acf01fed9500602bc87c4d5a60b0dff6040479

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 270fb7d9634fe04f6e4d46f32269a14463a0eabaf79a7ebf8131ae6a7e658691
MD5 a1959013d084670cd1bdd1cbceff191f
BLAKE2b-256 ca01b3f9f154c3b00951213d9d8193193e025fd5c64430c0affeceac3d5e2fd9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 320e900a349181f35855cff610f4426930029c37a892c90be145d22587e3cb6c
MD5 d439878e07d1fc416790617c6f3a3f80
BLAKE2b-256 be743d5e8fe067086f1737a953c61d9d96a2b6d221faf8ca2ea82da49ab27ece

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f2630d8d142905d3c363a848abcfad65b2936a9793045507236028347fa6ffd
MD5 480b3107e013ddc7082d6f02bb93925a
BLAKE2b-256 9dcb33bd04e56f264e4f0353254dc219416393cec68fe7218fc8d9e43daa9e15

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23ca8ee5c48db746bc8101b298c747092c035ab69ad0112eb8e9d28b4273a447
MD5 8d306d1d7980e4230e90912c7f8eaeb4
BLAKE2b-256 0581aec9d979e4c190685c4d5446fc0d1aac316702a5d8336cd329b7854326d3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4cf4bb2b705d1594e0b8278ef96dc5c98219dcf9ba8207f6340084dce0b76ca9
MD5 80335dbffd598600350fc080aeefdb69
BLAKE2b-256 99a9ba14ad27085282b3816fb0a106c81d3fdf0408800affbe8b2827e4258a94

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 27c4686ed21324bb62941c995be9e3871cbe477be63eee200397b8c1e9d81a19
MD5 6f6a75db7b8ad6085086a2642695065a
BLAKE2b-256 40e4fadca2ebeefa6c0d279d8c926caaad755a24b44c440cccd39314b45735d1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 66bfae458b491c5933e75448867b761e5635b6d0ac5f32568c17b91a8b0e8095
MD5 4958029a82042b261c56e3ad768efc9a
BLAKE2b-256 e1faa45e4105cd8d243c1b04531575cab4294529a5cc39a1d33cb551f2ad934b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8e7daddce0410ca64ae6d3169fbe2c21c93851f35bb9f83b70cd6302ea7d7770
MD5 a30dc18d320409b6333685c0c76d6608
BLAKE2b-256 2963c3afce66a7f05a27b7fe1e573435bc6fb77c7451da091d8eacc845bd7c38

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7bfde9103b1288aa43b9009a1226adfaeb2b431cb40f57728ca5cad2ac6708f1
MD5 e330fee97a2bca20b732a1d0fc0b518d
BLAKE2b-256 53e85bd82703629ee4fa4a6c4884d33a494c147f879a2f1bd6643ad56dab9612

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a056fc1b29a78a1f665df2b373da0a8e759cf450ee8ec1bf9bccc1351f5ec61
MD5 9cc3a10d4ec51b9ce20d8662ad681e96
BLAKE2b-256 780208d4e85058210bea16899bfb08c3798cbc38ff3699210a80d41c3ec4358e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adf57b4d9b106c8fe76fc7ba66e03724fe3d4cfa9f4d06705cc8ef37f0cdebbb
MD5 f4a45188ac85aba9cbb0d9fb0fc23baa
BLAKE2b-256 a4a7716b050a294c4c71f3112969ef437cedfeb9e3734429a3fd5cfb87243a32

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9f5767e6de70f7b9fd0398a59d165f4c5c8485b470ae2f66d3ea852173338d70
MD5 cb8b41f9e64d1263a085ecc8d7f2817f
BLAKE2b-256 ad28007191eb17dcbd9558c4c0fef176c60cd1f583ac67bf0a735cb155a2d54b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 b565e41b7ab4a6cfb7760b0bf9e117ae497472dd2f6cf7ab4f4e69e607a174d6
MD5 ae5212e2ce0d6702d11e26c1b66558b3
BLAKE2b-256 88278987bebccf876367c62fd35fc7c6857b3cd3582896fd14f0efd93ed3a883

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4a6c2976076c7d153679dabc33e5620013c7c3b406a561f4ac35f933ef7dd9f4
MD5 2aa4536fa535de2d7a1bb7b865d6fe85
BLAKE2b-256 f0c350a37aadba20a89d125c6ceee6fa3fe4cc3a8d39ac45f425e3e1c5745cee

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 40a7fca8a6714f0b448db4c1dcb3f11e46479b9d5f26edc453095acb6fcc4bd5
MD5 946f484f84f65eda3bb238089e5e6f8e
BLAKE2b-256 e0151bce3f2980326917499ec96f78a5de75b26ed1ec71af4f79d93036298f72

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3dc30bd474bae96bb3d5fe373d66eff9d8dedcb4be720c6a6d8ac6a0ab7c811a
MD5 89379e426119371a211e0c47629dfa87
BLAKE2b-256 d955a2f5899391b97f1016d5634a727f9379d86264dcbb9128ea94a4b5c0190d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70fad879f5c5833e5dbc71194dc6abea3dc69941d1285c7d0676dfef97f34faa
MD5 9055a0c91967e766baec19493fb329ad
BLAKE2b-256 e97aa6b58999004993599bc5f1fd0f128800dd2f531e640257441d91fcdff8d8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15082540cf0860300e88401ac1b4efbfccf4bc0f9116cef56f9436666c3186af
MD5 b8e7733f88a9a65c7f6387262fe42aa0
BLAKE2b-256 62f06901d97cc3297d105e8865416426310ccb361d292b3f4e619c2f6a10ec9d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da76ed4f17f0db7fd113e25e57342d82f4d07d4b677390c769e0a3a05d8aa7ba
MD5 1a4e250ad1014367b72a68a19ec452d3
BLAKE2b-256 21fb72464f890670ce12bcdb732395e16988bdf9c6ba4361241b543937dead5d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8769b553c2d73648c9a17eaadd0bae34450aaa006dcdadff18a0a1c402e61286
MD5 cd001d809b28ff622a3eb9efc4f3791c
BLAKE2b-256 d8ad620d8ba0fc7296317c887c83603d381130419d0930b16acc5d5727d329a2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 042c98813f4d4165de41e53fa7c98b5ab9a35f1d088651bdd56f847caeea2dd4
MD5 89aa89c1cb66cd0c17b3271ea99f79be
BLAKE2b-256 2662d4e8bd83c36f0fd5a7e749c34661d639dbaa452c106bc5caa43ce42bf733

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4e249e8c882b2405bbb75d0bd80b55fd705321de7c527222807e51bd1bf66cda
MD5 026d07308cbec4269f90b461088d30af
BLAKE2b-256 f2f4cb2094124e0e66086d9c67f955bfce59f134a128b9c10c0712433ccc7f42

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 973523e44103c60d2305ab25cc08cb0650fa0e8ce323d594987c5e0e1115c96b
MD5 76ff66a6d9bcd95078b6fe1b1140fb6f
BLAKE2b-256 eac90a258415a13ff1cf04d9143226ada976ce625c0800f2e9236171709db43f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 978c2ce22dbe7a08a64e388537505e6bd06eacc9810b15e00ee4b1e08d72363f
MD5 7d0fcc8b8fbc13e81b26c8cc67d58a03
BLAKE2b-256 d55b7b723b8d66fb0d8fb5fa66d352880fb1eefa1987ce7d48a9a71067eb3946

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 633f4a1a64d7d13c58e28418d822049634be788ea4c759d8ef74d69f90af66f6
MD5 9c50d899d9994d555cd6c45c02145f7a
BLAKE2b-256 b28f18de2185fdba6f9c6a27735f0b08c4cefc85a934ed11d8ef50e257a197cc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 94f58bb004f1e8a441d382551e4a21804025c8304a7be9c8ce21871889cd1c28
MD5 ffb2395fd69f6f76965dcc08fac707b8
BLAKE2b-256 83779d7ab9da28f9f89043b8e98e5572b5b0aa9d57b31830a66a6f2e22a741c9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 afda03a5873d47384f0e15345a8697a4a6fc164496efe8c3465e6b9ab1fcf527
MD5 45c3bde9c8bf7e27144bde7a382e9f95
BLAKE2b-256 c18da8cac533f5684af98aefdf21dc2ac0fc7bf65b6570bbdae52bf605ed5476

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4a8236f87dce769cbdd4654bb5e5b270137dce0fb5eaac64cd4e734ea24a8313
MD5 c3572e22a8f40287e7eadf097d4abea4
BLAKE2b-256 e55a59e04932f874dca0aed383fba29f93a0d1d79e3e620db512522431cc16dc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dfbc61b15ae3f773726d49cdd20adbf7c469d120ff3a1d36618839074d15f5f9
MD5 e268c9224bc071f3dd55f60d51bb49c4
BLAKE2b-256 73ebcddc04ddbcbbf7f44069b3180f718ba5abee63a393d5d1e0998d72125362

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffc2ba28f5e125f24fab2081d032b32bfce982161ddc19ae6bb53dd5ee9bb6aa
MD5 1f237de34eb5800064d825112f84d578
BLAKE2b-256 b632a15db85568819ccf87830bb436f5880f00041bf5aa09f1196cfd4a9db79c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ea027ae251e86cf25477a2c445e653715edc8b2616076b2b64dc658a43790f3
MD5 e73f1d3bce40e4d70d57d0b93dde78d9
BLAKE2b-256 87a5a7b7c574da54108f8867d2ff971216ada1d182255b31e89566f5d09fb9cc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f2467de422c2415a20a5e46acbcb053271bacad848ddcbcb57ee9a6bea5b761
MD5 34c268484a8f209b4ea216112d0ee794
BLAKE2b-256 4ddf1218f804d166140684f48bf1bd7437f93b1a6e528ec6da9b3cb5ad6e700f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3d0499a8736bc3903332de7408bcc070aa81366679001492e20dad7521e9303a
MD5 3c0d95ffcf39f1d8e92480d39e7aef74
BLAKE2b-256 4f7fedc8f17bcc474ef75ca9ff06550d11991594ee246045eadc8155203967bf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e9d3ed0ac168846f37cffbbeaa2ddb726439d576370db936d513d774f5eccced
MD5 b451c63089b0947750ffc0db98f50e94
BLAKE2b-256 ac392c94a8ee4210c3a27f1141ebaedd0ef31e65f7638b2736e9170555915c93

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bc28f0ab904a1822034f42d80e8fb982ee2bf1da86c6498751dbac1956e8847c
MD5 88c72c49906ef1c7512817d931a10886
BLAKE2b-256 290bea6ae24cc4b09c98327ba8ee0d4a203b8dc536c06835f751cef4dba3c2d6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0ef8b435a50e667214ddb152366fecb688a070eef35e6b61cd9fa9d69f266deb
MD5 00708f66564a0c94601e32b6fab4b5a0
BLAKE2b-256 6903fe037a996057e16dc439f2424ca092b6a41d236c380be88ac1dd66667603

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39b9c1c33c77f95c29e9fa07a5dea5ec66fb06c79ec47648f1a3d779aadf2388
MD5 267482fcd24e1f97a97b9fec418406ff
BLAKE2b-256 33cc9ec42756b77af3ca33052afc4df9f1c9359c3d4d4d1855d61b9be252de8b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4bd6643127e98a79dba438e184d81085ad90533a5f82ab65fc6da24538e0234
MD5 7822d14d9135299404f0165fb0450eb4
BLAKE2b-256 0817c0bd65b619cfa343afa718e80c945453bee55e31d881f670c1e63956c401

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bbc6cb5558088b07ff3177afb79f7e0c5ff165098f3b0c39aba87bd3294e27a
MD5 f44eb2720183a81d8b92bf95c9fe3340
BLAKE2b-256 585513a0cc17cbd387ac7c218d96655ee509b198460bb3344ce95ebfaed7d384

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e934ce1b45ebf2742b738379753ad8dc28217e6289083eeb770d9554f46efda
MD5 c111dc57fa637ca14e708003bb0a042a
BLAKE2b-256 07f5868fda17f9200fa864e35c1245f85205b3cafa32d56704942e0c4d21f103

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bbf47dcf420a8b78d678ccf0cc8f767fdb009a1431cca4385e67df299802dbbc
MD5 9a08989d4b6ab341967bdbc78839cd24
BLAKE2b-256 b5c003f1ffbf9b550faf8acf47e49a6bb1e4f06a6b12d8b231762120ecf10eee

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0c6cd7b285c41f6e7db8988a43e8c26add6202ade318102af0a60533e3d3ffeb
MD5 8b95238382f102356f5f29ee16b02a2d
BLAKE2b-256 29c999a7fe397db060722dd99a48d876453dae453b95681cca53ee480cd1c3ac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5742cd075b5016ad5f7ccf9b0f36cf8e223d86e6f39bb3c15ade12313817712f
MD5 f335131745b0f2281e56498ec42a6c55
BLAKE2b-256 77b191a26d45a50988673355b679f978f27c522d4753dc8901b9a7d5d4fef88d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9bf89ed23d828103fe28f898c0c498ffc0716c0dac5f776d3debc0698aa0a46
MD5 a0cf09cb6977296dade56f46f27eed6f
BLAKE2b-256 1a62c6b5f88745191f63dda626f3b0c1b8094b9fdcdc77363db6dd2491799d73

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b173b630330d948274a04dd47192f082a3d1567b36752ff5d40daf53de797ac
MD5 0b89b889462ceebfdbac58cb0c766952
BLAKE2b-256 4f6de6d91e347eebfc26fe11ddcf2e17f0d6a050b1884ece93735fb9dbe6eab5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e0adc911045cea861dda2e17cfd4e497b4bc4be9105f1addac747248f0a5eb9
MD5 e5b1f734c065f7fe84d06210472c8913
BLAKE2b-256 abd94188be5114057fa22cac0093dd8d88c1628cc80f983c1f9f514db99734cc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd654ce06164bb4659fd50955f7aca23c498a91323262978b6aac7bf35d7dc8f
MD5 e6671cf080ba197499bd3cbb26d7b772
BLAKE2b-256 f4c87eb8b44988075c71e60c4de324f21e9addad9270219af19bd8773cd4ceeb

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