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.0.tar.gz (115.8 kB view details)

Uploaded Source

Built Distributions

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

oxyde_core-0.7.0-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.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

oxyde_core-0.7.0-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.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

oxyde_core-0.7.0-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.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tWindows x86-64

oxyde_core-0.7.0-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.0-cp314-cp314t-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

oxyde_core-0.7.0-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.0-cp314-cp314t-manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

oxyde_core-0.7.0-cp314-cp314t-macosx_10_12_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

oxyde_core-0.7.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

oxyde_core-0.7.0-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.0-cp314-cp314-manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

oxyde_core-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

oxyde_core-0.7.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

oxyde_core-0.7.0-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.0-cp313-cp313-manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

oxyde_core-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

oxyde_core-0.7.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

oxyde_core-0.7.0-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.0-cp312-cp312-manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

oxyde_core-0.7.0-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.0-cp311-cp311-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.11Windows x86-64

oxyde_core-0.7.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

oxyde_core-0.7.0-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.0-cp311-cp311-manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

oxyde_core-0.7.0-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.0-cp310-cp310-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.10Windows x86-64

oxyde_core-0.7.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

oxyde_core-0.7.0-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.0-cp310-cp310-manylinux_2_28_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

oxyde_core-0.7.0-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.0.tar.gz.

File metadata

  • Download URL: oxyde_core-0.7.0.tar.gz
  • Upload date:
  • Size: 115.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0.tar.gz
