Skip to main content

Rust core for Oxyde ORM - high-performance database operations

Project description

Oxyde-core

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

Core Technologies

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

Why Rust?

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

Architecture

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

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

Internal Crates

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

Exposed Functions

Connection Management

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

Query Execution

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

Transactions

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

Migrations

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

Supported Databases

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

Installation

This package is installed automatically as a dependency of oxyde:

pip install oxyde

For development:

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

Usage

Import from oxyde, not directly from oxyde-core:

from oxyde import OxydeModel, Field, db

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

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

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

License

MIT

Project details


Download files

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

Source Distribution

oxyde_core-0.2.1.tar.gz (79.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.2.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (5.8 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

oxyde_core-0.2.1-cp314-cp314-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

oxyde_core-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

oxyde_core-0.2.1-cp313-cp313-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

oxyde_core-0.2.1-cp312-cp312-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

oxyde_core-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

oxyde_core-0.2.1-cp311-cp311-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

oxyde_core-0.2.1-cp310-cp310-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1.tar.gz
Algorithm Hash digest
SHA256 e3cbd646833899e25bad88b35df7c6063028af3ca7467c5b14ec586a952f5742
MD5 e5b90c625ca3a2d04cf0e0354c4f57e4
BLAKE2b-256 31191ea55a19cd0f5b6516693a67d15eba89fdfc50e44e7093978cbe2055ade3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0db3f92d3492bebe0deb7110ebe9cfd222e750ccd2ad403173cef0d52b2f77ba
MD5 124a923990bc4456301b2a74449ed5b0
BLAKE2b-256 ae72c304a43d827b7fbde88fe8ba6fd72bd3f7919bf8289d678316bcb9baaa03

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 083ed683db2fa9ff562440ed01c013f400846eb253decbd37061cda33a5aacb3
MD5 b9f256e0b643a61b1ca3792dd424a2f5
BLAKE2b-256 5557d6f1632823472010e251da95d2fffbcd1cb34194fd1157d2d66d64d3c517

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d2d79ce4b44d4b68c4676580683bb396764396521467f2236131410eaac6477
MD5 17c1f9d0fc5162512a49caa84d337111
BLAKE2b-256 034d940d41679003712712a1de7d379d92cd015139aa59663bdd557e6fbf9e00

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb0d336d00b5fe4cc9b03898d24263d1b2240a80cb841121f895e44753086fb9
MD5 c4e3c859454a3a3c34cdea9e021d048c
BLAKE2b-256 87e780082b209f72a8454fe5c5f46a6e1c08363bed957dbb173aaecb87e119a7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0377162ed7873b2b376f97e8ab1195429176a65078dd20d56a2d85e9d4dbdbf6
MD5 9525b98bae0abc55b0db5129406bab00
BLAKE2b-256 81bc07d8112147ff66059b6cb478473217f5ed8312b4721be7082a30cfcb5286

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 710041b95844c3b6cf23950aaec2b95c91871122d1c4cb24b45e1d41906f6dc3
MD5 bc5213b989a97a31ef81d7744b309252
BLAKE2b-256 d853c5da71ae09398623fd89333667d45f2352bdc4e084871511e6a6229f814f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65ddd95cf036fd9747990fc5e4c2add0f8c11946b326b25e041d1bfd1002e4df
MD5 9d2903457930e74b1c08868e2217fa98
BLAKE2b-256 7039587452bc17cad80e6d2b316ed1b006a98c0304c3e2b0e90c4485e9861f2d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e5d1cdebfa45881ee359399712716ff4a2863f3ac728ccfd9e4e904b91e3d21f
MD5 0944983620f630ef057df9ed1cf9d33c
BLAKE2b-256 d295cdae7360a7449474bf7597742810a7fea57bba807f9f4be6df70cd40024f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dd23ecbfbdc3696e55caee5004f567267f0d403c89ce30c6dd60c45f1a686dc3
MD5 d62d2215e2e06b9806e365c723f42b12
BLAKE2b-256 623aabcb6d71707eb0d7b0ed83403cc89fab5a5bed31e30e4b7652f17ee45edc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d2e24ecb13411e90e160c18c7fe88eacbb9e9e47bab523f400b3af6fdd10c93
MD5 3f2fc76bd6847e53011076747e6668a5
BLAKE2b-256 c63959c2ac7e32cb800fab12577f24205bd4aa2046451fbb2d335ebde3e25ff2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e354997ce4236fe1f174ea99299e9020da37b6f4b452d66a5b52000ca75909aa
MD5 7d3ed1084de593dc1ed34c2b8af1e84b
BLAKE2b-256 33a150452f8d2249692c0dbc1fbbff008801e8d8bb3210adc1f9c64ef1d916f1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1c3c5b32da81d1c1c23ea1b4e25446676340fc34ecb00f3fdcd4e14732153501
MD5 aa267c1263cfb842520bb1d49f35b65e
BLAKE2b-256 c313a0795b42515c321a83a8a68d044066325a94dadfe2f2829cce4d8d8833ef

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 928a8a91ee7928898f23bcd0646e1dc3fff8dadb8e091d5a29092add4a33537a
MD5 1333bc090ae9e4d29dc34bf91dcebb68
BLAKE2b-256 0b231060cca220d565305849d418616e2530c9e95024797013abc50bb78544c6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9fa0a5a8eeedfcd30685769e8a5761f1741d12ec8fee5ed1ac80b0f1de8a098
MD5 8586aa5c5d50c879281ada284905facc
BLAKE2b-256 fa9ab5cb353301e4dda2072a7e9938855efc7d6e7698e114cc5889cd893d75c9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67c474738a5cd4136702aebc4500cf874c6e9ae7356b6a396ac98ddf3a2a788e
MD5 ce6af2ac94a3e9cc1a2e33be20576f88
BLAKE2b-256 d46c20bbf72908b37a32b1f3a62ba412680bf2fdf314cc2c32c7ea37d627e784

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 070af4e8e8ae6072fdd0af64c7382ab37931909c4b96a1a048d363df0aab95ce
MD5 f9fbb05176b850bff9fbf98d405258ac
BLAKE2b-256 a78fe436a1a4726c8eea0baab430990ad6247b9a3190d57dd17f6ea07a900418

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 598232432ebd114a520be84db804672f58f31546ccd1a8a04d964ff760b5b587
MD5 e5af1866a323c2207edb3de8ea584a6b
BLAKE2b-256 a0eaefa1c41d242dc55ac8e89d3464c116d0f48323fdc93db12463d53149cf55

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c87e0eaf23d25dc0ec218ed26d721edfc6dc86e4929c92063c30a0527d412fce
MD5 7c049d39ac23a1471a8a3f003929fbd3
BLAKE2b-256 3da29d55af1b8580e1c63a9f097f256ad788a470ce5f0846dae58e7e4dbce9e6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 43d0ea51f87ed5b5d548e585fc0d1c3a990d96bda95f5aea01bdea624844cb82
MD5 2e4f248443262ba73eef2463a37c1768
BLAKE2b-256 605b8c33e5a479e823f0e68281a9c3780015d8eedb4a1f9facf6181035174636

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0b3d8942e41ccc564acd80bce58ed0d2b5c2eff444e99b04bf83d89d5898a5d
MD5 7a8a7bd53134a9eecaaa54261d508de9
BLAKE2b-256 9a7fb2046b009f7753cd5d1681ea02f2e51eddbf8db8e56d0fab1225fb8e71fc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 194abf188444683aea542955df26be9c4684e7cd56d9d00d686173bea22d2161
MD5 1c0d142362febf0452925a701521df4f
BLAKE2b-256 27e17d3ee7ccdc6437bdedc8c0a3eee9704ae5750c2c43dbb450f96090f97395

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2dfebb4ac162ada7c069ab2aa17f4158022bfed999e00d298dc840e6473eb248
MD5 115d203091095e905c3217075498cc15
BLAKE2b-256 857d1164ee011819e68deffb487dea59479f1e094b5431203d9f610765f1f72b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c5ad11702f5f18a082c338749359665846854e3eeb7e80a397c850453f5979dc
MD5 45820f665439129aa71f503299f8162d
BLAKE2b-256 a406fe39a952f0f62adfb19e5a9bd76c7a4387d32a5ccf4753b225e3c97daf72

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1cc1647a6ebcdd3948855d494cf68c255e94bfe79c7afd2ad86ddf2293b31f5
MD5 5aaa904dc25b9e31367353860b688d34
BLAKE2b-256 344fb5874d11a8042b24a387f97692947292af9181a1554d4d93c45fdf3fafe3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c523a03d831ac8e3bea2532fb4723b7c504784b1573db16f1bc7e95235ca6d3b
MD5 f2c0b9ac74a012350567cc9f6984e046
BLAKE2b-256 52e984927d90ad2202e2b1e12c92cb41e0fea49f54ac324d04543a4186ab7a8a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3b47ab4a7a477cba28923d7c2d3bd95fdd90d77cda8de0dc4298452b40f15c2
MD5 0cd3a5a20b132b6ddc69f823d1157fcc
BLAKE2b-256 f2b3569adfa3b6ab960a5088183004df20724bf0a0c34645dd91c839a7b9dfce

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 037da7e151f4ff05c4e43403cbce1935da1fd984524e661f2c5b743b30e5b618
MD5 a31ebf3802d31e46c768e9e7014ce5e0
BLAKE2b-256 aacd61658a84e89043b198e244ccae14a1d13cc176521de6d4ecec5b06470feb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 04394fa752e5716da584886da50b14e90f5c8fd8054320b4e7cb3be213fe8ee7
MD5 610e43b6c3c24da1932ee9c64f931066
BLAKE2b-256 35cd013b388909d92c3f8dad63acd800c163cb5a45d858f78aeff2702a0f2f23

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 83acd0de85d61cfde44673199f5a9ba2168ce08347fa7a53b4bd05fbbf0e3722
MD5 e5bbd1f9e845e6928b6a2e6cc6da7328
BLAKE2b-256 f7d4e66c7a0e3310ee3fc1431fa28d35018bf3532c8eb3d3fcec3af75e0b12f3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e2257f5ce9ed1d5bdfe4c534600d9251690b7b8cdf4df25b9ae103d7f205be1a
MD5 17ca60e69d18272c780a65d7b7577e0f
BLAKE2b-256 132f148003319be6ac8e1a95f5d156e34135c241ba0f553f07775b2629c2b79a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 faca1674d6d46129ebfb9be8094dc2f5df6a96295af900afa99c2e2d130e55d8
MD5 e2abebdd17c73151d0c489bb9b320a6b
BLAKE2b-256 8ff7a8fe07e04a381e5052c91256e0f6e72e7f809d235cc72be704cd1aea5b5a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 961351d36a75c26524cec48c62c906c650e8e4de9756a40dc291d545c00939d4
MD5 d8d2dc50b2fe25c7c75121d3e99ea686
BLAKE2b-256 0bd68051844c897fca556b58fca23c28d2ddf8813ee42f5e8cd5b3281eb84897

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1f7eaf16797ca26bf63843b6a759454956e9d59251825d5188077eff81aae46
MD5 cb67b4c772bcee6288ce35b23d1558c0
BLAKE2b-256 30528032a1320355ccb5555a4288d0cc4eb96ba6699f74eff08186aba05e953d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 73e2c9836ca2d2a96b0e97fd65926d0884e8b2d5d7656fbcade81a82d1e47a0e
MD5 fec1e9cc5bb22fc219801db8b2404994
BLAKE2b-256 a1e12947ccece5d6d775a1271a3f852af1e8d9e5ba9ff54a7ed9403a96c6fe1e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7d7bfededb31820cced503da8a50d3050e84ffc83a24a4543d7539f5b8bfb0c4
MD5 3a32ac11df4805c0090f80fe2329df13
BLAKE2b-256 0b6be38799b260317c6b571cc8380b4246b2988ff5911204fec48b740a7f644b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5455e55e49d861f3b0a760bdd191abf45ac9cdbd261979a9bd48289d0a4006ca
MD5 5409b3223c6ba0e744b8c6767ecd8f60
BLAKE2b-256 9b7b145dd9fdc8684de5758c8b59f70d9fd0c529736d4574aeceb2707f7f0c74

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ddfdce4d542c7c27cacf67849e1ebf238b0f35f087ae6d9eea8aad9fbd20e086
MD5 1e7df53c7c38e2155030570080d71349
BLAKE2b-256 08961cf581bea7258c2056d254271f03c253f069e119a4ec847a50e5170deb19

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5d8b92a1f98078bf909fe4c9c3a99807a9cd35a6938bd5c3c6e404d71b92e4e
MD5 a8c7449d206cef5d3776976f6354283b
BLAKE2b-256 024c6f96ad4e217a6bcf4064386e9dbe225ad59f0b6d387fe5c6f7d16d9f8697

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b3e06882388a15d2974406891ca55d078cf6e64766aee196037307e386c3a86
MD5 ce4345ff460e770dd79e0cd86f8defe1
BLAKE2b-256 f54d955226874e466c41f26e6f010a927f0a7d0bd6f62da9ad4107328950afb3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1668582e1178d4fea9ea4d7931b0d95845eef4b12e3f172b367d0786d5470272
MD5 960c03a3c3df1ddc63af2f4efcef6fc1
BLAKE2b-256 2b31d92351de7861d12bfb5f722533f6ff6d89eea967ebef5070735fb8ef9b62

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 35767bf912fcaee2c2e6bea7a0fed03391dc7c495edd3b57ddc6a60dd2ae5d75
MD5 aae6da96ea63e72a0233e8d46db99e7a
BLAKE2b-256 a54719b732b72f1b4570713f93ac48a09949117acf61d6125e4d0468525b4eb6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 96ca3afe435e33f61ed3767a7c17b62560575d481c701027ed064887a6816f4f
MD5 8d5ee73ce0d5437c82bfa5ffbf005110
BLAKE2b-256 658c4b9af0e3328b09bbc784660db44169160ccb615862b442eace6ac7ead6de

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fbca75fb6e4202437290dee2b7e0444e1b297ebd4253a3b035599c2be4b05de8
MD5 492345e831286cdd63dbab3225708adb
BLAKE2b-256 cfac50d51051d61b2bd4b715cca96586000c6ee9b5ac1daaffb10515864e40d8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 99c846da9b3c0919e77a516542abcb8c61e0ba208ceaafb3f1e767f057f25e5d
MD5 06b82d26fafb21b559c51b1528490706
BLAKE2b-256 e4b5bc49cb63a31b4dde728e8642656e7d3c1434dcb7210ea8f28a4f0b78829d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b74499fdfd809c0d70d077c08914d1b3d0d7817e37720f4789d0c4f71dddb95
MD5 e369b8378b30fbeb4bdcd5590485c33d
BLAKE2b-256 337dca6da0da748de95236557514ed65165c5ef0e524bea62644134507892455

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a88be1f8f09fd2381b4cd43b6c4659c501122ff05322d6baebfc6fc4f79b2fd7
MD5 730b5517d6e0c6da25433e345d908c2f
BLAKE2b-256 177380043dfd8fa837522a88952376f4f06c90c9e45246a40a505b7c306b8c00

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7413e2df7b8e0004a7f83ba479a91831a311cd8aa71ad2e2f237bfd33355a342
MD5 6b1fc113ce679c721b81e1e5c11723f4
BLAKE2b-256 02fb7855b5dd84d03adf9c9a7b418b44f40ce0d28ea0f85ca1b8fb0e15a2051a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oxyde_core-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2bc41a8334324873590ffe07f887cdbecf6395aa243cb1381d53e5dd1e1114cf
MD5 49dca9b8a00c58aa8d9e6a6b31049999
BLAKE2b-256 cf076e942f563825c2a71953bb2955d880b95ab5a135d1b87007fd62613dc433

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page