Skip to main content

Generate GitHub Actions workflows with a Pythonic API.

Project description

yamloom

yamloom is a Python library for generating GitHub Actions workflow YAML with a Pythonic API. The core implementation is a Rust extension module built with PyO3, with Python helpers layered on top.

Installation

uv pip install yamloom

Usage

The main goal of yamloom is to never touch a YAML file and instead produce them through code. All of the possible allowed keys of a GitHub workflow are implemented as Python objects. The top-level object is a Workflow itself:

class Workflow:
    def __init__(
        self,
        *,
        jobs: Mapping[str, Job],
        on: Events,
        name: str | None = None,
        run_name:  str | StringExpression | None = None,
        permissions: Permissions | None = None,
        env: Mapping[str, str | StringExpression] | None = None,
        defaults: Defaults | None = None,
        concurrency: Concurrency | None = None,
    ) -> None: ...
    def dump(
        self, path: Path | str, *, overwrite: bool = True, validate: bool = True
    ) -> None: ...

Every part of the constructor represents a key in a workflow file, and the dump method will write formatted YAML to a given path. The validate kwarg checks the produced YAML against the GitHub Actions workflow JSON schema from SchemaStore. Jobs are given as a dict of Job objects:

class Job:
    def __init__(
        self,
        *,
        steps: list[Step] | None = None,
        name: str | StringExpression | None = None,
        permissions: Permissions | None = None,
        use_recommended_permissions: bool = True,
        needs: list[str] | None = None,
        condition: str | BooleanExpression | None = None,
        runs_on: RunsOnSpec | list[str | StringExpression] | str | StringExpression | None = None,
        snapshot: str | None = None,
        environment: Environment | None = None,
        concurrency: Concurrency | None = None,
        outputs: Mapping[str, str | StringExpression] | None = None,
        env: Mapping[str, str | StringExpression] | None = None,
        defaults: Defaults | None = None,
        timeout_minutes: int | None = None,
        strategy: Strategy | None = None,
        continue_on_error: str | bool | StringExpression | BooleanExpression | None = None,
        container: Container | None = None,
        services: Mapping[str, Container] | None = None,
        uses: str | None = None,
        with_opts: Mapping | None = None,
        secrets: JobSecrets | None = None,
    ) -> None: ...

When use_recommended_permissions is True, job permissions are merged with any recommended permissions provided by steps.

Note that some of the type hints refer to "Expressions" (more on this later). Furthermore, Jobs contain a sequence of Step objects, which cannot be constructed directly but instead are formed from either scripts or actions:

def script(
    *script: str | StringExpression,
    name: str | StringExpression | None = None,
    condition: str | BooleanExpression | None = None,
    working_directory: str | StringExpression | None = None,
    shell: str | None = None,
    id: str | None = None,
    env: Mapping[str, str | StringExpression] | None = None,
    continue_on_error: bool | BooleanExpression | None = None,
    timeout_minutes: int | NumberExpression | None = None,
) -> Step: ...

def action(
    name: str | StringExpression | None,
    action: str,
    *,
    ref: str | None = None,
    with_opts: Mapping | None = None,
    args: str | StringExpression | None= None,
    entrypoint: str | StringExpression | None = None,
    condition: str | BooleanExpression | None = None,
    id: str | None = None,
    env: Mapping[str, str | StringExpression] | None = None,
    continue_on_error: bool | BooleanExpression | None= None,
    timeout_minutes: int | NumberExpression | None= None,
) -> Step: ...

In practice, most workflows use hardly any of the keyword parameters, so most of the time we just need to define a few things. Let's look at one of the example workflows that GitHub provides:

name: learn-github-actions
run-name: ${{ github.actor }} is learning GitHub Actions
on: [push]
jobs:
  check-bats-version:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v5
      - uses: actions/setup-node@v4
        with:
          node-version: '20'
      - run: npm install -g bats
      - run: bats -v

We can replicate this in Python with yamloom as follows:

from yamloom.expressions import context
from yamloom import Workflow, Events, PushEvent, Job, action, script

print(
    Workflow(
        jobs={
            'check-bats-version': Job(
                steps=[
                    action('Checkout', 'actions/checkout', ref='v5'),
                    action(
                        'Setup Node',
                        'actions/setup-node',
                        ref='v4',
                        with_opts={'node-version': '20'},
                    ),
                    script('npm install -g bats', name='Install bats'),
                    script('bats -v'),
                ],
                runs_on='ubuntu-latest',
            )
        },
        on=Events(push=PushEvent()),
        name='learn-github-actions',
        run_name=f'{context.github.actor} is learning GitHub Actions',
    )
)

