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

Uploaded Source

Built Distributions

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

oxyde_core-0.3.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.3.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (5.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

oxyde_core-0.3.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.3.0-cp314-cp314-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

oxyde_core-0.3.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.3.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.3.0-cp314-cp314-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

oxyde_core-0.3.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.3.0-cp313-cp313-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

oxyde_core-0.3.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.3.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.3.0-cp313-cp313-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

oxyde_core-0.3.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.3.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.3.0-cp312-cp312-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

oxyde_core-0.3.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.3.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.3.0-cp311-cp311-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

oxyde_core-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

oxyde_core-0.3.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.3.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.3.0-cp310-cp310-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

oxyde_core-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: oxyde_core-0.3.0.tar.gz
  • Upload date:
  • Size: 81.0 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.3.0.tar.gz
Algorithm Hash digest
SHA256 152abef187a2d709ec6471fe50da37d045c4d4bb7c23809fa90b208328ef93bd
MD5 de65d512adf339aa450d058aedc4800c
BLAKE2b-256 aca570ebf7e16b9a547875ea34ed00622759af8cf9e064abc7cf9f583c93e93a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 67297bd2e2fdb146bfb7d7f56c45831551d049376321bb60c603d41a1f0039b2
MD5 6f36f7d0f0c5de2c2d1817cf2cec2d70
BLAKE2b-256 2ad9639e20a9a607a1664265449ac376c3d29806db86f244c7bee61cbcd481fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f22028a24fe2d49ffa41e10d64e19d2fbd8dc7fce861046d8996c8b9a572756c
MD5 88317689f1c37882cc626399e045c1d6
BLAKE2b-256 07879eaa0f8cada2726de3c1b41de35a2b1a2ebc6e94e96c329d0c5f393a2cbb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d83443b7bd40d179220902569814a05bfce96e16c3df72ea8e60cd9fe93b160
MD5 8989e2a0555ef78999f4806ce78c4e8f
BLAKE2b-256 80923b524b0abe43e805e7bc67452292ea93650066167c85c858533eb7470b00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4fccd1b941a961cd8e9287aaaeefc39944aade9fdab1accb246beaad292066e
MD5 50c0ace82b5f8837f16f3e9aa9fc46d9
BLAKE2b-256 f6e3a26a384b9edab514653b6e090b11bbdc33e7bcc91ecf00c07ee26100259a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 029611a8abe73ba0737a0aec753dfaca9a5d965b9f7a826f458305cf2293f963
MD5 d0e8060a8ca1aa6cf55246c0329d3806
BLAKE2b-256 220ba5a000a9beab6cfdccc8714af3774f628036688b708ce5b961ea833e5a0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 109d21e331813a39266ddfc90332f5d58578473edb74391dfc2169ef981537e8
MD5 43bb88f6e879705ecb1f6e905a809ea3
BLAKE2b-256 a875c35f170a66a82b7f860d74af66fecbcf4531152c2935a0cccec711af73a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1e19fcefe77055adca58683a6900ec84bfd66ed2ef90d2a7d5c5100dd05642f
MD5 0ad827f34354fb388e0787b0746d53a8
BLAKE2b-256 31a0b268705d3894a743902ae89b9a60261d28e10fe9097cca9470718adfd689

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 931ef62c585e29da3f8bc403b80243c111bb105fdf9eda687d549554fc0294ea
MD5 385da193585ed3be05b8c6fcf37e6c9f
BLAKE2b-256 56c32902232950dc3392c9f27b55a5310cd10530ad2f34723787ad10a703898a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c33e5cfcd65f4d6336a38ce7a62e2dcee60b2cda770f9ad8093b414a7fd75941
MD5 c0d85a97c8f88415c1e2ac3fc143cf6a
BLAKE2b-256 cd6768b73505fa53f95ce5f52204ec5818292b7ff19b3eaae829d469448d1be2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c273b5858d6204fb9f76e56bcd716fdd0ad366ed4d992ddda81c7a231df5bb1
MD5 034f94f66c789e3af206ca7629bd44d6
BLAKE2b-256 99fc618fb3b90bc35f9aa35ff2a3dacbfdb65de5bcbae70d18122d375c7df3b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.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.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 96ac1d4d787525fda1ec2c39a3b0d0ecf3b1dde8596fedc04620ddd0fae0191b
MD5 d73c0f3d3ad1ff86d6ce1073d167ab05
BLAKE2b-256 648f2b28c599ea1350d6e42d795118db975e19450e1894d9f12a540a411f1c95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 67014ae9854e71d6f7932fc56712d7c1219a7a5998c6a3728040fb879893f7d2
MD5 3c8e7ddd1ae72dfc5abfa17efe7ef1e3
BLAKE2b-256 ed6fac41b7fc49c56cf5d5111f85e979027d3303f1c9c10314ae02f7d040a154

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2593c9e9eee3c90edbf2bd3fd150db0e492f1b67e881ec05d435d4e6bc58fd89
MD5 7f77ad773b4c8084bdb751d7f525489c
BLAKE2b-256 3c9aeb937c82b19d1f36c0e7b3b424167ea9a8b95e734ded3f9d05a6ad6031ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d15ec0d50f48df3eda2b444339b1e2a67ee09dadf50ff4dcec738be960524bb
MD5 0c415cab80ab59654bca656216c00030
BLAKE2b-256 82eaae2861301df71358f3df5e2848abf47c8ba732a57558ba8434a42fbb46c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4faf10dcdb7dd29ef43371bc05e4c727a5d9ff8b8e1db2b5034ac87829e414c1
MD5 03402fea63b283453a06b52c7e9b8115
BLAKE2b-256 c263377d04ea91ea514819a41fae6bc450fad0f42c96dccba637a08627ca96bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f2c3b7e49e567e1ad06ebb9ac541c6cfba038c054917c712a5c5a5f6a9b95f2
MD5 3f7d844b8f5472b8aa65770c08886aed
BLAKE2b-256 11949c803c848b48f27473958c02ff301fd3ca5fc8ebf8acf5d889bbc0a43863

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.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.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e0cfa64a81c3d414503dcbd9bcc373d9b588afa30d5ee077e54b275532e5710
MD5 e1a186f73152473ff060d298fcd9b094
BLAKE2b-256 a653c1c8a79bf2581dce3c10d2b957c7114804da0072e65531e07f03e76c3fde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 376ab3dc6260a0cf9cc119a289a7ff8c0683e6a436724c1e4c5eb947c48cb0a6
MD5 96ad9b122bfaa38e6f47f117fa915d92
BLAKE2b-256 90573058460c7eca372a6b4a3de50c42674544f00f37b96e894bf02baded4341

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d6481fe0b89022624239e387ea97502e96515c455634c5c911877d3fb9069609
MD5 223cc8adc37b83996d0cd4dc1ffa8f68
BLAKE2b-256 ce7557d121e4873c46498dbd9e26ba0abcb971d2b9144900266a69cc03ff6938

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86e4c9609805e61323e37c865798ff4250a65de6587b6d277fd2008f20fb888d
MD5 253d7bdcaae840d3b6b9e1f392ebd502
BLAKE2b-256 e3d5255cfe0950f3b66e74315b763528ebeebeef06644b5d5d5faf8342b800da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.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.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9977a462b1f17213514557f64a2fefe7bb14de4a4824a52613b2c5743f140fd7
MD5 db7dbeefc6eea325672e2bbe407116f0
BLAKE2b-256 0cafc859b525bf2e25262bd6a6a32a0dc4dc5787b978376f926f1edb53ef14f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 754740ecd4898a4381d5d59940c2201969ecdfdc219c83cb2f953d70bb0b6d58
MD5 62e03bc4f281b128240358a47d90d159
BLAKE2b-256 8fcc5423aba5fa9ee4f507855ad42c7c8307aca97ba878a85063d7b7b15f41b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 68f9383924208f0ed2efac3d5d9f4988742fa935128bfff57c228a09add1b823
MD5 fe16d85c0c013274efd71a2392ba5472
BLAKE2b-256 8010ed283a2b3b81ac389d5060bed743b433fa5bbf602499c733e406ac2128eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76a47cedae0c5779875a664c49a2dea6cc720021e8c8b5bec6303bb8f8e73c27
MD5 f9994721c4bb88125cb4902fe81d1ae2
BLAKE2b-256 87bd551bf05b2de143b3027fc2eb78b889a8714545a3e3efba8df218357af909

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5edfb8786859106f1eb5ea04870df64c56d327cfa94436122abdb74da0c99da2
MD5 6a2fddd0d2d2fa1cea99221c81233e21
BLAKE2b-256 97ef4283a20c8345c3b5ce8eb6a1547511f313dfd4d6318d91389eda272ee3d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1662b9f2bbc4c50b1e69bbfb1eff78ece3011c7b317bb9571010c17267bd9b0a
MD5 0ad9287d2dab07f290f896a5dd8e20b9
BLAKE2b-256 5bcb5b99dcbbd51f1525e7be2cd260a45d6efe43e4ad2595106462199c60b43e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.2 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.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4ff695b579fc507a055cc4b1904aa208be7c671639b9ac927b839fd04b296c7c
MD5 15da3a8d1d880c47ae453af017fdfec3
BLAKE2b-256 f0ea2303af244f08774bb9d3783c68dc7f9ab40f0ea9fee17b46f494cee98d80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.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.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 21bcc8f2bfbb0ecafaf23e7c84e46c508bff560831ba651044f4e7da4b402a8e
MD5 d06be2521cb8afe3f8a09264b079a9bc
BLAKE2b-256 644091ce20b461d7d01b47300bde5fb4a3ca816b6bb5c146933da27ccfc5cd95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ca4c9be9dfb09accc4fdea25b1b76e32dd649f5ac938ce566bbc2d3e1e29a3b7
MD5 e899e2a5dfb1873abce4e3d7880c2a42
BLAKE2b-256 9bdee0c7caf05ffe418fc86c4a16f13492370dd894f8b4f6bac9d1800fc57789

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6577ee1d1e09a540828f9006850b43f657f4feaaf4890ba348ad019968319e5d
MD5 4500d1fd87d8bf54ef7ee0de43151cf7
BLAKE2b-256 a6e0b1e20c5cfebec5a7859f93082a88e8b8bf6132cc9c99041ce82cdbf816c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4dcd77b93b5869a0ec3a213d839bf3b7aa7b04f610a9dd72edcadd0c22aee0f
MD5 0cb458b16ff5ed0357dc6acfad1d12d8
BLAKE2b-256 cf779f7ce47239c03be431e68dd6692ce6acf33743e587cdd926c8ae74f902f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5f725058b29348e2649a8d522cb043c58e1b6395e0d87239d58fc53208d91cc
MD5 313a4634d3fc64723fffecf86a1a9187
BLAKE2b-256 c5506d160696d46595b0ea01ab0320149dac680a1cb61d839972884cdba0666f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2de2ea2daaf80cafbf4f722cfccd17aa02abfba9fcf387297fc3205bc2cddaf
MD5 fa59d6f1a52810bb0c30c28deca1006f
BLAKE2b-256 76058d9748e3db2bacef4a7391ea09004dd2c270a040ecb5fe4285e5a1654207

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.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.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 49840a857154e3f77d5ed08aa58d0dd065d0bf62ba11bd781a74f1b8e1312b8f
MD5 ec410aa03dbdb4a1480e6d89c2c8cfb0
BLAKE2b-256 c734b2542f62be2fa4d6fe728709604b477a6815fd85c869d9d66eed47d34d46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.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.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d50f7681dd30307301334bd8ef63561af7806e5f260f3c51a2d6362899f19e07
MD5 8886411e76962da6d82efebbabd46140
BLAKE2b-256 8411b6b6ec945c12e363fd9394c7fe12d9f646a88abe17bf82a7673c1f2cbe45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 26f4c1955be3eea63b77c87ba8cf370dd607798e6bec4190ebd777c1653274b7
MD5 0cda9e9be932e7bba7e10dd52c914af4
BLAKE2b-256 4d8b3d52a1dd530e74e8bf6ce49d9baebb2580b37cbcc03d7d48d29c4dce7414

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a5768ffe0bb578e257cf30ebf0649223e0a60a50bfa7f422b7eb16c7ff0c2505
MD5 46f46cb34a7a15497a7611abb3926522
BLAKE2b-256 31e3ff76078ea2319569e8646864749200c45c95aa3b769908cd196d92227f5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2143299cd68bd7d20cac4faf4f42dcb9e58377a5f652a647375f255bcc59b79
MD5 3fe8485728436e95f5a24faedcbe8056
BLAKE2b-256 7c58a2a680f2b78e7531857abaae1c336048de49390b3a327222f528a1b6baf5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e132ea125a707e0024e3409d6ea90b9b413115cacb8a0b2534fbc65262770236
MD5 761a7a7075c73466a013ff6867f5a691
BLAKE2b-256 72c9f6322cf8b855b7c7cd9d32a5be03bc2587ca51c2aad4bce4f73212ad5a95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d573cbfc9609210076286833aa272102cec6fefa7ea900c08ec2dbbe296a5961
MD5 86e83be15e5d72df24b53616f53554ee
BLAKE2b-256 4824b5df7a4364598e45b79f539c9901322bd8d61d6909cc0c9f67cdcf0381ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.2 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.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 699388df9ae2194cce49d9b83b250401d42401b2c18a70494d7e58a7915243db
MD5 8e8bb4ccac2ae7a63da53f89b4c8276c
BLAKE2b-256 7e2a09c2ed6d7b5979647ae7100a646f0e6370953545a714d97207d10020918e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.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.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 72c899829e5572ebaa6f39fd2631125ef13b4253414c93c1b4151b6547e8da7a
MD5 6e134efe23ba470460e2ead1780a9498
BLAKE2b-256 1ff088e10b7af5edfc38cc4d77ec0c5200eb6545bad7378d464270681575a0f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2a7dd27884ef88c40a743444547587795ef555474057f625c85949865e9822d1
MD5 c1f53e54ee11dff9c0933adfb1d440e5
BLAKE2b-256 ce3e5e44f0fda49c97d54b1c82e8683746306bc65aca92fe9e3e60f8b7958a1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d68154b7f4ce95e245cb8161590d10c002d4bccef86d2a09078eca119295b1e0
MD5 c93c3f5a11bcfb73b5e0828b32536bad
BLAKE2b-256 101c1114a7ad412a285ceb57750a469ea8759da96741eb8b1b69f87d41266d8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31e17f25fbf811a6db186feb2669fbf591781ddb52dc4e7b10b733e6d513cb02
MD5 cea67f1edaa34b337bd3a4cf8499e031
BLAKE2b-256 0d392fcc3ac41b3b964c6935d930760ead1a47f90de9146c82d0bc242a6c0a4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b294b4a7a207ef48e66ec25bee1c905159744346ec1900ba95b4f49c32121d2e
MD5 bc5e55bf664bb7debae2d57315f8c98b
BLAKE2b-256 30168b9a962fc51fae34181e89126418e1a48d8b5916d6bd3354d97b92b493f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.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.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59e795d19506f5e375ed8e135b961c1bea1400212a35439f02bbfaafe6a270e0
MD5 1fb1573f2b9bbb4198774d40e8e67a11
BLAKE2b-256 c68b5c6c25d37769514ff3ae818b8874401a7254919121218d1d07f1e9725375

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oxyde_core-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.2 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.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dfba4d045032c8068747815083df86901925c99976153f8341d109e835ae7a3e
MD5 c80a4bd89eb63f0130aac4aa1a3f1aa5
BLAKE2b-256 8aa80a0d65f0540e6192157bdcc109d05d2d43bc4be44d39f658e55245167957

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