Skip to main content

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-sql: Generate SQL (sea_query)
     │                                  ├── oxyde-driver: Execute (sqlx pools)
     │                                  │
     │  Results (MessagePack)           │
     │◄─────────────────────────────────┤
     │                                  │

Internal Crates

Crate Purpose
oxyde-codec MessagePack IR protocol, query structure validation
oxyde-sql All SQL generation via sea_query: DML from IR + migration DDL
oxyde-driver Connection pools (sqlx), query execution, transactions
oxyde-migrate Schema diff computation

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

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.7.1.tar.gz (120.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.7.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (6.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

oxyde_core-0.7.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

oxyde_core-0.7.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (6.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

oxyde_core-0.7.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

oxyde_core-0.7.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (6.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

oxyde_core-0.7.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (6.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

oxyde_core-0.7.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

oxyde_core-0.7.1-cp314-cp314t-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

oxyde_core-0.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

oxyde_core-0.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

oxyde_core-0.7.1-cp314-cp314t-manylinux_2_28_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

oxyde_core-0.7.1-cp314-cp314t-manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

oxyde_core-0.7.1-cp314-cp314t-macosx_11_0_arm64.whl (5.6 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

oxyde_core-0.7.1-cp314-cp314t-macosx_10_12_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

oxyde_core-0.7.1-cp314-cp314-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.14Windows x86-64

oxyde_core-0.7.1-cp314-cp314-musllinux_1_2_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

oxyde_core-0.7.1-cp314-cp314-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

oxyde_core-0.7.1-cp314-cp314-manylinux_2_28_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

oxyde_core-0.7.1-cp314-cp314-manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

oxyde_core-0.7.1-cp314-cp314-macosx_11_0_arm64.whl (5.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

oxyde_core-0.7.1-cp314-cp314-macosx_10_12_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

oxyde_core-0.7.1-cp313-cp313-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.13Windows x86-64

oxyde_core-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

oxyde_core-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

oxyde_core-0.7.1-cp313-cp313-manylinux_2_28_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

oxyde_core-0.7.1-cp313-cp313-manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

oxyde_core-0.7.1-cp313-cp313-macosx_11_0_arm64.whl (5.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

oxyde_core-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

oxyde_core-0.7.1-cp312-cp312-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.12Windows x86-64

oxyde_core-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

oxyde_core-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

oxyde_core-0.7.1-cp312-cp312-manylinux_2_28_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

oxyde_core-0.7.1-cp312-cp312-manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

oxyde_core-0.7.1-cp312-cp312-macosx_11_0_arm64.whl (5.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

oxyde_core-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

oxyde_core-0.7.1-cp311-cp311-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.11Windows x86-64

oxyde_core-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

oxyde_core-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

oxyde_core-0.7.1-cp311-cp311-manylinux_2_28_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

oxyde_core-0.7.1-cp311-cp311-manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

oxyde_core-0.7.1-cp311-cp311-macosx_11_0_arm64.whl (5.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

oxyde_core-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

oxyde_core-0.7.1-cp310-cp310-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.10Windows x86-64

oxyde_core-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

oxyde_core-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

oxyde_core-0.7.1-cp310-cp310-manylinux_2_28_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

oxyde_core-0.7.1-cp310-cp310-manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

oxyde_core-0.7.1-cp310-cp310-macosx_11_0_arm64.whl (5.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

oxyde_core-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1.tar.gz
Algorithm Hash digest
SHA256 a5a485443fb407092f0e33b0de51bb355dad2ab39dfa6429d33d69aef660dc6b
MD5 e1f29aebd943d34e7ee87c362da874fe
BLAKE2b-256 aa5512eeef019d9ce0f7988568281cbb43d5c13466a037c1b4df776dd7a3c8a9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2d62e1a1c9878a594d5dcc409c9a8cfc377d959f2108fab69968fdbe8bc6646
MD5 731bd6ee71f712b797b7dd3c37bd1eab
BLAKE2b-256 baf73258cc96831ee739c5615c163530d71468c7219c08b70c860758d0cf420e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e1ddf12b58b3f848f129f5d20d60d99b692b7220bc4af9b8ebfca22b157dec4
MD5 033b13ea536c52498987a1d4fc55c724
BLAKE2b-256 01e777fc0c4d7fedb9d7dcba6e2f6bcfe3349c5bf06419d65c778c33781cae3c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b55752667995ec770dcb55dbcc98b79039fdb6f6b5b6637af7d955fd111f7bfa
MD5 6367a362fe5e15483ed8d2ec6db08b45
BLAKE2b-256 aa5506fa66f2804acf0b3dcab7f0df39c1795c8bb8ed26e3b36d895d7ac5a723

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5331d4bcae9e03387fe1a4071f030a49f33d7b1c5a65cbd085ad291166e2d79c
MD5 ef4cd0e84a788ab35aef78993bb97fe0
BLAKE2b-256 ff6be74530e3cc06438b77dd7a058ce4c29cc4f404ebfc4ac0ea7f4f51abae09

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22973f90739e6bf33a251e8cb75e12e01980dacf41a39d32178cbeec70c21a2f
MD5 177c6eb49010e73b89992a4ec55e506b
BLAKE2b-256 a1c62ddba009ef4906605189fcb089f7cb0f74ae4b23e0ff715ac33502e9df4c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83d39d3ca81e3c63a677010166d3053f8c8bef7d9d0f4057f908a88b5a9a3da1
MD5 c07b4381525de4c41526be5e560d5670
BLAKE2b-256 ecd408834d3e7f24db1a11323e9ebe0f9011bd74b510b248d7c7d743c53445dd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 12d353a0e7bf15362eb404bbf7ecce3aae06ab7f97077a0e270ffa80020e537a
MD5 33bfe7a719ac3938e9bf86bdf1c8bf12
BLAKE2b-256 4e4b123aaceeaa24d514d27326932c69d12acd28d2efd6bf45fb261394dee219

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c577496fd4f71a34786f4acced06d7b222efac2bb349919ca5f9d0320808e168
MD5 09045f3c03f592f3a42b9a28370b5a18
BLAKE2b-256 93c2b15f2804f683276db6e729e76b46a82bb16e30ef69e1f9de87a8838a0d8a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d4b61671e2fe8594f49f3e3ab4be2b2f0aee239b2a8f3832b0559e015febb8aa
MD5 cb4c703dcfc7707da9d124f1f4060d42
BLAKE2b-256 c511eeb286626c3e68b48da9330350ce22187405413542f69e2888be99289a21

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3cb7cc0e57f1fe6095f919a9631e944a42f48e1ec80c527c2cfde43198738e6
MD5 bd3729fd0c3793a376b8d60609f944d3
BLAKE2b-256 84021b3ffae9494f746224dc35a03d49c699ea012635bfa6a5c22c365b352960

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71b5c0828e55ada58313b207007a498ab6a8f3b62559d7de1edf8cdd13e89a9f
MD5 662507cb86c6a1e40d07eec647eeaae9
BLAKE2b-256 e32da7a800670824cefa6d8b558171bfde1a51a9f27c2296b1b1e41fc705dcb4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e1a5bc8bd7be876a601fe75bbd0f18050432fc3b0c464fdde1398949f8669f0
MD5 e56aa82732b29311f14eb4b371a8217a
BLAKE2b-256 1ed91a21cab9f2a76875735a051021b55a86229e9d0cb3945bacd21d435198e1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad8180777b61cd7c136faedfd816351ad47c4e75a1d8ee16bf9f676f2fcaee55
MD5 bd13574297daa4211db40db8a39b1234
BLAKE2b-256 8db2728fdd8dd4b2d84dd933752e1b4da2388ee74afbfe6ff60c2a3c8f7877d4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82efe00d167804e768f687e3d041f55fdcdab424ac6160cacd282ab52c986c88
MD5 62076b3aa32953535d81562e937271ff
BLAKE2b-256 39999e0da9bf5ecc6259e0b4f626abd874d0dc3a3abb9dc97f7b27a18c5269c7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d806f537547baa470b81822c40b70b276dfeb0d9dc8b0ddcb5482e5bcee46cbd
MD5 99ddb9858c44426a16193def8eab97dc
BLAKE2b-256 a98663045de0c1afb9b1cafdde5fa8467e2170ba94beff28e7238b3fdc4e744e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f83364fd5d1a86ce0da72b1fcaaaf0224d8194c0adf10d12192bb92aa4d4441a
MD5 5f50d3c9af4260d9daba596042880f36
BLAKE2b-256 c91766ae978fe78b3de0adfc891dbe5ea62ab1445f41ae40ca545aae689f30f1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68f39c868b0f6db5cf1461f1130bab5257f01a83321cbc8a7e94f651db170206
MD5 d27a0b568d454533ac49cfea334f8dac
BLAKE2b-256 4e817a560a9685a203e67044bc96e3a621e10bcda280680196c43fad9ae0351c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c173e8a17c9e6ce0989677d4e24e09065a3e0835dfced0390f86a26fa9cf693
MD5 fc651449c8f0be864deae7f239efc078
BLAKE2b-256 19aa1a84e0f2e04ccb5843647de95b38b933fa5fa4ecfacccfbf5222c5a2d34c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a22aa2915e67ba9e0d81f544718edb54925ce6a38a06119f3d9c41b489a59ba3
MD5 75c6cf10284f2744d33172cc449f6283
BLAKE2b-256 6ee16143019e7aaca41af2292b479c9c8563e94ab6ae101ea9b510e97f5c6216

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f37662f3d2027b613937c66872983f39a74d40e1fe495b07c52419229b2f9a81
MD5 ee3048e48613fdf7946d0027b699afd1
BLAKE2b-256 9744c1f914c371b87e7ae6bab0e2ee8bfc49410325c1adfd2e1097c78ddcde2c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 22583a92e876d1301c20eb14fcd6217982ff1c16191a3c751cce47cebb325d3a
MD5 bdb3ea5cd97f39110b85d0f33a466198
BLAKE2b-256 b014b0d05c2461efeb60a380447341ac7cd0f29603131aec40df8b6dd3aaed71

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9915f5a8ac66b368e7525a521885d823ef581f73cc684dc58b4509ca8bfa1c31
MD5 727650f5f6f93a23bf8571fbb11285fb
BLAKE2b-256 f9b9cdf1b98613b159a148f79a99ef6f37f6bf625355f99b68c7d5f081055bf4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7eeaa80aad4035ab6c0fa48117c4b4c2fff205b63fe799d178e476e7e3bd2ab
MD5 962c177954cc09ce952048792df9423d
BLAKE2b-256 886527a6e510189914dd6b73631328784963b6cbb5c20277989444114da85a78

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5cb7487b87c39ebf25d00ec8de4a85f1457f0899a908366d84168dd73cb1ae95
MD5 fbe1b7910eb25cca29d43b95854e6247
BLAKE2b-256 35a175e96066c2a06da0a56f889c17d7df594a36457d109fa58ed602e63dc899

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb77016fa880f59b53b19ce106edc368f251087181c2cb01205d7760b3a26292
MD5 5b3f48dbd73599dccabcaca459cec6fe
BLAKE2b-256 00e4225715a5f15472b65d1537ed1f594697f90fef2cd2564bbcaed876964ad9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55fd3a67a8f70c4af70d88e1d1d8341ce3cfe0a3ebabc0d070107bd835490bb5
MD5 1f22fb30c707c9b3b9f5c9b1ab08be90
BLAKE2b-256 efe292c3cd1555df36b773832f3653c4cc81e635b6d14fb7d2e1d025ec14db30

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bc6875b6643ea7e8429c53be980ceb7a5b874a23574083c80fe9ee5561812f6
MD5 79a1a99e4782e34e01a6bbe70a8143d3
BLAKE2b-256 e19c804d470687a2e0e7c72553a696c7291d43b22d89616b17b11cdeae1daa44

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd167b18c9c209bdc82dfff9fbcaf0bc230b6cdce29f6b1f2a6cc22879a1df1c
MD5 dd6a3b152c5f1097e8d050335b046195
BLAKE2b-256 743b59d720e4502baa11c9347a26087e5f27b41831b3d3b2bb4f2dc922982cd1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3405348075efdb3861ecef2766888ffeae03c11b007e1ee4e6731a794a79dcc5
MD5 7037e1a5bb07f801b3db5c0f1938c158
BLAKE2b-256 3adecd953156522af7d0c7444e6c492d3154d9be2b4ddd287bb03dfce6fc0fde

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9bdac61948dd064ef2770d2266b48b18ba64a224b7a4096f34db6fa06f4380d
MD5 2ffa8eb1488f4597ff9f966c1479742e
BLAKE2b-256 120d31ff019492cafede15cba4d4529a7f8ea23d32a86d4b1adecf61d629ee2d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 814eb8cdaa0232b0b61e0029a012530d5831135cebbe908860ec337e6bf12fa5
MD5 2fcd6db839faeda6716187f6955830b8
BLAKE2b-256 9e3a7cda869f52527d2f6a9803192299e128259a8106a50f35083047fdc4f58c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f31b0efcae47f271590d3428b191188ebd42644d2d14e912b686f17c81ab148
MD5 62cac1c2163215f8aa8aed6d3ae73627
BLAKE2b-256 62df72224ad52074fe463b0ef1920fb7951662de2472a0a823ca65ef6bea8362

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83176709eb372995841d0b7cd36f51b28e83455c9339d55da39e2c0065b572b3
MD5 707e9d8b0f4d672ecb8dcec4d847addc
BLAKE2b-256 f6bed8a516bc50edf5a085d7f4b95e84dac48a9cdb046053fcd86fa47c309bec

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c7de3b32ff431b306f973047c519f9b729888a2d0ba034c6e97d8dbaadcb27b
MD5 9367c6e928e7cab624f7861070620986
BLAKE2b-256 44d1623d009d14b4f2ba3a259b480c092ea16c056db3128b294c7c9fe6e7e8e7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aaa770cb7414360caa107322bd4e9ed0565572ef59ce3d30984b87e093746d9f
MD5 4b9618ed5549e71520b3822f888a92b4
BLAKE2b-256 aaa77d42cb2c83cebbb64b29dbd21ef748aa446c4a633365eec88378b250e046

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5495e0aa38322a8dc1996ae6f290754dcb28ee3e0b555605e178b83d9e90df0e
MD5 d1c132c7ba4eb66c950234efd6e7ee5a
BLAKE2b-256 850557240f65d5fa237276be31dc4a6473e88f69d5684d213ce34de0bbe7456b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b37ad41563ffec29d71add5e276d2d527b0ab3899e269ac2801188e515caede
MD5 9e54e1d6b1d0eeb3112e1005c749d22e
BLAKE2b-256 f0fecd4c9ab8acc2cc19d51382a514390ee366ac30cb9e2878b304db734be4b1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1eb75a3d9c15dc1447bef2e3820fe6c6bac94980abdfcecfa3747e5371540461
MD5 89eed7865c5c055a7f84016b37f10be3
BLAKE2b-256 40a8ea370059d314d601bc38c993ca1467b6a0392586d71c401481490687fc5a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3856d7cca98426c9649e23896bdbc8f0c20b845bdce2581a78e91449a6e4be7
MD5 5cd5a4505dbf9c6a1ac151071e402760
BLAKE2b-256 ca91a3c6d52534196809db5f2101812f81c499714708ed1681eb61e9e4b52763

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5ea5810f02e365023301f6620b736faa6cdb045887fe3072dfdc2f2401a83477
MD5 ae5fa290e4d4b4623cec35e861ec0a52
BLAKE2b-256 2db26c14efb05c4a138d26dbec00e429e4b4bd11260b2979142a825c819b2212

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c856e3d3caf36dfd66e66adb34c73ca1da847e5e2b1c78c71290b5796ad6c89
MD5 a4b6831c5c74fad5326ea62db5b3a281
BLAKE2b-256 597d810560aa7c3421f41eb95772b67e6b533c6841fa3f87b11ff6d19a32d632

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b80fe641f4786691a0aaa85654f5036befe0ab74c9437e4d8ac0b04e3ed1533a
MD5 79da84011d9cb34359837ecc59838374
BLAKE2b-256 bea33d91cb74231602d7786bc8ab1abb03af3ab5a9d006fcca26080492ba9256

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d621ab72b6aa0f72de60511404d223ff0b0bd8004d0061f5d8037d9ae47a81f5
MD5 775b09603103731f48f033d93fe79518
BLAKE2b-256 ba27d9b55ccb19af82c475e014252dcf13d79bae8c68a545001f5c0aacd6dd3c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe6f44a772995e9f93f119cc28213ce68dcfbd2c6508f1a7d0768e5545a4ea1d
MD5 3e9bb44f3399b9a9c87426bcee2d89d7
BLAKE2b-256 5507255817672cacbb8fcf99564c98b1a10fb7aac5873865f755d785034be544

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74970fe9f236da523e4d22c938d75e18d062f8142a8debf54094664098556992
MD5 aa039cbdec73110530835719ed2758c9
BLAKE2b-256 e2df073f762b5c56b1dff026ffe32f0ee5282cc517ae1a1c7b7b2eda30032dff

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 de076ec88b07fd813011f5c9526b8b8b5816f6704ccd16f3aa36d92dbb14a7b5
MD5 d055984a926239467d45dd159970c540
BLAKE2b-256 b85d3fc5d2756a3dbbf23ff99ae33e8fdc09f01229f68df325d3263eef4b7ab7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e18cb32e675aeae2c1e173a2b8993b4d83e7f936cd9cc9e2f8ae90599c8a1498
MD5 7fd6829fc36621dfad0665ccf729548b
BLAKE2b-256 891947b8008947b8b7016828dc081e52626433eafd0aab8b60b436b4850ed31e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f407a0857f035b71b63ba7a81553693df9d20d44fb5a6e96e92fb79cd715e7a6
MD5 ab2f2a3c7d7a43f20e778a11d949b6b8
BLAKE2b-256 2ab1dc2fb85b29c80450c464c8787ba90b322f369fa4cbb844f7013949004f42

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 abe12f420b73d853c572711c2f67ecfbce5d9ebd1c2644622ad98b3dce2ed53d
MD5 3b05af76d046cd922e9a2a02d920e819
BLAKE2b-256 cdbfb96f805fdeab29687a9a784d43159900d40cf1643f93df7c8ecdadff0aaf

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.7.1 This release

50 files

0.7.0

50 files

0.6.2

57 files

0.6.1

57 files

0.6.0

57 files

0.5.0

57 files

0.4.3

57 files

0.4.2

57 files

0.4.1

57 files

0.4.0

57 files

0.3.3

57 files

0.3.2

57 files

0.3.1

55 files

0.3.0

49 files

0.2.1

49 files

0.2.0

49 files

0.1.0

49 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page