This will produce the following YAML:

---
name: learn-github-actions
run-name: ${{ github.actor }} is learning GitHub Actions
"on": push
jobs:
  check-bats-version:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v5
      - name: Setup Node
        uses: actions/setup-node@v4
        with:
          node-version: "20"
      - name: Install bats
        run: npm install -g bats
      - run: bats -v

Notice that these aren't quite the same. The most obvious things one might notice about the above Python code is that it's longer and more verbose than just writing the YAML directly. The main benefit comes from type hints and function signatures which give you the set of allowed keys and their types without having to wade through GitHub's documentation. The other benefit of this library comes from using prebuilt actions. For example, we could have written the code as:

from yamloom.actions.github.scm import Checkout
from yamloom.actions.toolchains.node import SetupNode
from yamloom.expressions import context
from yamloom import Workflow, Events, PushEvent, Job, script

print(
    Workflow(
        jobs={
            'check-bats-version': Job(
                steps=[
                    Checkout(),
                    SetupNode(node_version='20'),
                    script('npm install -g bats', name='Install bats'),
                    script('bats -v'),
                ],
                runs_on='ubuntu-latest',
            )
        },
        on=Events(push=PushEvent()),
        name='learn-github-actions',
        run_name=f'{context.github.actor} is learning GitHub Actions',
    )
)

These custom actions contain their own nice signatures and type hints taken directly from their own documentation. yamloom provides a curated list of actions that might be commonly used, e.g. common programming language "setup" actions, common GitHub operations like working with caches or artifacts, and common third-party actions (like maturin to build this project). With these building blocks, complex workflows can be designed programmatically. YAML workflows may contain lots of repetition, but actual code can solve this with functions and loops!

Expressions

GitHub defines a syntax for expressions which are enclosed in ${{ ... }} delimiters. These expressions range from environment variables to references to parts of the workflow to repository secrets. Expressions aren't actually allowed in every field (in fact, some expressions are only allowed in certain places, but yamloom doesn't check for that yet), and some types of expressions have operations which can be used to build complex logic that is processed before the workflow runs. We've already seen in the example above that contexts all exist as members of the context object. These members have their own sets of allowed fields, some of which represent different types of expressions (StringExpressions, BooleanExpressions, NumberExpressions, ArrayExpressions, and ObjectExpressions). The latter supports dot notation (as well as square-bracket access) which can be useful for matrix strategies. These expressions can usually be cast into other expression types using methods like as_str, as_bool, and so on. These also support some logical operations (comparisons, equality, |, &, and ~). For example, we could write condition=context.github.ref.startswith('refs/tags/') | (context.github.event_name == 'workflow_dispatch') to run a job if it's from a tag push or from a workflow dispatch event.

Custom actions

To implement a custom action, define a class that subclasses ActionStep and implement __new__ to call super().__new__ with the action name and options. Because it's all just code, it's fairly easy to distribute third-party actions as Python libraries (or by extending existing Python libraries). This repository is also open to contributions, and I plan to make it host a more curated set of essential actions that can be used with most important workflows.

CLI Usage

You can create a workflow generator script (defaults to $YAMLOOM_FILE, .yamloom.py, or yamloom.py in this resolution order) and run it with:

yamloom

You can also point to a specific script:

yamloom --file path/to/workflow_builder.py

This script should have the form

workflow1 = Workflow(...).dump('.github/workflows/workflow1.yml')
workflow2 = Workflow(...).dump('.github/workflows/workflow2.yml')
...

Right now, the script and associated pre-commit hook just run the Python file at the given path, but I have some eventual plans to add to the functionality of the yamloom command.

Pre-commit

Install and run the hooks:

  - repo: https://github.com/denehoffman/yamloom
    rev: v0.1.0
    hooks:
      - id : yamloom-sync
      # args: ["--file", "path/to/workflow_builder.py"] # optional
uv tool install pre-commit --with pre-commit-uv
pre-commit install

or use prek:

uv tool install prek
prek install

Third-party notices

This project vendors the GitHub Actions workflow JSON schema from JSON Schema Store (Apache-2.0). See schemas/NOTICE and schemas/LICENSE for attribution and license text.

Why Rust?

