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 (neither side overwrites the other; the merge keeps the most permissive value per scope).

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,
    permissions: Permissions | 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.5.tar.gz (99.3 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.5-pp311-pypy311_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

yamloom-0.5.5-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.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

yamloom-0.5.5-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.5-cp314-cp314t-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

yamloom-0.5.5-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.5-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.5-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.5-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.5-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.5-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.5-cp314-cp314t-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

yamloom-0.5.5-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.5-cp313-cp313t-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

yamloom-0.5.5-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.5-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.5-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.5-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.5-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.5-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.5-cp313-cp313t-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.12+ x86-64

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

Uploaded CPython 3.12+Windows ARM64

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

Uploaded CPython 3.9+Windows x86-64

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

Uploaded CPython 3.9+Windows x86

yamloom-0.5.5-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.5-cp39-abi3-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

yamloom-0.5.5-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.5-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.5-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.5-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.5-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.5-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.5-cp39-abi3-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

yamloom-0.5.5-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.5.tar.gz.

File metadata

  • Download URL: yamloom-0.5.5.tar.gz
  • Upload date:
  • Size: 99.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5.tar.gz
Algorithm Hash digest
SHA256 3d23098775f16d854773b1f05e1066f89ed6425c2266f18700c77a041b8bcaca
MD5 46d7043347a95b5a8a1c2500e437b11c
BLAKE2b-256 de5b3fe64ab7e1d984903d2d6f82f66ceb8cce3d16fce173497913b085db9dd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7768ca591d877ed3d65505d624e33734237b7d46b9401dc5e92dc0fce3b0bd6d
MD5 56c9c3c2485a548baf1a37011064fa97
BLAKE2b-256 2b421f37de59d72ddcded2504bac8205438f8d23e2c8fe06374984625165c800

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9664c3882bd0162eff2b611ff1051413a94515043e7d28b3234d77508a9b8c7b
MD5 98de39083f39ce22fb693ccd939532d1
BLAKE2b-256 863de5896036bc2f9a3854cece2c505fc54f8c42325128dbefce9c664255c857

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d0423c0a16032f915f9a329a033f75d666946ae72062c4cbd73495d099e44830
MD5 b2a57d23ba15c91da9adc6fa9cb4c862
BLAKE2b-256 358593ed8640fe514bd35343ae667878e14f082521a098276ad5e47aca5bd741

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2496b17d79bf39c086eedb51d3d242eb65949f077535b500f9bf4f73c5d2aab3
MD5 9f56dbc7ce767296c26edf1b43ce2c72
BLAKE2b-256 926a646b2c5786d98a01b61477e0937f05a1b29cffe0d86bef341a9b7857fbe5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0dbfcfe041b664c74d30dc1810b5eeb86d4e86ada7f3bdceaeb42ea226d559d3
MD5 4b57408df8005f19f00c70f378feedaf
BLAKE2b-256 503e7df9a15a558aaa0ee81e8169f6a58d02e0f1c33d1e48a00b58840c398171

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b8da9cd7607f486fa775de87192eca9b0fd19a42134256de01f75275cec9f81
MD5 3f3c85c8fcf9b7f9e900b7d04ce3016a
BLAKE2b-256 6e4207fc5c2b83dd7f3467981834293689ee7360996727b80c1b686f510fb87d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37e14eb7af0d8c85dd54425681efd29f10fb85e1b034b46a0f76f86202befa16
MD5 1d2a4924ef3b103c8ad9e14cd30ac868
BLAKE2b-256 8345f8c3bacd8a4b3cbc41fedde176300202e6fb9a0167c4647240140c1bf174

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 38010a47af8f4331a02b171f22a4f845b5935f9ebe5a6aa7773c857c29d471f6
MD5 30ec2eb541b124d0d8a17426b3857528
BLAKE2b-256 3e9bf29d376766ab78b1ffa8d9a7bcb6fba1fbce1a2ffbbb311a4529df749130

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce876e473a9450dbc4442a9f960c47f7c9951c8d7ca1d68e2c3b4b3b64ab1ac7
MD5 bedba83b1d2d8bc458f14f592c47c086
BLAKE2b-256 a2b13871f8b32bdb160270e41c822d7e2d0732747ae6d792afe0766b353c938c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0c8ac12a0d7a4964c6db25c92a7b3b83efea8b24710d740e0acb42a86050848
MD5 d4664453d78d8f6ae7ec19a6479448a6
BLAKE2b-256 6f583f866f3b01c1ae87ecd8cec270b76202d2e8388acef8d8c2263053be5019

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f23095a5a4d4046df106b520f61f91a4149eb4e31e9f387fc1b43e1d58493b8a
MD5 019791276b7501c83153cf102a9a95b9
BLAKE2b-256 0256fd3c538fda2e912b1b415f8b0dfdea920d35ff5f44367195bf7d11edaecb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab5554405bd3abda9c5595953394aefb190dd027c61f9d6d792ff927f9b8b873
MD5 0e63bd2048d566705971579296570f95
BLAKE2b-256 43875352a7660b0ae543e64dca405f2b7fffe417ccf2fbd1785ecaf9dbbbe81e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7cb49d59071092c520f81887743847e616209f3345ee7700caea39184ccef882
MD5 ce12a4f5606dc5a74570d221f7ff9f3a
BLAKE2b-256 688d40506902247cdfed2289a9cc7ee862d1db114a3ca8a59103c0e94d68978a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a3779709e61d92bf3eaf4d54c7db123f0d98143b85948cdfd78796ce89a25739
MD5 ca022c6540c4b4e4cdd2fd7f319c89b6
BLAKE2b-256 e79e52d4166c28dbefa72b5eb86b6b2aa81a8ff09e66f523a767cc2640d2bf59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 3a366814752453077866d0293315f97eea7278848cf92873fbefa3069126b417
MD5 c56753f1ee728a3bc88aa63bdbc683b5
BLAKE2b-256 945e1b04ba183ded8189b6f7fc9f147b351c2c33e2c8b06b1c9f263dd031c01a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 910ad6d9cb08788ecc0e34ae7e99cea248f3aa641b1ac3016777688f5a4c26c9
MD5 a2065323ae9abb5b2dabde60b1a16823
BLAKE2b-256 6c742e5641cd8a092fcfb577853ef345c2f06437258b109e4070b79481d3b840

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa347bc7f92f357fea28e0037da82acb5b15c6e614e19054e6c9d03d26e77429
MD5 f3c782adc5ab508cfb82c6408a517c23
BLAKE2b-256 edbe1148c181c4ccd55586361d4002cd0ea3545adede63fadfa2c66778ec0a0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7bedc9e241cd986ea9d6c04f9239ce56fd4308606bc1705320dc55865ea67e8
MD5 402d5e8adc588f1c6670adbb69ccdbb9
BLAKE2b-256 ab91bf9c96b8777df0131d40ec3e462bed334e41454519fd746ac77b02834285

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 467921ae35aff51c5faca991f49f04e6c4a6078ceeb3ab29a567375e4e789472
MD5 66e9f1372220beed33a5ad1c7bfc52be
BLAKE2b-256 e98a99b5366972b1f11a1dd7d5c3463be772c393b9d358774b1b3998283229b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d8dda315bf97fe5f8b7a11936264b80e50396907bf0ee16702c0edd4cfb8010
MD5 a70936903a344e499b5012dbae8587e2
BLAKE2b-256 270c68058a10d18c1ca095ec51e04c8ff79a2c2c2c2aa26c74b6be9804b745d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ec4ea48d02b381860868fa7b6f5cbab48e59c0bdc397e09d15fac383e1a2e09
MD5 9ae5f9108c1d9251df9757dd2a8fc37d
BLAKE2b-256 88fb18b1a05a2877ccfe323a4f47e5c369427db963196cb17f39ccea69943f66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37d40cbcb1fcc2896787d4a96541a63e7239e088ed640f977c1faf8912002a9e
MD5 907abc413e2fc155feec578f30e771be
BLAKE2b-256 7a93ca1fc0120a96b6ab133b7cdc1d4eb33670924befcd06d42c547c2508c263

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d7fdf62c632218d6055fd955e62985b0a7f9b595570adebf5f406e5ac36f76dc
MD5 e9f88135d6c60ebfb639da8f1d6d3a27
BLAKE2b-256 89caf8257d5af11a4a67193e85ad19013822e912a01c28b9d913b9a458d78f04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 320c7dee7a231875a4c5cbb336aa9972fd25dafe1fe30329bff8f8e6b907d175
MD5 9b0003a767b1c83bc2ef07de19a7a332
BLAKE2b-256 1954af3a05969b0d75bf663f4126f9e4d8dd588544a7db34af73ca64bc50c742

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 217cd7cef3ad935427bf5e4353f0b87ce3d3b1d8967386c75ac3e08161ebb3ec
MD5 d03189da775715b078b56f2f16a47241
BLAKE2b-256 9797a29796221d4831de7b2c32ff849e18a19ea7af0d2778a27add434d8bde99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05845b2812286afdc04a3d87cf2fdbfb4f675002437cc0371cdfa71685477130
MD5 fd63b8c2747653f2a02b0b855896591b
BLAKE2b-256 106acbd61cbd130fcf56540231e96fbdb1eb523bf861add6985c0158fbac0552

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 53fc914a79b4cc23a4eac8fd17082b9a9ee967cbd810e1d5c9285de12248a40e
MD5 1b0704afe5e6d8f33adc3a2a6928a87c
BLAKE2b-256 457728aa7b07269357c76aa8a2d821a713155c903989b9e3aa3d3209a356aca7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 03b2e378d532020f8dd48b549782195df5a804021ac0198d48cca696b2d5972e
MD5 43cf2ad013e40556f5c3f9dc80df9966
BLAKE2b-256 fbf2dc848bd03ba7c87a2c6a73f0702c1c7c5ef51973d5841ba5096bf26b9128

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 ce7277c56febe87c1d65ed988ceafbde6e44113d6744f072a1d9ef943122fc6e
MD5 f9cc8df38576f97ffcd243335051e534
BLAKE2b-256 d318ce0fcbb43f1ec81339b3200e51ad5702cb639265a83ff8945bbc4349db62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c2573440c7163e3526696e0dee96a89613a2f7f7d9acce6fd554f67cbff4c06
MD5 bde2cd29c2ee8fba1ceb4feb1f0a15ea
BLAKE2b-256 c3987bd03116e1c7fb52d8e3eda48092ad4b776b5e1fb50fea81685f92c7c44d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d092c4ad2e3028415e20ce9e6bcbe67aff6b3eeb94f90e6439734b06034512fb
MD5 e6ff07ef516ea19fc604cfad80e57a73
BLAKE2b-256 de43eef02183ea5c1a42e18fe6f527ac990647bdc557a28c103d47da6f40ed41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a37903fe0dd0e16188afb618e693524b4ef827790629c8474daca75c057c635e
MD5 7261c327e140e4b8148019911f9de044
BLAKE2b-256 b0490af951a9497ba6d2591fe18d9c57cb89254d0ee92e3b6548fa3f75f16298

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 016c84fe4cca39cb5cdcd9a7210dd3d582cccb264e3845c5a2094267dc792b92
MD5 96a097109a5841e634c37be1b13a01e9
BLAKE2b-256 5ca29e3606fe7891c4c0b593583c0e21f05e40da20e6839dd93c5b3cc8cdb3a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88c8e0225bf815c7a245a82db3662cc0fb8d36c85f7e3e52f415591c27450729
MD5 35a2ae31768004529c8a9c49b19ff248
BLAKE2b-256 351915f3eaa26610ccf67e60200fad2073424ad65ffcf7a51a0eafc39bf659dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98c1a38edb7d23e61ef57f1ef454fb1f3a581570a00a13bfed98d9f0a266c6b3
MD5 bf5e3c1a904ff948123d654a9c4f806f
BLAKE2b-256 35cad285ae2bb91523dddc1c29d2cbd9c78617530d84bb9205717027ca963fd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab901a9ce00ac2d9281feec49460397877fa938876acdace62858d95fdbee4f2
MD5 76ea09a52cf636eb03afca828bf6311e
BLAKE2b-256 8541582b1caba97ef9231a62e80ea01d45b684b48366bbe2f759f5d956566616

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f6a3b2a11f08f4160c94ed39dd9cb1b9d2bd6940acad03e73aa0b03e634d979
MD5 970e1c4a621a651beee5d5d8ccaca007
BLAKE2b-256 79558eb7a85c49627d3b24ffd0a878ef0810be1408ed7a7d143dbb2637ec1206

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1829cd74dc0aba04912f45341796bda161926d807a32a78b3e6a9ad9b1055a96
MD5 ffb6206dd2d734dc4bd04ff7548b87ba
BLAKE2b-256 9366e56688c68d4b3e9189deac2e6dcd4ad01f0b8acba6aac1f48f40e9ef9f5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e146f7584bd1a04a85299c0e9e6f3143d972f977b82314236dc9093950983e36
MD5 d7675b07a4fca481a97ca115fd2db451
BLAKE2b-256 e988a1a745d9669d42f469f2df77b5c92f1e34e2603ef33e13a8972d4617eb27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f00431360dc4f1547ffe77db7e08f5ce8a1e6c6641c085b826b571efb08e0e17
MD5 f2ce8789cf138712aa7c293eed570ce1
BLAKE2b-256 3aa5ab12adf6354ae9f5734757c6cd2665cdcdb5c138a6e5be1eec115e851433

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3406546c93fbb7c10cb6d720078a708d3e626fdedba26132458f135ef8259366
MD5 4dd85b87911862469611cb3c5bf7f9e2
BLAKE2b-256 fb3cee7f723dd650c5bb445ecd8c5963579c0381865d6072dfe8fbf64656d046

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp312-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 fa107453e1e182af00ab863e5389ebc01b8eab7d7464434742ec15d32190e6d5
MD5 7ea5f1ba5417f7f693cee52318d85ad8
BLAKE2b-256 30f5e1da25697bae35ea8ebb326f969887808b059fa0e88f8850e2e8da25b08e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 6f8791530c50d731cd09d40a0fef8d531a59090f3a02432485f4472359d49053
MD5 dd35a97ec4cb5efbb0dd9ca83d984426
BLAKE2b-256 84686a17f8f8b4cbb129b7e26f580f524966828539ffb0b5540e4cdd2f80b1e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 4a345d2fc3e013fb3978d7d8d5a8aadef3b79ccf7b061fda065e60fb9482711c
MD5 9a6bc445b98a0af482556a47c1305c2c
BLAKE2b-256 d6ec80de1cfa2a6afcf10dce2575d7115d946f93c058f94bd2fdb494f1a2002e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4ac977b212446d099fbf2f5a58eacc09b1ea95db9d5afe791f0e565cdd299d9
MD5 74365c1c5e7e6f1f483e5eea325186fd
BLAKE2b-256 84ba1d3fb7cde5b9fc940b93039bfd1cb085b15ecb4aa60971eec16b365a349b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 93bb2b3a1348d1cf090d2a9f7352ec6f1cc59259f0aac4981e38a184c7e91689
MD5 69e63b2ed45f14f772e632b1f5248747
BLAKE2b-256 bbe9178a548a9f21b6fb50254fed440b29b03af0ba954f716be5909cf3a5d62f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 601bf80c9fba00afb266b88e94c1e478f9dd261e9766286afbc9653b3573e66f
MD5 a4de21f99576bc63689de0d4ae6d3738
BLAKE2b-256 619dc86ed32565f53e6ccb3e70998f8f8e58a429816fee829dca2fdbef5e6593

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c6c7edfe5f706a6a230779edb0c9eb5721db87a07d9c8843165113dfc44bb6c
MD5 fe0e519a4efbef9b37281d53848bdf53
BLAKE2b-256 433358d2e95beedc883dc2d4c3af07eefc3fec15974452ae9324ad04eba26a6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b30c5ae07145160d099e7ccbf666cf8d57de3e5b94c2d751dd0f5ddd7ed70a8
MD5 a4b80527785018b1bd5fd9efbda3c35c
BLAKE2b-256 c40c74eb2d932df9fa6d2d958dadc34370023ee4804c5d23e91c76aaf2e502a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a6b9eab35a26342ffa6320288ae67ed5a719b9f287d2211ea26f804e2c30f677
MD5 344fdca528100bfa306ca12bbccd3474
BLAKE2b-256 d91fec65e7677355f7614660c0a9e5fca46d4d6c1dd6690df357d5fecf884890

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10d3f622f844c7f8d9947774a1462579591e8e3e0cc2979ddf11a8fd6b7b33bf
MD5 d8ed6ffd60818cb446f231532dac2495
BLAKE2b-256 ed295c9d83037c463444aa0dd890b3e6c6b21611c2ad913ff50bc47695d5133b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b86a1ec5ea563f28e1f091d26a55f4483dbb05e65a2ae4c97740750848f7ef18
MD5 a548d9030bd0f9a7c496a623ff16a40c
BLAKE2b-256 a2440548b9d7267e734007c1cea3c8e0bfee2627b80be31eae20e8b01233674e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e30a859110b7d3d55a175cc7e2382bafc09ca191062f72eb059eded68d96248a
MD5 942a047260cd957e76105e6e63bd078b
BLAKE2b-256 b3c355b44bfe7c8aedcc0aae91095bacaf66e07cb04f6643635b6add557c63d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eabb2e050404bc154829c35cb724f29278f4a3716b44a75eeced06523690023c
MD5 3aa11e5faf03cd97a0be87b9adf19379
BLAKE2b-256 e331ba765f706474d8ddbb13f6b7923b6c35dba840f1550a5035ee1d71e2decf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38d9fa6bfc13f93f9d0b1894f1428cef847ba79d71eb4e4914f2007289948fdc
MD5 76e8c13e9aeb9a6c2b8ba25724edd0fb
BLAKE2b-256 83ee5c4e8380fc4aac39e86032f0c1e89a0d29c22b02ea11f800c0f8e5344e05

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.5.5-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.10.0 {"installer":{"name":"uv","version":"0.10.0","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.5-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 faa29dcc078980ffc29e518cce106052b7bd0fe7f8097a929bbbabfaa790b23f
MD5 9e6fa0c9f5a3d8bbaa569037b91b3114
BLAKE2b-256 f527c52021b381f0425ef0f0c85a81254b1c7a7b388245e3e0ac0de4c580ff94

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