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.0.tar.gz (79.6 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.0-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.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

oxyde_core-0.2.0-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.0-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.0-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.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

oxyde_core-0.2.0-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.0-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.0-cp314-cp314t-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

oxyde_core-0.2.0-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.0-cp314-cp314-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.14Windows x86-64

oxyde_core-0.2.0-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.0-cp314-cp314-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

oxyde_core-0.2.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

oxyde_core-0.2.0-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.0-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.0-cp313-cp313t-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

oxyde_core-0.2.0-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.0-cp313-cp313-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.13Windows x86-64

oxyde_core-0.2.0-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.0-cp313-cp313-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

oxyde_core-0.2.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

oxyde_core-0.2.0-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.0-cp312-cp312-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.12Windows x86-64

oxyde_core-0.2.0-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.0-cp312-cp312-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

oxyde_core-0.2.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

oxyde_core-0.2.0-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.0-cp311-cp311-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

oxyde_core-0.2.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

oxyde_core-0.2.0-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.0-cp310-cp310-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

oxyde_core-0.2.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: oxyde_core-0.2.0.tar.gz
  • Upload date:
  • Size: 79.6 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.0.tar.gz
Algorithm Hash digest
SHA256 414b42409e462603a64c2bb7b822be72645a2ceb11437881cd997174766b00cd
MD5 0cb3f4b8a541888f8b6ef6d184515b98
BLAKE2b-256 207e67b2b3c80adc6190299ce301ff8fb028d500521441a76916ccc7903253e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bb4361094169d38715b8493a0fa93b3128fae66901fe2bbea393b2b6203205a3
MD5 7de3bed738f276ff6c0cc7e2be44508b
BLAKE2b-256 3691f1886f23e3df15562545ec108a98a781e3daef6f5d52908dc2590ca58733

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 147babfad1553a62f1fe49ca54c9e3d470dae534b21b66a0e6e9556def70f1c3
MD5 d6b36a524f2220ccf4b06bfb6d2eeb6c
BLAKE2b-256 fe931363172cc64cae71ed29e492f2c6c1de9da444af4dfb2b77eb40ccd7704d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 490a69de94b27e792a21edda435b1d85b35e51df6c7426d541c3e863f314a5e3
MD5 61bf51b632b40c3aff9bfd6bdd1cdcb0
BLAKE2b-256 98768947c88a65063b6ad1db35210cccd8ff51aefb29288aec411caffb3ea5ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 193824ebd2555ca519f33e71bbd5569ba395c3b85df4e51fcfaa35e688841f9e
MD5 46303e05ca812000f39fe474e5b55f30
BLAKE2b-256 0c38a34f037e4e5f3f4d90f16847cf70eed72c4e18f57afc5a88df9fb957db5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a58af5fc258c4962a6c08a1c5d52d6d03218197d43210879d99d5f3ddf6669e6
MD5 58b670998b66af96352a1805536d4001
BLAKE2b-256 5c2de9d4f45c342fc271a0669e58e230467355ac25ac38f535ca692ad73481e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f0a80b34af43646e80b81201a74b712fdf881cc81a120a1a1f080c1afe6a3109
MD5 c115ae3697abfe688995c3ea8f6246e5
BLAKE2b-256 63503f117351133f1179420a0830148ccf2e011232ad751a7404f5ba7941f13f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20daa286c2ff1f0366cf2d539448f2eff12865e1a507b2d38a151aa55c831cb1
MD5 0f4dde6a18b64ef257fac6506320de13
BLAKE2b-256 f2e36f6f423448b4a9e4c6cc2b6d349f5fc5fbc191278a64e41e2558679a9d5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d2ab195945ea85881523ce89d1827812d8d61a8754461cb8706449b8a3509f67
MD5 4184f6dc29c3a7a68f2575cd55c2d4ad
BLAKE2b-256 d4b4a4d449c539c1efa18dc87905631be6636657af505aaae9fee2b5b1b59b24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ea876b10354b553308e2115b49ba25a696de5adc8174eed62293a0707c29eb4c
MD5 7635136f9fc99b01dc4953d94883916c
BLAKE2b-256 9b13e0b9be3402b0ca2559531e2427a7914b18605d82bb78f27e9cfddcd925ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 214b2b513b3998064f1bd0b142e0188c210ae4ef9e843a3095fe0ae510aa5aa9
MD5 f602c3e3e7405e913959203199d5e4da
BLAKE2b-256 38f126b2e4eaf7402dd401215e9baf3fed5721d512d250914ec7182ebf1659dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4d4138c573f8afc153fe1eb267b8cec51b3ba8acf882fe5f89f43867b6f3946b
MD5 2943b5e8a5128ca806a91cd33de3290c
BLAKE2b-256 b2d9eb8009e827b3fbf760c1ec1b0f58e902f2cd43285e2fce11eb21c0ee2fa0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 95544b8953c39529d35caa6d85eb0e67dbe891e8ef1b9a4f14a6534a5c5777d7
MD5 ca22bbb58d1fd009c2a2b7f5c5114047
BLAKE2b-256 766f0aa0256c304b5dd01bd1ba3a9a3ddcee61ddbf40cc8c679d0d9659ad5509

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3aef0af38954c579b322e9ac7aa28077427af9e812febf299624dbf10b664148
MD5 fcc17991e0847cfd355552d93a978722
BLAKE2b-256 f7e34e30eab905c4ae7e77d05c9ac5c0dc836794c250ccfa2480d97c6662dfe9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a926e9d6aa17dc7dbf28831ffde5f9ae37b756356df8a4672e502340ab7e354b
MD5 afeb20bb256dc1987903bbf3bdb9bc46
BLAKE2b-256 e59ecda563b9f4eddf273597e8aa4379559aa470987f8a3cf5a2755ca49271e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df1aa28bd681bc35722eed2c73d9f3f200d5b13bd88ee40cdfb9833607ed9a4c
MD5 2f3a2b7890dba5748c40851881b67f21
BLAKE2b-256 79679bb5788ded5aefedae988f5ac6f7a8158cc0d67ff9dcd11f0fd7de870acc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33c450c35a508ff31b1a820f6272ec7ac12333a772b9407deceb3aa8ad104924
MD5 7c69e91de23d0591ce37bba8e9ce4253
BLAKE2b-256 2b3a0ec6fc9ca408fee0865ce0e9aa81b7a257376d80b3eb0ac7d76b7adf9582

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d198109c1edddccb1c168094ff178c15aa423e7305770e3be7758b0517e2d9eb
MD5 9cdafdc03f9cf79ab62c964346c75f25
BLAKE2b-256 4ebbc14a657cddf50f1c177be5e90a3f696b5dc2c798e0eec643b9d9a6700d06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 10e04ac0c46ce5575b5525e8487f50f9f65bc547cb4f1bf98e89b1b0fe14b514
MD5 ac4698cacdae86b226ed622f5296f62f
BLAKE2b-256 8451522f0ef3a20ad4e7d71f5ca589cb5afbb54258e9adb6c4db561581d2ed36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f4e5465e6d47da4777b79b823ff53f668ba610186bed14ceaa2e396f47745090
MD5 025224ced3ee04685c7fe9802788c3f6
BLAKE2b-256 667637ad6dcba9a0d43db0d929c5a3e3e57ada6fec6d7149faac387d1fc7d09b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9fd9f37a65d5057ad64c77c1b1b20e12fa44f40daa304a157682132a9ba35207
MD5 9fe2598981ab7c609680b14c4a7d7140
BLAKE2b-256 998448e4ed4c2cebe56398502844c4eb2b5a99d308a319d6d0966cc0008ba9d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9c3d73f5818812b462dcaa7a4a53ee53967df595583a70a17702803a59521ef5
MD5 f7a39c9dba9a1587ee8cd0cede785c1c
BLAKE2b-256 d17f10ad4c5e241790e7a5f7d66a69392272eb35aff4df319ddfbeb29c70abf0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 93138afb4072e9fcb332eefa253fad727ab65e8108cbbf5d9d201cde4fccca44
MD5 71582de2681556cfa1f0371dc080fdcd
BLAKE2b-256 4485c7546fb62ef95aea2fac9addbfb1c56cc1a1298fa37b10063a4d567159c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e762781a843ef96db90f2ebabbdb6eb43616a6bdeb3a04cc2f9d6735513bd6e4
MD5 1d4515aab40e513262deeec0d861bde3
BLAKE2b-256 c739fc58a53731c277670e4988f7f7decad1078b905ef37319ed83d2ec5d915b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd53ae6e2c9cc83194f64c275e391332d8ba77b785dac37f7c58d5b3c1d1acba
MD5 2a78f147c4f8a6322008b361770a66f5
BLAKE2b-256 030405dd742ceebf9ade41e408be9f72f13a26d83db85604962fdcecb606d4b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3bf50c2ff69e8243eb6f38408b536a80629a2a5f564fc051187211c0611c12dd
MD5 32cb6edba66e7dc53d84b4146ffb5861
BLAKE2b-256 77c01be2bebb1c4877281fd3cf82a0275261bf10bac9584c9da986c89aa6dd86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 769b986822c5119a8ed23cd13dd4e16eb71961a46b34d99f7e31ff73db7964c7
MD5 c1e39b41e529890519ebae9c8d563675
BLAKE2b-256 c4e5ac02b639a5ee142b0909f8e0581a99e1250c34dac85c42e905de7c23c48f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a95556d2299959739760e05d951ceb6e4af66cedf7e01b55da1b5fbc16d45cb6
MD5 6f11d7792005a886c8fd0744a30ebec3
BLAKE2b-256 08625561fdbd442e72587626e8cc81710d22e88da087465e8a005f3c40866c9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d1f9f24f64f3105ec4215523e7ae8f6e118b8fc202764cd23c29a4ec5fff4d35
MD5 5e5b09f32381a30f6c57d7c2e1038104
BLAKE2b-256 c7c2a511bdff927ae7226fe0f9e0a54ee83121056158a702a68c22e97b370387

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4254e8b898f0f33777ff225eb77c52d168658cfcf9f9b53bb8ee812e5ef4efed
MD5 76befae93f96d6501ff191a2db15341e
BLAKE2b-256 f95734d8732207ac6ed38e7640fe48807c51bdc041f060be9eb26baeb61f0bf0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a771695e2bbdb398ff030f29cc0ddcdb634523ba13b75d17717341af398042ef
MD5 f45ac40c9ee9fd85a59d375e91f86711
BLAKE2b-256 078bd85875156bedb6e14205fdc3301091e80d4d11b23e20d3c18a2deaf17600

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 316f6fad50ed88e403af77a1fd374d68ec23b9e48deebe4f7a46089d194f780c
MD5 661b7ff18617acfde94211b1276ada87
BLAKE2b-256 ed36f5d85df54c2bd135fd4c7bb1aaa087641882a18149278739b0d54229490c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 355de6881c3cd88092b29499ea3fc841299e3008273caa56c8b4442445b4e2fd
MD5 e976571ee6501505dd2ea4bb3280ef60
BLAKE2b-256 5607e57ca2345691db33c88c4c69c08072695269960762979d3e42cccf9948c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c031b965471d05df6c4d0a6e487d9d729668a9191d35f60e5839e1c54584c88a
MD5 98a8ca001ad3258a0396ca22d355817f
BLAKE2b-256 b9c2b9d39f8b47385fb1bb5565d64c0ab595f99242f50cf31febe303e34d47ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e510edb145b98fcf05f1c29c1a5403e093cae62c1d87c867e54d1df99b86c23
MD5 59d02fabedd4cb7ada17c16c257464e1
BLAKE2b-256 d1a9ec9e692afd36a859d95b45b61b7991e1d748cf7e10bd9d3771276f38e5cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 428683d3dbc06e41d26f84708260aaa9191509591b41fe6788c198e2ade18a5e
MD5 a00ef422f0af94d07d81fb2225639a3c
BLAKE2b-256 354166fe2240a861f0681d48f49c21e35ca095bda492729f4b824e595bc355ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7c52718f7025ad5d39d36d26f211b7eca10de5f9e3ec57840389bb690b955ab5
MD5 f190241b0a18b350f2e321dbcc817e90
BLAKE2b-256 a5fd260a38d4710a7b4053592273d0f2e42315d75012f12beaf5c3499f8e684d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 86979f97018ad981fe200ff8fe757847f884b9103d44d7f43070ecc0880cf56f
MD5 a53dcba686f1337fca6767335b9943ba
BLAKE2b-256 9128b8f6dfad28bb17a4ed1226babee3faf466da7593a60c87029cfa26210518

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf054136d54282b3854f13e03bc4b02f321459e6d084f64fd2113ccc32e0d6e7
MD5 df9dd9f234ec03d5afb1c00f5d101efb
BLAKE2b-256 66202b7fd68059d19458014c1a3948e1c6f886be71752b4eb5cef7741d048ce3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a3dc567403201bb2b802181375393e495f51fc2c9c6760120019c8b2b24e2e3
MD5 3ca14e99294f527a532e97c45dd53d5f
BLAKE2b-256 165a58ae1f107e8e1ac02084f9d294af094e3380f4ec4bcc5aab4adbf6cc5d11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ceebe70519815315e9b2f6aa8a450251f57e567c51800da2a8777de2ef7451b0
MD5 5755168a5c74b0bc572b3894722181da
BLAKE2b-256 330aec37684a2147ef9b66f132389ea0ea9c3acd8ae6a138505bd1fd1286f4d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d2b09f6d61634a910956ee3e9e3850fcb0b55f12bfbbd54ae36c108a4a34dea5
MD5 a5a9fe6e68beebf44ae8ab26e9b3939c
BLAKE2b-256 0cc72fde4482c33429129f93e78b5ddfb85a135baacb357ec4ccb8a64a21601f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3e388063f4ea774bd89f1aa6637c4e8e1191a752284a2aa16672cc86c86944c3
MD5 90c41e56459125935de45a563d27c688
BLAKE2b-256 625be33e036c89dbe8c0e8e693a826c48ae4328146b462fb2ffd7a4019fc9cff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2ec5efa893e9333709b04ff5ee21cede94f16083c56e1ca0e5aa67f0dcfcbb8a
MD5 3722c80bc01c5491f9abc272e4bcc28f
BLAKE2b-256 b4eab57b5105f0b92d7005ca5511f0f7ce0414fd40c366231f2b46058202e9db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5d04331441223575a73f30363f418c20bb53f759d877c49b11a9e3c7d95c3314
MD5 b11c367f7c90c883d244755fa3cf5a02
BLAKE2b-256 1cfb67fd8598ee0dcf2e9cafd6b1f5f76ba14c508b8a63d6e270815ccbd00a10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d486da4c54b34bda14c2cf7e95f6388f8e64ffb57805887e73ff97d54674a8d6
MD5 a8e6a57068b00ce3c53ecb284763afda
BLAKE2b-256 054b0f271b7a11580fa073cd56676dac5316c5f0fe00a34e1a07a8d622528b71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df3bfa97d367bb417f8666ae915feb7b0ae1815bd92625e96f9c749a6119cc11
MD5 5a95c6672327d031f99dead856bce6db
BLAKE2b-256 262c36aec59b9d2541610f572e7d8548163f4b8c6dd4d50fd9e60cf5b86bf86f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 524b8bc4f018854e1c29d9b7652c1a51e3e4e9fc510b0924ffc45ba3aebe5a27
MD5 d430f4342804d00bef745cf43b37912b
BLAKE2b-256 2651e055044785758aa95369deee9d7912315eed0875cba20fdc343de52be465

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.2.0-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.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 725149b0e594e3b1bb56a5ee68dca6a8ebd6657b6dabe3190ab02ebc8b0911ed
MD5 e242583cecb85e60a6d70c0e15a9dba7
BLAKE2b-256 a10bfe5d3c87ca6303fe4620003af56e7e9f36abcb2b8a7c371adf8318478f75

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