This could have been implemented in pure Python (the original draft was), I'll admit, but if you've ever worked with YAML you'll know that the Python libraries for it are awful (mostly because YAML itself is awful). Rust has a nice YAML crate, and it helps to use strict enums for YAML fields rather than the optional type hints in Python. Also, the trait structure is much better than the amount of subclassing I was doing in my original Python code. The error handling is also much easier to implement, rather than having a mess of validators or some pyndantic models for everything. I have plans to make this a more robust tool, so Rust will eventually come in handy there as well. That being said, using a compiled language for a string-building library is maybe a bit overkill, but here we are.

TODOs

  • Docstrings (I've been a bit lazy on this)
  • Tests
  • More custom actions

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

yamloom-0.5.0.tar.gz (98.2 kB view details)

Uploaded Source

Built Distributions

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

yamloom-0.5.0-pp311-pypy311_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

yamloom-0.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

yamloom-0.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

yamloom-0.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

yamloom-0.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

yamloom-0.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

yamloom-0.5.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

yamloom-0.5.0-cp314-cp314t-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

yamloom-0.5.0-cp314-cp314t-win32.whl (1.9 MB view details)

Uploaded CPython 3.14tWindows x86

yamloom-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

yamloom-0.5.0-cp314-cp314t-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

yamloom-0.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

yamloom-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

yamloom-0.5.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

yamloom-0.5.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

yamloom-0.5.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

yamloom-0.5.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

yamloom-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

yamloom-0.5.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

yamloom-0.5.0-cp314-cp314t-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

yamloom-0.5.0-cp314-cp314t-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

yamloom-0.5.0-cp313-cp313t-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13tWindows x86-64

yamloom-0.5.0-cp313-cp313t-win32.whl (1.9 MB view details)

Uploaded CPython 3.13tWindows x86

yamloom-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

yamloom-0.5.0-cp313-cp313t-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

yamloom-0.5.0-cp313-cp313t-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

yamloom-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

yamloom-0.5.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

yamloom-0.5.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

yamloom-0.5.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

yamloom-0.5.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

yamloom-0.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

yamloom-0.5.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

yamloom-0.5.0-cp313-cp313t-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

yamloom-0.5.0-cp313-cp313t-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

yamloom-0.5.0-cp312-abi3-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12+Windows ARM64

yamloom-0.5.0-cp39-abi3-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.9+Windows x86-64

yamloom-0.5.0-cp39-abi3-win32.whl (1.9 MB view details)

Uploaded CPython 3.9+Windows x86

yamloom-0.5.0-cp39-abi3-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ x86-64

yamloom-0.5.0-cp39-abi3-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

yamloom-0.5.0-cp39-abi3-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

yamloom-0.5.0-cp39-abi3-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

yamloom-0.5.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ x86-64

yamloom-0.5.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ s390x

yamloom-0.5.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

yamloom-0.5.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

yamloom-0.5.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

yamloom-0.5.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.5+ i686

yamloom-0.5.0-cp39-abi3-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

yamloom-0.5.0-cp39-abi3-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

Details for the file yamloom-0.5.0.tar.gz.

File metadata

  • Download URL: yamloom-0.5.0.tar.gz
  • Upload date:
  • Size: 98.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0.tar.gz
Algorithm Hash digest
SHA256 24e8db57e14d0d2f582ca6a547efca4e077b8c8fe4e16ff7614328801a0bfd33
MD5 af3d487eb57be9180440f2068b2f129b
BLAKE2b-256 7fb8ee1d420389d65017339ad825669b05e60994fe06cd81cbb96c9c6b691126

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

  • Download URL: yamloom-0.5.0-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 469e3f5c818757b1282690c7fb51a6592e3eded961a46b3518c7f1ca2a0e5f2a
MD5 285a9e00b888fc057ebb083ef2534dc8
BLAKE2b-256 0f3c79f08c36ce7b086374330e866fb5084bb8156d5cabc8471b295962195d4e

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for yamloom-0.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0f63a19d2e3d8571d33abb2544e6b7807a667cd1d3d405d108aef63f3932207
MD5 8e30bdede22e3942369af8ca7e91d674
BLAKE2b-256 48fc98bc025043db7d58490a1ff9b8387c322e084c8b808b7c7bcf2c142cef8e

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: yamloom-0.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db86ef4df851af76547dd2fcb19751a9bc2d5702ba7c92014516ded324e3d142
MD5 71ea967a89662cc20ac84ef377809f08
BLAKE2b-256 6230f946c527225ec7a8eecf5ddd402518e14e7072ef0efd5203b5834701bd7c

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: yamloom-0.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 83bfe3ae61cedd2cdadfc0f70b9cc4dbe7845ae7b2d7ff0d06f8a12ee2a24b4a
MD5 95086f156de2cab62a7e23ae5c3567a8
BLAKE2b-256 a11c9eb914d768a0fe62217b2b60f0e0bdaf5f0c946d6ebdd642a27abc7f5cbd

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: yamloom-0.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88908a7a762f450cfae33ec97161b6664f2edd1210207df1c04c45f3ad108c65
MD5 7ee3e645fd82864299e598816c2f47ec
BLAKE2b-256 5dfbaf65df66d219dcf2106226b29e556cfe6e013fcb2d64ebe953571bad0a13

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

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

File hashes

Hashes for yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77d333b62e9f24ddce505cc53959d792f4ba1110ca13f795b7cf878b853ffd57
MD5 24ee317f19e0882c4c78b7fc33a68c49
BLAKE2b-256 6263f9e17f2d190e93f887ab5b969902b27562503db5dc7755589b824f25a2b9

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d09c026d61d9d846e09dc615a52fd5fb044b1ab10cd2174e1f941a5a836f0e9c
MD5 be031a1627ada24a900b0cf7ec73df46
BLAKE2b-256 88a183709d5955114b9b0e791c3f4001058be7d26a7e8e5d50267b28784336b8

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 00dc31669626fc923d0274afc508fbb98c95952cc5e548c6b99afc0d1f43eba6
MD5 ff16b6bd2d57b42e36cbcc208c35078e
BLAKE2b-256 837a9868836445b5549d49d024270e84adfc224c0af039d781e41be9ad518292

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ddb7d76caec1a75675d1ceb43c6ac40d32b6531008beade22747675f3f986f4
MD5 cab07c4b2c5dc3eaa75671f696697c95
BLAKE2b-256 caaf6d604e7728561bcbf2d26b63fe64a20cbaaaecd66de7c6571fd7ddf9624b

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

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

File hashes

Hashes for yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 573e9a76cc6adc06a41141e0c24bfb5d792f448c2c20e4b51fcbbb939ee82425
MD5 b44de39c4cf410c209be14fdc8769d5c
BLAKE2b-256 037b0a72b12d54466c5bb93e42f692e42f8619fd1eb33266495cb737b0f2b1c0

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1fe315f12ac88209f2a7380230c1fe4cadae87582c3cfa13ecc879ad877dfc10
MD5 c29cb67d2c7f5626a9b644c4d84b6070
BLAKE2b-256 3a8d1f0382b485d4e5b344daf48d6539f25bd272b1aacfc5ab6f4d8fb93903cf

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

  • Download URL: yamloom-0.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: PyPy, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 593b81b00e529db4c90f90f88e6a0ca97b46e86f789970ddb828c8fae401735b
MD5 13d6d5177035b29a846a50d2b6c8e431
BLAKE2b-256 237992adccbd7a8831cc8a569fe6f554f86b16acfc370d22bd59fb870f56d01f

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: yamloom-0.5.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: PyPy, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76249001b735ea24c1b105b1ee1b5df68b75d88c597167f48396ac78b1125deb
MD5 19395002d6a8825e440b6a2a5486ee3f
BLAKE2b-256 d200b6536d831f17c83b9d4e90fe046ff354f52dc628f66c0cf7b10499e77574

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e4aac8b4cb9a0c4aba0e137847c270246908c4d32f69b02595224fb708c59588
MD5 81a55e4d6b83ceac7b80d7357ee9af21
BLAKE2b-256 10a6b661ba9feb90c5b1a66aa764788514a71342338be72788e8b90ffc53d7f3

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b351de26f54e56ab9cc5cf59779d3a9a6e288b7003f5d2c63715a7fd2353edc7
MD5 17b18873cee051f4781ed58228fe7030
BLAKE2b-256 e43f85c60351fffb1fc086b3406d37d719d8c62c3090a6c6aec41d6053bae65b

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for yamloom-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 740c49275ba79704086e1691fd14ab84e7778a63258ace823d7753eab5f04a4b
MD5 8330b0637f986fca989bf12ad8736007
BLAKE2b-256 06fc795486686c2081337a329fc43346c23b7975b36a416c8ec52307b1d98b5a

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a8ce653466ca23debfae4b895ac16c1a551df3991f0ff0fefcff60aa42287c0a
MD5 750923daf07b253f5126853f4ae7c841
BLAKE2b-256 aee22938e61555f1187981170a698580e594e013dc07aba44987cc0fbd6f1bb3

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e4c2db48dbd0242a26937d850c423a84a5eba20ca15ba9888215cd9ba4d49e95
MD5 7654f24485cb125b0c17cf92296f70ee
BLAKE2b-256 5996bbbe694c7e9b685161e6733dc3f255f9fec05537451bf27468dd98215090

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

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

File hashes

Hashes for yamloom-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f12b0fbe004639a71376b9c3b43f2e7816321be8f46c491f50ea1ffdbc93053
MD5 da354435cdf91b255977123636e9ebcb
BLAKE2b-256 a49e5f1a8e9edd0d1443b679ddbadcfb9bdbb581c8a28e3dae85ce5aa0acffd9

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b535e515786c7a3845c16f9489a00dc608a3d4b4a84e6f65257e39b567e1de6
MD5 d71dbde6c08ff6fe835de3c4ea2ad0db
BLAKE2b-256 3f8d9d65b989c3114b0d9a90bc6d0a219c8c834d654960cccac3ed1a3d1c191d

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5068190aa0b46aeb73bdef56797221235380e5a14bc5f3af8f21c5a03244fef5
MD5 ad778a18a447a00d11c4ec91301828b7
BLAKE2b-256 66a07dfb907c425293d50e9963f31b61fab21226f38c86f4f74a401a002adefe

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 95c4577e3d700911c13ef922929c12e697b48b8a723ffde49caca25cd503d315
MD5 7a177af89f89565cb31156ed5e9891da
BLAKE2b-256 688d358119d9cad526c9bbcb19fee036823a79ef0210062a78c26dd7d9ab8a5d

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 64ccee6a5651c28690c655d8305895c2a945c847380de3732c956ccf43998afd
MD5 ae51492ccb63b330bf019428ff79bf51
BLAKE2b-256 98778f06e50da745d60fd1310ac6c0bd23cd445ed99eaeba9b8882e2d37777bf

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

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

File hashes

Hashes for yamloom-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e5a256fdfebda26629578f70f912c906ac7993c6300d983549546e0eb84d942
MD5 9596e8a9f99d2c496f92e8b56658bcd4
BLAKE2b-256 7948837e0a4363ab74524ba5af8410e7bedda8661a91758496a8f2476646a8a7

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a3f0577c65f54ebe876e39beae18a3a078e9d70165ac567f3830709e9a219c28
MD5 9e458c7d58925073bf3c9e94c1802307
BLAKE2b-256 78b8833ba75acf961b24fe2858224fb00814b6f48a5805809a2998f657220c4c

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for yamloom-0.5.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a522657e6ccca6bd0cfb5fa2bddd5eb50a82c8c75f8c41e33aa66ee59647803
MD5 711761f9dd0bf4615ea36f0527e48c4c
BLAKE2b-256 46862ccc78709a27fdfeaf7f3254b0fa9d4fb4b7c17caf2d142705c2f0cb1caf

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

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

File hashes

Hashes for yamloom-0.5.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aaa0babfc94d3a2ccf027909a995dd2e48c1ed28464e54c9996f5def7d1c6644
MD5 ccec6e6553747444f482ddf240ed06e2
BLAKE2b-256 e5b46c6a5be71430b51f0f9a5998d5a03c65b607edff3397d129d69e49e21cd3

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 c27d0fa5590abe98ffd949ab56d5328cf212ec6d0effc0350b6193bbb6e46897
MD5 2c4a998c108a41950a2681427c203964
BLAKE2b-256 bf6b5b860ed7833236e12164ccd39c8dc3c58810ef9c82277332994836c78789

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp313-cp313t-win32.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 9b8835022cd41f69ad55cc1c130cdfb5bb9ea9beb6cf5982a7742eb1d6425e69
MD5 d3c3bfcbc1a9cc2be5e53033090cc789
BLAKE2b-256 42a06cd9034c1438cfeaf437fd802acb10c237b09f9d97968ab3e5880f52353b

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 008bef24c53f3825a29cfcf98137bd8b4d8de0058341056094edc82f4902c739
MD5 4e5367f4a00da006d0f2869272375afc
BLAKE2b-256 a22780b971355409e9038a3b9801d16801ad03ba0717a3ba1d7f8be6d9040e96

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f2d8b949ffa4dbb997fa5defaa4e6ac93f9e25f64107729b09c8d15fe02ad00
MD5 14380a4946c33988c14b5361859cbaa2
BLAKE2b-256 84633462353f505153feec6fcb4eaec750e1364cedb5552de535b8d8d9af50b1

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 584c742304a5c7c657a56a3b383e48420d62d8b985f1678415498b54bc282663
MD5 4789a50d27beef2a4d2b4d50f2ab36dc
BLAKE2b-256 8b42a43a7294cb0abc8e92bcabe1b5ebec2927ea57354bbf08e747b5f32f083e

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f80a5fc2c1a99ad535b8fde10c1faee736da10f35fd0383e155f589235ff09d
MD5 479351c7fbfe6e675b9913618362da3d
BLAKE2b-256 8d3ed7342c7bbb01f6781ac4987c2938d5cccd55df2c1ef87eeb782a356def39

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e469dc8f6abf6564b9370adec4edc126d39193f0ced820e163dd1b84b3e26a9
MD5 983eff287ca0ffe1462eb8701cd4b6c4
BLAKE2b-256 75feb3519305e4541bdd4594563c0fdc72d2adb9b2a6b026c706944497395694

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dfb978adb014e60d4ebffb5c11430dc1547e2783b6a9eaac59b45b78e82c0373
MD5 21c21c721816e80d6f9905d76a4e30d6
BLAKE2b-256 934f4c799e4a2a616d1a20c2b3241b0407d3ce2de03b2241e83d1ec966df55eb

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1297e353256941ff6d62e946bc8efcd1558b617eaaa6a4bdf109f92cdf51800
MD5 0729b549aaabddde039c6aa2b85c28d5
BLAKE2b-256 2747c45d283ecd2938069ac28a10cbdd3b5db6130dd2081e077ea25060dc8a50

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40b4735cf7bd113796ab7f9cdce636ae35c7611a7a0d46d5a7b97ca019208b89
MD5 782b4dc1d8f6ed12dff371f4c1fdf635
BLAKE2b-256 1350e578f58eaac328e6cc5530f4ea6bcdda280effb4383841604c2936ab7d36

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

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

File hashes

Hashes for yamloom-0.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4ace9ba537eac3d62cc18b51c6d09e1d4451e4b3e57e2d9877e6593390baf1f
MD5 3e208c164a407eaf1e8f9eab27f3d0cb
BLAKE2b-256 3670a85d5911ffaa483673136f7d4bcee6769bf8e59bfbda1d378834494aa326

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e8c7a573d451619d81a21022882008c4c6067a418627f899bdaedafcf8a4c271
MD5 6d7a678322a47cc9aa2bfdab469b7fee
BLAKE2b-256 d23c0e8d8b69d61cfdef305e356e012e14094b6f54d4cd5362efb875881670ce

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp313-cp313t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd432597f904ed919b01a11d78f0d132a97b59f493fb7ac97c29e9229149afba
MD5 4c8d84cc96483a0a83817e3fd5a4bc6c
BLAKE2b-256 5862b0616b7c1afbe33656e3fa6e109a076b4d3fa340eddf7ac133d717f747b0

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp313-cp313t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c699d9df8fbf29d1b365d9a8c797b8b27bd9c21a1c7c435340ae1d730a596c40
MD5 53188c11debcd4b93767cd11f525e853
BLAKE2b-256 2ee587cfcc0830305314338a0eaf80016d6ede3fccc48cf4e2650cb4e7eaf9cc

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp312-abi3-win_arm64.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp312-abi3-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp312-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 433fece60914bb6c600f7f71a3baa672539fc436f44bccbeeb3777b0406bb7a2
MD5 7eee68a93217fef92bf25f73ae4f5202
BLAKE2b-256 678aa84b0bdbd28d3655957b78f56f8fec95994839847e9d1e9626e495523978

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp39-abi3-win_amd64.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 75ce2bb6f87bde0d49cee4befc8d0fee5598fb434c36c53b603e09a8e939d007
MD5 d5b0d193520543c077d14966a2574a66
BLAKE2b-256 0f13abe3c156a21914c1619c86c6be23abb6bdcaeabcf5116d6daae1e9d51850

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp39-abi3-win32.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp39-abi3-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 5177179210bd0f5127d6e7e86b3b515f805fa52a91e687d03b89922bc4c757a7
MD5 25e36db230be2cb4d4add532914439f7
BLAKE2b-256 efc3bd93e641d903e2451df3d6b4989b1ac373d2a8c6ffa60fcb0196496ef2ac

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebb0acdc53c83fb68b8568efc450febf02a82ee88d0d2b31573f6fad487e1091
MD5 73c9cceca6923c481d3faff3111000d3
BLAKE2b-256 a5945e20fbe85cebd811a5f8c7041cf04e0b3335fbd106a1a0f8fd7a6b9c4b0f

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp39-abi3-musllinux_1_2_i686.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp39-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 44bacf679dac8a6ca3617b3b5749449c8c272ee711492f848a099f598f8dce5c
MD5 2a7b83d4217b73d26271cc3f8f72df2a
BLAKE2b-256 41010e4f793dd9d3cf3237fc7f7b846931d2c1f8eef3d082cd894cc8e1f7b063

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp39-abi3-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp39-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8d602883a4896bbeb8e31a1419fdb60df45fc1cb321c29b67191ecacb40755f6
MD5 c24ed978bf4b77d03a24f1ab2a5dba91
BLAKE2b-256 fa81239ee6d8e90ba9054b89d3f5aa9c4eaa848044f6206a3eab13f991776e77

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp39-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp39-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b28925131de044126d732ebbbd7021d965b21fb4c9ab7472b857dde1ad58f68
MD5 c31d37a71ee711e14edfc68439eb25a9
BLAKE2b-256 26cf5afd4470353fc944245995ca5f59d23466b4893b245fefdd63079cb12bb0

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 813b425b14cab595f17fd347c1efe966a33acb57eb300634f90c8d2dfe1585fe
MD5 f240e9b12317b621f88a388b30273c26
BLAKE2b-256 3b8728fb058939949d9aa8bceab8868bc895c0b0127314398e21c5d3d07b7281

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f3bd34138c9f236a24632aaaf4c20be25ec83c3b74a917d1f5933f348ce5a0b0
MD5 6e15cf74702cd55668f88621e6ce191e
BLAKE2b-256 c4a86b550cb027c1a37a4ffe872d7d508ac68f407ef9bdc5afe5ce4fe66cd6d0

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ad7ca998966ba923bdedaa997c152605d0bcb8d3372ecdbd08a2708ae82314e
MD5 082801132a6fa659d1e2f29a98d6ce26
BLAKE2b-256 dc93ec9ef52338bbc6103e82b64d828f21a3054d530e7bd160e119cf50db0815

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6a4a4e97a42319e6c37bc780c66a9fcfeeb999824e6f9b7f3747daa0c46f6a04
MD5 d9b4e457da9ea6178dc5c56180f6f5d2
BLAKE2b-256 da8a6c456d88b86a063c15bf02121b0df66eb63a243ddead16e4bf7d9412d920

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5c92239ad12350ccf2c371cf97f1f68c8e9fc5934737909ed66288f8d6753b6
MD5 0c7bab8aa8bcc756965035745d1e5f20
BLAKE2b-256 fae8912204bd0c16c049a5bf4bf0205d881240de7e4cbea51fcef07036fa27ad

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 37f27d92437b96158dc8c43a65898ec88d3d22a019ec925d500e8f8a9c525262
MD5 caba591cc81c946e760456da79029dad
BLAKE2b-256 67cf400acc12b10e25ffb2f4aa0b3f04e7453344358a4897a4c525cfab98ab36

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp39-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9f0f2a81071950db66ab1e6467ff006caeabaabb94ba5a4d57e3a223c819adc
MD5 b487c33bffa0808bd054328f340a8cca
BLAKE2b-256 9367e9d45d8d3e31d729fd3bc2603d17832250bff39d3edcf480cc4df97b4de6

See more details on using hashes here.

File details

Details for the file yamloom-0.5.0-cp39-abi3-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: yamloom-0.5.0-cp39-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.5.0-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 526780ebe5b67da2f9f1dd1da19a509210792711d9cd12fec3327c6ccf14587b
MD5 b9e694a4b6c56ed84c0c7929ea464dfa
BLAKE2b-256 02cde4829d62ea9a1b484aa82e52c697a6b7e7513ec13d4a1783bacc1508e0c1

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