Skip to main content

Rust core for Oxyde ORM - high-performance database operations

Project description

Oxyde-core

Native Rust backend for Oxyde ORM. Provides high-performance database operations via PyO3 bindings.

Core Technologies

  • PyO3 — Rust bindings for Python, async support via pyo3-asyncio
  • sqlx — Async SQL toolkit with compile-time checked queries
  • sea-query — Dynamic SQL query builder for multiple backends
  • MessagePack — Binary serialization (~2KB per query), faster than JSON
  • tokio — Async runtime, GIL released during I/O operations

Why Rust?

  1. Performance — Native code execution, zero-copy where possible
  2. True async — GIL released during database I/O, enabling real parallelism
  3. Memory safety — No segfaults, no data races
  4. Connection pooling — Efficient pool management with sqlx

Architecture

oxyde-core is a Python extension module (.so/.pyd) built with PyO3. It exposes async functions that handle the entire database pipeline:

Python (oxyde)                    Rust (oxyde-core)
     │                                  │
     │  QueryIR (MessagePack)           │
     ├─────────────────────────────────►│
     │                                  ├── oxyde-codec: Deserialize IR
     │                                  ├── oxyde-query: Generate SQL (sea_query)
     │                                  ├── oxyde-driver: Execute (sqlx pools)
     │                                  │
     │  Results (MessagePack)           │
     │◄─────────────────────────────────┤
     │                                  │

Internal Crates

Crate Purpose
oxyde-codec MessagePack IR protocol, query structure validation
oxyde-query IR → SQL conversion using sea_query
oxyde-driver Connection pools (sqlx), query execution, transactions
oxyde-migrate Schema diff, migration SQL generation

Exposed Functions

Connection Management

  • init_pool(name, url, settings) — Initialize named connection pool
  • init_pool_overwrite(name, url, settings) — Replace existing pool
  • close_pool(name) — Close specific pool
  • close_all_pools() — Close all pools

Query Execution

  • execute(pool_name, ir_bytes) — Execute query, return MessagePack results
  • execute_in_transaction(pool_name, tx_id, ir_bytes) — Execute within transaction
  • render_sql(pool_name, ir_bytes) — Get SQL and params without executing
  • render_sql_debug(ir_bytes, dialect) — Render SQL for specific dialect
  • explain(pool_name, ir_bytes, analyze, format) — Get query execution plan

Transactions

  • begin_transaction(pool_name) — Start transaction, return tx_id
  • commit_transaction(tx_id) — Commit transaction
  • rollback_transaction(tx_id) — Rollback transaction
  • create_savepoint(tx_id, name) — Create savepoint
  • rollback_to_savepoint(tx_id, name) — Rollback to savepoint
  • release_savepoint(tx_id, name) — Release savepoint

Migrations

  • migration_compute_diff(old_json, new_json) — Compute schema diff
  • migration_to_sql(operations_json, dialect) — Generate migration SQL

Supported Databases

  • PostgreSQL — Full support (RETURNING, UPSERT, JSON, arrays)
  • SQLite — Full support (WAL mode, RETURNING)
  • MySQL — Full support (auto-increment IDs via last_insert_id(), UPSERT via ON DUPLICATE KEY)

Installation

This package is installed automatically as a dependency of oxyde:

pip install oxyde

For development:

cd crates/oxyde-core-py
maturin develop --release

Usage

Import from oxyde, not directly from oxyde-core:

from oxyde import Model, Field, db

class User(Model):
    class Meta:
        is_table = True

    id: int | None = Field(default=None, db_pk=True)
    email: str = Field(db_unique=True)

await db.init(default="postgresql://localhost/mydb")
users = await User.objects.all()

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