Algorithm Hash digest
SHA256 a4ad8ac76cd026c1d7bd02cc8d542e06af55a2a394383f4d6304897bbdef87a7
MD5 273af8b8e677272b5481280476deae9d
BLAKE2b-256 c5351c75b96db63cf9334e20efd3d236cab33b38871e955e9b92466b0449f0a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a725810977d7f2d3c901a7d731162d1f71cb27899599d8119bfee6b7ade6854
MD5 acabf1a86460e57e6b2927f6e4dd1b96
BLAKE2b-256 9f2ea3548f50e84997315f4354be08689e5cda1bfd596fb6419021aeb8366d61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd4b672cce74daf1b7496be68e4f9d4fb3f7a5941c544b9787f020f7000d57b6
MD5 d202b1bfc2bb88e7e9979a179aee911a
BLAKE2b-256 cd434516dfddf7a65ec4c35e571cd5f5921a48343fc008525c5561143b98fba2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a82d0c1d8c398ab465a316b2d4291a8a21ba981386b29be770bf0e0034da738b
MD5 c7a8c93bc823793be4f33e8951ab9256
BLAKE2b-256 ece57c3d059bc086310c508806069a56a51fdcc5837aa91a04fd62da33ba3209

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 628c80a9dc377a4741441ea8b998cae9de2977e8be5acdea87f49ab1879c4159
MD5 792c4f234f3d7dcbf8422a1c0a4e4824
BLAKE2b-256 3f51a69c54b8868468f6ea05a9006826190d307ca65ba22745b79d0884b60149

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5913e7066f814eba9a4e8b3c8f54deb8d4f2ce137aa7894010f5bb4588607a88
MD5 3361e9599d8e9b17defcf4a3e53d9d15
BLAKE2b-256 f9ea790e1938efb44c3f722fa88b6aa76daf394131ee74f02b406e39a75cca0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-pp310-pypy310_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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a833f5257095b482d0d0b71876e535d5917abd83279e9bc0996ee7b7d0bd827b
MD5 4d508bc866170c712919f9a0fb268c6f
BLAKE2b-256 5f291d101b2831b412d5c1e4e6134a324d54a191a31f71a8796c2a2eb857b304

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b9a9dc06203ce1ca98135068f9632231d49271d0e0ba04585659d6ab5a720086
MD5 a78df648747fc61d332169c5e46e25dd
BLAKE2b-256 531f8d703f30b68e58fd902f7b9e6c0cc68124482dda01cd6269150101ec3d21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f2d6c9e26796277cb3fcc396a6f6ff07dcdf13de93c13461aa6d06eb7259f13a
MD5 92c41045fe29f35b66af16d2a2ad217f
BLAKE2b-256 8b67b9d45c1e44ff03d005ce95c9a71e6cfadca57a57d14b26bd066b5703df87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e3786d5ce60e835035fb68e367a642f8989debc2e19ecb767313aa2e058c035
MD5 079d2fed2066db33676465548931b8ce
BLAKE2b-256 081b7f36e715b36c6b110a21fe17ee7dc7e453d875e4dc6fc4766ba44a3a6522

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 739528005c04532442eeb84c685edab0865a2c025c89aa37835a2515b7e13ab6
MD5 2fe5290d087d21a5a28f8c10673fa7e2
BLAKE2b-256 7582c69473f4daec1967466c2705199d3aae6eaa2bfb7b9cb0b64a3fc2742f84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3632d70e96d20f4572c4fec7b8f253c5add8d5ce41e629cf24d533d6692464c3
MD5 0f327814d34f04e76c49a600b90ef59f
BLAKE2b-256 37a1a8fc727f19e2665103551b7c687290a61caddfb58b1402e1d87893b1c143

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28dc678adebf76cf0d9fbee399eac0e397928b593033a58476f0ba8d8abb2519
MD5 0c3b0c81bfdb9931625a6bfdaee37ea9
BLAKE2b-256 f7ed52493e958e2a44d8ae0997af77e2560c41919cdf1eb6926c48305c3b8832

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f9e465f640c7db9e5b8f4db5e0566087405866e36d78bff3a7248c69facc6cf
MD5 3de12c0205d7050539530384e6b7aa75
BLAKE2b-256 0fff42bf545871d9b855ff5fc4a4c3eaea806161c99dec5775278520021c6725

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1dadba1a0533eeb6fefc20595ce3c15fb34f9aaeb4e3c3ff68707d8a3dab4c8e
MD5 916c175e61a647781fd91ddb2345bb91
BLAKE2b-256 5aec8390b2c818a27b4b35c2f0d97369c35a4aa8540c4ad720703db9afcf9650

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fe4c4f17fd25a7788e5d9507c0245f4c2a7ee0070c75c9825547c0cad32bdfa5
MD5 782e6bf1b68d580e5067d20c18cb2c28
BLAKE2b-256 d5698dfd6e0c16ca675a7619346310c108fdd6675bcf681d2e09a406c2f2bf98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2cc76b15a1958dba653c41dea563164240678f175666af8cfa9d20eed52a1f8
MD5 e239a779a396b1fcd6e8c08b4e70b12c
BLAKE2b-256 473e21f834bfe4d192c7eca25b4db9a50456a1b754e3d765e7b1f30f4ae62a5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13adc3d94cc59967cb24af15f35ff0f9ba4e19401bef14627a4d91334f2b8ea6
MD5 280aded4e46c833a60eebc9ae39be81c
BLAKE2b-256 a32d7ef9b4011fe1036f7340788e4771d7d801fc7dad1ac4229b67915f16fa4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0dfb7fd4692451621349c8e137b502a8cf7323d39335cd7ede11b2feba2054eb
MD5 77c8b60d91b3f10af91872dbaf68338b
BLAKE2b-256 fd32c96ae07f7560394534e3d438fa61612ea0fb639305196dc06dd382e775ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e23979715f87753cea8b2aebb9f658d3a6b1da89b49550d969e5c8585bd00ea
MD5 f6a8ddb242644580c2faaad477fe5d1b
BLAKE2b-256 401318d960fe7dc0dc3360416a8bf6d309e0b26ffb12ab12dffa1bec34b9e5e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60095cdc8f8ea8a6ce97a0c2614082ab8f7eb5088fac0f2aca4ca8bbea423b15
MD5 97c32fd66e05782ef77f38e21a22e9d0
BLAKE2b-256 d46e24911d6e37c6a4173a88a3f90898202316109ce3012996d3d39f85bfd7ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 29a6997bb00124544fdfdf5a97ab973e27864e95c54e5ef3e3386a27347279c7
MD5 533f026d27311351a4df6d74928818dd
BLAKE2b-256 3f1a799c22a130f7d2f760b714fa52fb43f41697964c8ffce2127537e5f242ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0f4eaf48ae87af423eb80b8036dc9d30e0e50a18b9be38957fc69ab35086b516
MD5 1755bbc2e9dc4abd99cd3db5573aa372
BLAKE2b-256 e25aba871efe6539cff7ee75f42caacec3cfff9d923470ba94d3fe50bede5f55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c61fbb458865ae73e4824e123e8f800b671af56fb3333a9cfa3c0349632da553
MD5 2054da551033f457904b99075ceb439a
BLAKE2b-256 7d877fa85bae6804c290d78a4bcccf48acfec780de066acef64ac01d1730998d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e28335952ed3d7aeb9de631af8e8949d7b06ebfd3899222f1dd4e75ce14d085d
MD5 efb3507798155a0adb3f05fecfa3f99f
BLAKE2b-256 cf6b43e6f5cd4e3d1bf598ccb8a845bce9a24f4ff52ef561df5ac9983ee37097

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d7f442b0332e1cf214879fb7a2f3b8ce562bb13612ae635a637e2012117a55d
MD5 12e6b0e9a951ee9f5bcf2aa47f5ee58a
BLAKE2b-256 a3bab0f5c2543a24d8b2f734dbc9093c66ce2db448a1cd9d655d6ef699ee5b91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13118466c2bd992fc7427aa2416df52d6aac3ad5afc03c6f2afa98f2f9183718
MD5 6f45fe9ffd8c6c04fcde99c8dad780fe
BLAKE2b-256 365caf6deb41f8654096e4165435056a7f4b822037adc403a02e93a5e94e4a71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 274bd2f6f5ee648f5d07a22e7b4908d90dd34bf1a4914b0a43a2c902b897f7cf
MD5 f8ec43af88b176eba60e1e477cd0d32b
BLAKE2b-256 1e3b777edbb2c1c95edfe0c9dc73ffdcf1a30d62875da0b17f9ea104634cf21b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e8eb92cf09ac0409d18b808666db1fa87520e960a2ed778843301572139655b7
MD5 8eaad7f5b482e545646f6187ed7f673a
BLAKE2b-256 a62feb90e636d1b3b2b1e9b7a0a77c4a4d7d0a77acc4e205863a679c07e194f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 822e78180ff1a2b89cdbd30756fbf28baba0f519bf99e95cad916529f118144f
MD5 f8f526c91c75b448aa46f39fc3c09aed
BLAKE2b-256 cc46faa798bdc3062280e0a7b0bd1a03477f1e6e705c3588b1f0502b7a7c8a48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5636c70aca110f7a91ae88070775cd7845be88cce0f4bccdf7f089203e618251
MD5 e3b70cd6cdc1262919e64d6e65117c29
BLAKE2b-256 2e6bb1bb79e409bb0c4fd6760dcf3c1631ed4f791f5daac18ba37bd17fc950bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e25f6a3f6277cc5c551c2fe23b0d2b0b3cadf766011e31f534ba69b16ae8c4f2
MD5 1cbbdd1ebe7b59d53c953b43bc6cf298
BLAKE2b-256 46b0dad30e754fd7a9c73eaa974b83839bf57474d2c559b017979d41d530f84e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 de7e18cf832517a9b15f83fe09a21711f2b26be513a19290520d7737ad72e1a2
MD5 a1277a42cd7bccefd041d3051f5b467f
BLAKE2b-256 2e3821525d7917c99221caa1b89f618a17a8a10d54ab52d92c90d94cc206b4c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76e0e61c78fa2dc59f90f0626bb131b81f74d6a8e1c112dfaf17b98d7bc31f7b
MD5 ecbfb0acd7a15c55e2b44b3f19004ee7
BLAKE2b-256 26cf0864dc92ba6c9f8f44984421d78e69fc96d33e46c1d2507b753f3d90b24e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 839fd6db207fe8dff1f0cf732ec189bc6fa9458082f5e9ce0b2d1b956023aae1
MD5 78f1fb74f2051b086ea5492c07fff080
BLAKE2b-256 a2a1d8c10757ef36e1bcb4a404d55eb0f61420b00dbfbc2a4a572ca90efd4e00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ed5925a5be7225c891cedea6bdb34f6e8092ab18353cc7ae664716686f9dab97
MD5 f59b102d42773bf7da6e5a26721dd6ef
BLAKE2b-256 1d278739242b31f3e1387f810b645fdcb845b6f78c10def5cf10328f6d21a6b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 36bbc009517a1b0d54de2861636386d0008b08ebe306be227cf113eaf659af6f
MD5 e3dddfb387ffc9ddd421bbfd86c4d590
BLAKE2b-256 882130c2411b9b34de833ffc99eaa96be645b84db167cdb8d20c5f4a6c08dd1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ecc9a30544993875516778132913823cf4fcc2e2eab881c638458223e02ea02e
MD5 582aece2e362a755336b63815a8454f8
BLAKE2b-256 1d32a4a306156427b48cdc570a128bf2c03e0cb2cc65374606d1db6189a74656

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e9da854eae34224a42990a477c77beae047bdd2f2a4362059ba899aa0af20e2
MD5 62a0cc6fa615ac516033395ba6e4f4a6
BLAKE2b-256 a13266382d2f85bba738c20b734c717182c122decf7d32bd1d92dd2b0fb4ee18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 46de86b0e8a6491fcd1063e15e90772d0f15b486520157e69ed53a8f106a77fd
MD5 1d7ddf1b92173d99c07c91b180003b3e
BLAKE2b-256 3270c350678fd9684597488477ab6034bdbf528bce448175869952379449ffac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6df292f170886ae2865273b3c2f22737d81bbb16c1b054c33200e7fdeb0ed3c
MD5 24e235346983ce7fa62974dd9b8c6ca2
BLAKE2b-256 4c2b7e9c608abb827de3961bb5b5d3f8276deef17601350b5430ed54b921d4a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 023855ceca2af4f1112bb732986dfa069dbc58fbccbb3ffa5af3335e79b330f4
MD5 141bf2b188dacf8be47ba4891089b028
BLAKE2b-256 44745b6d9d7c60430b4ef842ab1e9c7d8259b4fc1ff1c450518ea17faef335c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3ea6295371e67c1310e4e32501280c1145252a3d97088ff9ae68bb3553a18e60
MD5 7aec6df9c9358fa6e5f7685ca5bf7853
BLAKE2b-256 8b70ca78da923e133cb889f30bcf8aa563c641fcf6d0c1b9c7a73d957ee8cf86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 35b57a63f70cadd34ae7403224bb6bfe726b8d8863be76b339e14f9de2964b59
MD5 710b0c1579ef55e1245fdd2424f83d88
BLAKE2b-256 b013ec4ac8d255f07fdc25672fee63aaeeda93a64924a4a614f6961d905514f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e33809cf03ff46b21e33dff9b4d08787090dc22d73cd57a187231627a4d8cac
MD5 cc38ab9f917df2c1ec7d424f698944e6
BLAKE2b-256 a75bdfdf92cd56671b3ad9106e2b1115242338347ca3e53a0dad3889deda1c66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e42fed2b061534b26b33d75f948f3427a7bd326ef3da9310edbed2a9c8676b1
MD5 0d9e55c4c339d15a928575204f0cc8e1
BLAKE2b-256 1587cbfe87f609d3172c0f6a14fcfd02a284b12aeef2f54f9321f2a41f9bf1c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5c5f98af296c83ae0293a2b8ac90effee44eb3b51782e12337177b7baf08c65f
MD5 625dc3ce5a34d0599faefb8ead5bdb68
BLAKE2b-256 8e7154820e6623d07460137dfcb6b6ffea73f3d7c8e73884e445913ddd119f84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cfeeaf3dfd19b1b731ae3291fced5fd4348b3ff9fac89acb4e6a6dc128a3133b
MD5 5c3a6e127209cb6a3d05da93afd22cb3
BLAKE2b-256 0a51165d7ae9163934127bd6db89c9fe097701b528c239a975b6e75eb4f36900

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e69041b006800cc6d825091092ab5e482c42537d35d0045ed95788f0ce0b053
MD5 cd0e7f42a20e3714b149aeab1e525d80
BLAKE2b-256 a4a686eb7b611d58b5ae2c7caa9a449e27eca1f9526bbd7011270744eb8e90a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.7.0-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"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.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 169fca693110699c4dcfb1158ed6e16cb913073538bc63e1eadd75a5b5b393f4
MD5 e270b8a91f7230c590e51fdcabead7a2
BLAKE2b-256 fc1cbc839d7eeeb96e96ba1f5d6006079d8e91b589cfbbdd4754a5344275b726

See more details on using hashes here.

Release history Release notifications | RSS feed

0.7.1

50 files

This release

0.7.0 This release

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