oxyde_core-0.3.2.tar.gz (82.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

oxyde_core-0.3.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (5.8 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

oxyde_core-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

oxyde_core-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

oxyde_core-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2.tar.gz
Algorithm Hash digest
SHA256 15eedbd617b96bd63ad3c171a6665b8e1099248c2be2c52b5bfc5f05feeb0a12
MD5 8c0bd090a4dd480849bab57e7c073c53
BLAKE2b-256 f5d7a4dcc4bd006592c0ccb41c4913868677233e29f351bac3e6418bf02762bd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 44d8e9e9e8134343336585068109a57a14b79c59376abad4816af9d3e93e11e4
MD5 f83d5246f801bedaad090412ff849c13
BLAKE2b-256 018d253b1f3281c0c1f6bbc8e080ddb9417d85f9cf5357ed745c5998da912831

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 abb09b0763ea1deb04754d5fa5c523e774f82d732939a9a3bafce6994d087254
MD5 9c7d15f920824c5d4ad6374bb4ccc663
BLAKE2b-256 4b328e01310f9194954a95a5ad8dc7492ac9b779a979892b6bccced76fc27fc2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e36b101c23c0bb4eedc8ddc7da79b3b22b27f725688dfb2dd8722cb67ed555a
MD5 346c8e76a1c1591d6aadc1595ea4cad0
BLAKE2b-256 6e11f29f9f61dfc604b64602b57eb441cdee02374cbdc307e74a64e7a61eb6d3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1789167e7e21531457a426e19f34401904f701e4b77c769c4dd4b34f3f6d26e5
MD5 1a361223a67eb1a5b74f42d44a681ad8
BLAKE2b-256 32132c14a6c135bfcf111866e8d3b76f6671082f96601619f90f0fd2bed6106d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 52c77a307ca0f107a644a0283060f7def0bcd0d7e9cb00c804f1b60d8df8425e
MD5 29b58bd2ca0bb12202e2f00ecfafd608
BLAKE2b-256 3b6974260fa4bc052d8600059fe7a39e6b77e9a7031b0d07c3d4e52df357be39

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c7237728800b98f7aed0b1da34a860d3170ec3e1463ebf07efc61c6d2f07f53d
MD5 9144394b4bf4988715496fe7f2cdd43e
BLAKE2b-256 b36be458be2457ae6e64fef29b5f6f86ac306c99baa542bd7ea90b316eefda49

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf7fa97d27e941838bde58f314eafe78f3825a4ce1349c37d7061d287143c7fa
MD5 64151bb53764c3f44fc570bdd70080f2
BLAKE2b-256 df7601ddddb4ef1dff2da04396b81eb395d7ccbfd325c23181628bfb50cabf49

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 71a401627a193b28451d038bbd12be843e35aa419a368e0d63a8c4077ec770a9
MD5 f50146c4a7d80ab3787d1387d7010bbd
BLAKE2b-256 15b95fbe5bdaae44d191989d73ab49a8e67e87fb9329604d286d11ade54f1381

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3bcf061834551904ba6598cc0ece7f53eb85ff3aae6a14ee01cc74d479625a49
MD5 cc815073f5b05d4c0b8daad0b2504fc5
BLAKE2b-256 0a55fee53ed08d43ea71a9aec45d3cfe55725ed7727602cf5952dca87075278a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a33c2fdddbff01f11e0187fa9680dab27e8182dfc2e9c544b899a4ae98a2c227
MD5 0844834c8dbccb626053f1dd5d178c8a
BLAKE2b-256 2bee36168f59f86324ef5e3e996c8d3e0643bb7e23793d1abba43612f5cc6597

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7166f18e64254a49878c4d2ff473d2b0d638c7abc5c48df3d7373796f66d2ff7
MD5 8d585d08e992e88968dad969d4784555
BLAKE2b-256 7022237b1220302d25984f592c8e2f70c2fba47125d4793f8bddfdafbbeb976e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a1ac9d99d81b17454feedd4a8b4c044e8cd8bc1a2cf74a52f82e49700054690
MD5 4a7e6e66cf4709a9276832f77664589c
BLAKE2b-256 9993825bf9d2906b25c6eb589d37fd3eef817221db53a763fd89a44a3c6e1a53

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73b9a8c1bba3993f150d35c5beecea1e66696a54c198f896bda2d59680fd3cab
MD5 3cee3181d85b896107d2fb9489c2c390
BLAKE2b-256 dd4baafd9d0ce9255ed2c1994fb663b25d0931076177048a834849a3d377e588

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 534ce54e8422282f4bc544fea88e8bb059cb7ffd7ec675a307208f05da51bbe9
MD5 574b5b0eaaf1a33bdd9a780f9fdb11bd
BLAKE2b-256 b077225eddcde8c8f24683361afa595b7dd5b743c766f95bd98e74ccdd8fad2c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 04d12776797291269d7ee23f887d200af621cf77788b07d889cf4ac4de5820aa
MD5 6a3da2248aee190ac427dc2112c03c2a
BLAKE2b-256 d58f177179175a03fb4e5fdc3f3206f2c9e19ce467b80d4c481e9a852dd00270

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d955ac173a1696782e8af1f8e0db414da2d8cf42bd73d97adf21b8519560018d
MD5 d5aba09b6997b3c14fed879238b136f8
BLAKE2b-256 e867bcd75c231a9a96faccdde3f49566becb50780d19b153ea55a088a7a472c3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8ea439fdf8a33399c6ec5bfa0dc174888d81145181cfdcdff7d2c7df2c8ea669
MD5 c67e4856c7e3237c1dc1755c20744336
BLAKE2b-256 09639f1e997d996d47e207185b35954bd67d594a3c812656539d61a8f7c7e96d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0abdc2c6df29f6f6008104dcd28bfdc82570a8e240d8e7d3229e86ab3a5dcd4
MD5 5b73032683ec89fde8cb5314e8120329
BLAKE2b-256 f1bc40648d79b0481724864d0efc1e21c2d8b17defff719b28cbedaee4286ee2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec668854dc90bc5e97dc5352870e9623649d4fd4495d38ea970bdbd44bce01bd
MD5 e467b8579fc28adef9368406e9eb6ecd
BLAKE2b-256 8fb4d939807d31691b58ddc21e3569de3fd87e6803761000c259f7180955c7bc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6dbae703b9710cfb0b59a3a5c44ddf8365bde954beebbe80e0d8f0c8260602b4
MD5 55992dcce4757903a91699eb07cdd02d
BLAKE2b-256 b1d0d705fd4b026f7efabfd2c487a87bd5c436da107607449ae3200ad15ef80a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f47895ee9246eeffed67539ee3e1eb2aa242f7c401a682802612b7c171549ec4
MD5 8fe8728fee6ab248fbe6fec5cf77560a
BLAKE2b-256 229f1de5a15c743681cda4fd2f53351291e564960c3789c3af0d9fc00715534a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 6e9da72c3fb49b5499fc3684bf2ca931a46f37aa9cf9d729dd4511a978bb2862
MD5 a8d05487078455217211fbc9dfa6b3f5
BLAKE2b-256 eaab412590961dc245c7abc21ebac792f79b2ddc4536a423dced326d45131790

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 26c346b223e168e03f876f099bfa40cbab3c421fdbd40427ccc51df4786578d5
MD5 d1391320ecb99458fcf3463f2af79c64
BLAKE2b-256 055c5e2a4ce6b989bfa46ca102b2a451faaa545af9f7a3ea38cdd19640f459aa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ea5d2c6efcfdf143bfb8e0c5031da85378426837abc8f03e3b1fe9bd6469c384
MD5 9a3da95526f90397da261b9eadb9d4fd
BLAKE2b-256 0c3d7e8f56753771a56915a19e5b1c60729ea80cb45376ee1d3785fe4a41394a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cd3d591b0e211157ce4e955ce7a8440b556597c420f9a59e39bd157fca423c6
MD5 0c6d4cbf1feaf787b009654058b4a25f
BLAKE2b-256 ca9b83f3b2ace70388d38d6c5dac68d906bdd0aea92e0061984f8b01be3b8e44

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 184dad436989193074233247aada8ee763eebc44b35de0839f5305cd525e4e89
MD5 093987d6919888b729c790d42afa8642
BLAKE2b-256 cf27265d6659c407e70602df893839acfde5c16f685d37d1b2c9ae40eaf1e49d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32dee9b4fa8d32cecdfa15a684dce34846b1082808fe49ee1aac5d23a3e8b7f4
MD5 02faf873c0f75d29500962a6662e56e0
BLAKE2b-256 9b7994d3f34c202224e55a9e9a98b9e7daa2eaa79daca39aac5d45a8f85907ad

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2dfba13cfc34041726eb78b8747e42fa2771347f0ce12373e11d20f4ff64cf98
MD5 ff8a53033aa3991632f986da4f358062
BLAKE2b-256 1559434cb5427ffce1ebf22476ab65a61f186da60ae578bbbec26dc7fa4521bd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a8ed36a18792d8de675009fc4b6877649c9fdcf504004925e7b0aa845d53668c
MD5 ee198c4b7566c823f069c2c5557104fe
BLAKE2b-256 06ecfbb2853ec48bd0c8a6dc7bf625c5622197d84f66661ef78a3b8e73f3ef17

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 923ed106c48b8840b4e1243eb4f75b49aaa2b7295ed733336b96a08465a74236
MD5 b1bc81aac2f8aac9e942cdedf35a8a86
BLAKE2b-256 6b23c3e4bb4395906fc09d41d86dc7026eddb0f23c19f904064d1a0924738410

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 49881ffdb936b05b73265aafb5a4b358aeb839d14a27adc1e9fc65544986a885
MD5 0c4ed50b0c9db55d50237974724d9fca
BLAKE2b-256 d022ef22a88a9c9d0735f3b7669013220838b7f07263473222e28f80a5660cf7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6a8f754a0df5fe9bea900dd30ee605f1863c46abcd3f875d0c1a1cc9f5a3b58
MD5 afd5970e974731a8f4c02d9f17e99f79
BLAKE2b-256 7010353d64abb4241332c897ade1e8818520e8de407e3c09800c10129ea3b53c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9bda09af0d69f58085895ec0b8954e465b4d12bd39434feffc749bdef3babb55
MD5 6912fdfc6d0b1b69ad3ca5aa5d69e55f
BLAKE2b-256 1526fcdc1b249c5cab30ccb99a171c0dee97e4be1cf7c20266cf6468c36df6ac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e4de08c5b83622275fa224c5e13058e987f0a101a7d436f2ca17f422542a016
MD5 48f6e7a97d45a38b34174eba416b970e
BLAKE2b-256 f3554f0ba87c88b4d021838e03f00eed1f24dc9830b7c667df754c31869c775d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 149da75eef38d814b724288b5d5cb7c24c3515925a06100758619bce007db0bc
MD5 49cfde5f4e79869395425487b6cb87f8
BLAKE2b-256 f798aa4e13433b2d8761ccdf6be2fa3e2e8a4bbc3f5d64ddcc42e0b74afaa071

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 93321b307565da848bc9be87fdcead53dcd78cd7201c2d6e11c5b9746b0fe265
MD5 f97bd24e248ff35f52023d57d0642907
BLAKE2b-256 7c5c6e58a1d9f0c031496d93b8f233d9f136540d6c1b1ca04ea0bdfe54b46769

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 32f92c081c35bf9524255139cec195548989546e11294503be68dc96e84de9c9
MD5 1957d7ec1d22af1f17b523e91d3b999f
BLAKE2b-256 b86f9ca2ffbd7a285e912bd849c29487328d810101dc77926b80af20a0c52bf5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8ab587f74f699ecfae8b13c64f9b922830d51fb7e3fa967115aaf40238597258
MD5 76c24bd434d58b4bc97600a9c5a2b7cf
BLAKE2b-256 2debffa5c39f2cb01d5b22c936ff6f1f8dc400699f59ce467dfc42c17258299f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1470df5bdf1ef630d7a59d6b0b3048da7962c699c6bc9975107658162770931e
MD5 97fb1add3bd4d22a79f5f73ada59bb6e
BLAKE2b-256 a7fa94cad7891d544f0999fb3655ddf5c04afbdf1ce59f2bf26c63ef189eecb5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb54852ce17211f2c130d7abc9dfe2054a9d90eae00ab9c80b937eef2bab708c
MD5 0f0a896154478c5763b8be79485b1e7a
BLAKE2b-256 b08c5f11289c763f5da060ac2b80ba9ba5b961f6e5ab6a780d68fd5d956faebd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2ed2c942aa059aa39347e0a911d8f0e25397d7de9a30a8863c1dd6b29117c9c
MD5 b410cedddcd56c56e087fc2e3f236318
BLAKE2b-256 84fbe58fb55ac79758045c24da67bac0bffd7cb49cb3834a3156faed026bf8cc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6fbb904743d793f1c652461acf5ca9356d715ba2307ad23fcfa8b57bacbd17ec
MD5 4552fe032df7c71e7085f64fbf1f16eb
BLAKE2b-256 7102bb74b3ed7652bfd2be9213a1a52d567793cc9d60da156cf4d5c0e88e1e0d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 40469ad56bca0f8cb608ec220546cca7e240dc7d145976fe200300af55ade514
MD5 4ada332e0cc79732c1682d088326ed91
BLAKE2b-256 5e4e01e5bef2f9d14bb8009dcc1dc6d3527085467e680e119e45d0f1e1a7047e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ab4dbdf4feb2fa0b653f2c1d1d53bad661b0079ba0766e39124aae7dc4c6a55e
MD5 b2422340bdb549ba94fea307b2bfadd3
BLAKE2b-256 4061e441a3714c71ad90c9bfb1fed57293e22d97eff17ce1bc9e8ded4c41d377

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 689d5a5b621b0b122bf9a55cf3204c0fddc9b7e014f3c3a28a11a924e9f7ae67
MD5 8f3c342c6d77cb598653205f4f2b1112
BLAKE2b-256 15c07b238139305e846ab92a4dc2fb4eb98b8cc43c60b21cf540ef460c7009e4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6af6e10ae0ee424bc77bd91f561df03536384a3b90b93024a881ad1b63f25f0e
MD5 8e77100242050a90b72c2f4afd9242cf
BLAKE2b-256 cb600341eaba8aa06b5bc1a8c78750e73cad3c82422c7d7aebd815e19470cb38

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b64ff6c332ddf6b7e8a3c6a5d2768acaf3d240d4e016a1c8b3c03086246f1790
MD5 99c701e2e577b642b195c6628840830f
BLAKE2b-256 34c70e1b738b1db5271cb659730000e927a8ade2a69af9b2effe39cfdc19c358

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ee15849a3bfa59dbe29b02211b26b7e0a01d653ed98f4fac46a7155194cab5e
MD5 f81fc798874f54a2ba20451afe9e4b55
BLAKE2b-256 f2f22cd93f080c238336533c4198b41a936f0245cfb7759fdad18928e11ff233

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 08f812735e48d193cfcb192e1ad5413c45ca8221a07350c66fbc75d9f5386fbc
MD5 fe7d0922a79a8e8591eed0c8e17f951f
BLAKE2b-256 7e6d3336f4e54438b9cb624c01d6534d51d723f3c2308edba0f9938ff2591120

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8506dd2b883f6f543080085b6fe8e9e147a2d9b93754cf1905ce6e12942d52a1
MD5 8671274c66f813a36f3cdf8d1941e0ad
BLAKE2b-256 c0a9bfeba654ce6cfb76bde97e6a0d63b22b6d8f837518f3db1df79ebd351c82

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8ac225b24f3db3ab6420ff11624304c75b226e141bbd13ec1eefd92b370c8f8a
MD5 13e060b19e9fa4cc022b20029587242e
BLAKE2b-256 0ba0f8938995674107e06f69ed65f3a3e7a1c436aaa449e8b5642c8769126901

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ea0d54526dcaf57433c2ece3f3a592cdf5d2f7635d7794e0647c6cd7f8b8bf94
MD5 822f9636daccbc8918b48b3122793554
BLAKE2b-256 e2c47f7a9b78316d564d7f8356b55b023babd2d866a1c73462e41575a5e1087e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8e6e0e1ebf4f71136e1ea74b76bfb01367a2fcc99064e469d0b0c44bd42ca43
MD5 be01dc8cce45a7230d6f9927af4719d0
BLAKE2b-256 ead48c5f9a3a7fd2eea170c2e9821f9d3fe30f244cdea6d8d60b29030179382f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 579ae3d795bc2005a0ae290f74495ae5a5657222a51bac6643537b16dfd16723
MD5 aed99384ecae0da34446996d2107893d
BLAKE2b-256 b2afc520986cec58fd08f7e0ec2a30e33b795d78eaee11503f733cd490df4ad7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7687c94add879c7f67b27ddbf41e8a2c48f10e080a733071ed3c5032810d48d8
MD5 a5f740b5fe0e12708befacf18c87adf0
BLAKE2b-256 5804578da7de10eea70c25223ad6cc3ca3223a23b9044bc6919096b773e1c8d8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e5a20a2ec3b1e943d46839004d80c68918b2cedbffbf66cbab39e4a4b720a4f3
MD5 cac22b1357e20423eecd1003a1541070
BLAKE2b-256 2bdd24b437dd768a32d65d7e59a5d256a51bc1e7438ed4e53adecf7662cf9c89

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