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) -> 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. Jobs are given as a dict of Job objects:

class Job:
    def __init__(
        self,
        steps: Sequence[Step],
        *,
        name: str | StringExpression | None = None,
        permissions: Permissions | None = None,
        needs: Sequence[str] | None = None,
        condition: bool | BooleanExpression | None = None,
        runs_on: RunsOnSpec | Sequence[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 | 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: ...

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 | bool | 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,
    action: str,
    *,
    ref: str | None = None,
    with_opts: Mapping | None = None,
    args: str | StringExpression | None= None,
    entrypoint: str | StringExpression | None = None,
    condition: str | bool | 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: ...

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(
                [
                    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 setup_node
from yamloom.expressions import context
from yamloom import Workflow, Events, PushEvent, Job, script

print(
    Workflow(
        jobs={
            'check-bats-version': Job(
                [
                    checkout(),
                    setup_node(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, all that's needed is a function that ends up calling the action function provided by this library. 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

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.2.3.tar.gz (48.8 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.2.3-pp311-pypy311_pp73-win_amd64.whl (489.2 kB view details)

Uploaded PyPyWindows x86-64

yamloom-0.2.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (875.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

yamloom-0.2.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (916.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

yamloom-0.2.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (936.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

yamloom-0.2.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (844.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

yamloom-0.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (665.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

yamloom-0.2.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (693.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

yamloom-0.2.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (796.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

yamloom-0.2.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (666.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

yamloom-0.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (663.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

yamloom-0.2.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (716.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

yamloom-0.2.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (621.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

yamloom-0.2.3-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (645.7 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

yamloom-0.2.3-cp314-cp314t-win_amd64.whl (489.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

yamloom-0.2.3-cp314-cp314t-win32.whl (455.0 kB view details)

Uploaded CPython 3.14tWindows x86

yamloom-0.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl (877.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

yamloom-0.2.3-cp314-cp314t-musllinux_1_2_i686.whl (913.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

yamloom-0.2.3-cp314-cp314t-musllinux_1_2_armv7l.whl (937.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

yamloom-0.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl (844.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

yamloom-0.2.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (665.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

yamloom-0.2.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (691.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

yamloom-0.2.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (794.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

yamloom-0.2.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (666.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

yamloom-0.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (663.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

yamloom-0.2.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (715.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

yamloom-0.2.3-cp314-cp314t-macosx_11_0_arm64.whl (627.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

yamloom-0.2.3-cp314-cp314t-macosx_10_12_x86_64.whl (646.9 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

yamloom-0.2.3-cp313-cp313t-win_amd64.whl (488.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

yamloom-0.2.3-cp313-cp313t-win32.whl (454.8 kB view details)

Uploaded CPython 3.13tWindows x86

yamloom-0.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl (877.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

yamloom-0.2.3-cp313-cp313t-musllinux_1_2_i686.whl (913.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

yamloom-0.2.3-cp313-cp313t-musllinux_1_2_armv7l.whl (937.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

yamloom-0.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl (845.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

yamloom-0.2.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (665.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

yamloom-0.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (692.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

yamloom-0.2.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (797.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

yamloom-0.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (667.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

yamloom-0.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (664.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

yamloom-0.2.3-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (715.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

yamloom-0.2.3-cp313-cp313t-macosx_11_0_arm64.whl (626.5 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

yamloom-0.2.3-cp313-cp313t-macosx_10_12_x86_64.whl (645.7 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

yamloom-0.2.3-cp312-abi3-win_arm64.whl (463.3 kB view details)

Uploaded CPython 3.12+Windows ARM64

yamloom-0.2.3-cp39-abi3-win_amd64.whl (494.6 kB view details)

Uploaded CPython 3.9+Windows x86-64

yamloom-0.2.3-cp39-abi3-win32.whl (462.6 kB view details)

Uploaded CPython 3.9+Windows x86

yamloom-0.2.3-cp39-abi3-musllinux_1_2_x86_64.whl (884.5 kB view details)

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

yamloom-0.2.3-cp39-abi3-musllinux_1_2_i686.whl (929.0 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

yamloom-0.2.3-cp39-abi3-musllinux_1_2_armv7l.whl (945.6 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

yamloom-0.2.3-cp39-abi3-musllinux_1_2_aarch64.whl (854.1 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

yamloom-0.2.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (672.3 kB view details)

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

yamloom-0.2.3-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (702.6 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ s390x

yamloom-0.2.3-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (805.9 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

yamloom-0.2.3-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (674.9 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

yamloom-0.2.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (671.5 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

yamloom-0.2.3-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl (728.8 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.5+ i686

yamloom-0.2.3-cp39-abi3-macosx_11_0_arm64.whl (630.9 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

yamloom-0.2.3-cp39-abi3-macosx_10_12_x86_64.whl (653.0 kB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: yamloom-0.2.3.tar.gz
  • Upload date:
  • Size: 48.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3.tar.gz
Algorithm Hash digest
SHA256 77c8303c6d469aac095ca89906fd02d63dab963960991e02d460f938113f69a9
MD5 9a613fbc214167cc65421557f153100a
BLAKE2b-256 4320af39ded7dc5d216f70efb7e6697ca9c81c5c81fb149ae4a80a1d34a9ee88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 489.2 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1b347bdcac0b9f65f439b315cc4733159de3573a2ae3cd018096ee3c5ce324de
MD5 35adf8798ac4fc62c08cf4f1df145dee
BLAKE2b-256 c54de5bf3eab2f625c6584a07a7520178a6864d3e3c01e2c0a5bc32ff5b1a870

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 875.8 kB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb11a20535c5df1ec89c8e2d6c218b814791622bfb5e81b1dbcd21742b7f29da
MD5 a745413fd7dd6b5877b19ea7ec9a3a55
BLAKE2b-256 2f8232eb03e9b29138f57b0cc8d1df3f449de5a5dbb302733203f2761ffca171

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 916.7 kB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f7262c656d0dfd58846bff2c34c769df028fe25c96bc0951982622243022723
MD5 f4bcd8e3229c9b5d9eaf374f1ea3c30b
BLAKE2b-256 0d4f781006448d4fc38056923291ad911b60a17bf98848aafe3b3cba9298ad25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 936.0 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c2c5479863de57c894718fa7df75752307e905e70a75de0727733038c0986a7
MD5 fd1119876c9f9e9af204ec2c1fbc3bc2
BLAKE2b-256 00662f919e2913d47997bde8c9f8e7e2b988e4aecbd2c3a3117534ebb099bfe5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 844.6 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ea7f5224e2ad053be24ce00b3f4942d8bbc6d9aa9d4afed9d8befb607c60d29
MD5 897405f5a3a8f1f94426dc65f84432d1
BLAKE2b-256 46286c0d6dec05407ec9a30c2b513dc54bf6cb503abc36bb9ac442af3bf8e02a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 665.2 kB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36f232497a14805f27743c5d2ed56ee73d26cd2bd274dfcde02fe4723914f20c
MD5 0de7893967bf49c4df76830f6a2cbda0
BLAKE2b-256 34e3f2592af2e90327fb7487de803f8c4909520d9ddd3ec66446a507181bcafe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 693.2 kB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a971285d6d0d9c3dfc5a413c5277cc7edd06e62825771e7e26254a536333983
MD5 ceb64131b23a3b1a13e857195dc2d084
BLAKE2b-256 40fe1b0eebef008c49b651bc5bf05da9ed7d59e81377d9f292f1bbd12a7cffd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 796.9 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d174f31b290c8305bb67099f59630c12d07cda9968480710e258e1b05063a8c8
MD5 a28b4f2719d85044be729ae9afcf2d13
BLAKE2b-256 47d47458fac342a33c8eab77ff7ab86b170e20c50f2cb986507e23694123a54c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 666.4 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62428e5a946b392051c521d062cd491dbfed6690e29b26b421dea4f454501652
MD5 c1ac530d54794b93aba7da588a94a19a
BLAKE2b-256 1c6d9bc00b99b5d9cb11ed212b654e14774a7653dc791964c890655172e00490

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 663.0 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0194c15909e3b77d3e190151e859143c88fc1381159f2b6ade875122afbceb46
MD5 d86e897387b5ea41d023ae8a4278a9e5
BLAKE2b-256 ccccc737f8e0539fcc9af5a8ece00fd1f8fa5c0aa33c3444fcdba6b7a154c9b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 716.5 kB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 11194074c8efb92edff0e8ec083a252e1fa1e412ef3bdaaa2ad5ba6862cd3870
MD5 598519d4b31c82c52545029917ccbb4f
BLAKE2b-256 3c1bb91d82f42e46a6582bfce8434e1c087c90ab7aa575d9f8e32e199a6c95b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 621.0 kB
  • Tags: PyPy, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d626c2b72f09c9aaddc12240f6672664a13a50af7bd31ce390fa97b77c5909f6
MD5 3bf4b2681eb2e07d0c8c3177bea5209e
BLAKE2b-256 e3ea8663077af4ef6e65f23f2b0b6f22055211dee0cbaea98ee07ffa8d8a472d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 645.7 kB
  • Tags: PyPy, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6851c0e37b8854adff2433bb6eba3581b6007ebe3f46601bed6107e5004f52dc
MD5 bab99cdd50ed17d893a0d1452a2441de
BLAKE2b-256 7f8551fb42d940d94c4219f22408ac2ca18a9d61c433ad2de0dcd02990b643a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 489.5 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1bec41d38de05361ef4c8b47c3878c8b2671283d3c2a48c996182ddc80355e56
MD5 5d69598dd99d4f1331cbd000921a5f37
BLAKE2b-256 f6bddfab2d46e1ec5e049eab51734ca6faedb3a122bb736be2423fd4f35dd290

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 455.0 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 30b3edb3ab93bad5b995962c43a06be44c4f36b6f644b4e2b09cf404c498a4af
MD5 ba6e7e4430711ef0d28a383233b6869f
BLAKE2b-256 b36e5fc60faf076658b0d3edec558a8e310f6001089ed58c85534389c2936e04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 877.1 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e11e623d938aca9e3905625b0c0710fcc28adee6c0486c2d8000593dcca9d9dc
MD5 d023975198c23f0ade4e11ed8f8a7e13
BLAKE2b-256 25605137e0ca2330813c280cf9efdedd2a59ef5f096e36a2539eceefdd3348a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 913.3 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e52abe5609b3c3904ca6424b4e0d5b5116ac9b3183cce6fab1723e14c89869eb
MD5 aa2cb3bfe7f39bc38977dad9b9ec843e
BLAKE2b-256 403b4b9363eb758ff3e996a118841fb75f65286c334c42b5fb2b505c47fab527

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 937.2 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 af7b2c5b89086981f688ad8d6961669273b84ce74986cca20d1fecaf13bd34c6
MD5 2f6fabeafeeaf649e06c1a677b7ec8b2
BLAKE2b-256 6f8c5bee53b3064fd2adc05e68b73d74aaef69b9bb4e8f3247087ea1954b93e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 844.6 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dcf51e498b2c2536ef69b81b82ee754a6f7094d7d80888b4eccce84e92bb7c1b
MD5 046ffa5e860a8de3fc85ea706c6ea7e5
BLAKE2b-256 9da5173da07de61cf761052c5fd510f5beddfd6e33e333ae398f006e892ed96c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 665.5 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7878463725c6765a797dcf63e59d2ddbbdca91f80ef322d9f850a71d0541c85
MD5 e7e8d8fae958d39134e7a4048b59eb0b
BLAKE2b-256 d487c0e53c1dfd511513f8a3799c21bc168ce7dafbf3524a2899045a0ffc0b28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 691.9 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4fe5abb352d72940f2459ccd2fa2867985d448250118ee2ce6aa388b8492ff70
MD5 55bafb16b864dbe6da6a49a91ef0119d
BLAKE2b-256 960ba2b897fe479a3aae1d487b3af4c7d499ca6f9c38ece9f30fb8c42428c173

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 794.7 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b4d87d8eed883dc4f97c84c9ae4abbc29524df175d9d68c84a48ea72b666dbb
MD5 b0039aa2524315eeb4c11cff40580b29
BLAKE2b-256 df3831510a926223da9da97a4485a83043ee78599efd8e4d7f022a91752f0fdd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 666.9 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 623b362c45598c045cf55ba0ab43ed11c3487cf84ed21e74c58b05bb69e4ea68
MD5 35130faacc48ec970cdcfbc109d7dfbf
BLAKE2b-256 e4fde3abe18a5b3098773de73444571fb2c4191739d7ad249ebd030fc61094a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 663.9 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8fbc420a3b1811f3cc06f67219f5a2d5093dab417b3702adec9df18a88134804
MD5 ccc5977f60301d94352b7b7e346b885e
BLAKE2b-256 9d6ada628fb6e5158d5edf6a897633e7b096f0345dc62dfa8147e7c807761e85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 715.5 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cca3dedefc2ec597cc0faef202e4f97dc042636ab7f726884a023f3dee47d0c0
MD5 3eaad48b46b544a5e5194476263333e9
BLAKE2b-256 e4c6addb2fbe763fb2cdc58260000058a1c52f3576a0065f896048fff369fbeb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 627.0 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e67b81b6cbbb1d7e0f1b8dccea9b732a49ff909d65658ef5c45db9633661e1ec
MD5 51338af3d1fa0176e3d6a54a27f135a7
BLAKE2b-256 342a6f69ede3633109e0c11eed48d6f47ed5d4dd276e03beaa48c6fbed60fba0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 646.9 kB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 20bb51df9dadcf319236b3d38c89dc02a7b560a79580855bd3afabd61ac00928
MD5 cd35139f05ebe75b6bbb346465e34ae5
BLAKE2b-256 37e676158823f82bdd2403ead2c74bd81110bdd46b167dc3235e1eaa70127ed9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 488.4 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 e13aef25bfc449d3c1f35ef87d9835560232284cde328b560eb85fb8d9f8821a
MD5 d56667cc5cd354c64bfd599391dc9cc2
BLAKE2b-256 aef70924ac414ae36935b700dd1bec26c8f86f10b489a83ed4966150c8a88814

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 454.8 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 51e2610dc38a6d4186e79826f2bf9461d3c3d003abba735f9aa3f414ea3cef65
MD5 de519a7c12e338882ef7697d4a0a4988
BLAKE2b-256 a74f28b78c501d1feb850e5c3ef0a166fb14c81fe531f24f2f68623a2b495bb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 877.0 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8d9c5858a7082359ea97e053de499b875dff765012a07636a01c302adc0a269
MD5 917f6cfcf522400d44621867ff4de995
BLAKE2b-256 e56d8609104e0720b6f1d65e4d6493e3513ed82c9372d78711c109e82115e30c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 913.6 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6feb80077b523fce3242b5e67196597f3aa7dbbd00126fac9c86cf32b97a972a
MD5 2e4f0403411bf12c02e9b7cc0a4f119b
BLAKE2b-256 ce1a5c84eb6675c7952fcf964d46a875cad41ba5af208e4e354481e61800dfcd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 937.1 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 689cdc6a437b6279de4f1376e6e019c29d77866759be4dcd22b3bd7dc9f5c988
MD5 c1bdda83377abd99157a6aae414fa58c
BLAKE2b-256 2dbfc1f1ae0bb1cf39917c4f08bd1cc293e96bb07f95d44af71c990d67483423

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 845.3 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4505462d6f36ec0031654daa4959619311c745c51881bf30ff14810832beeeaf
MD5 711931574a30a326af20ba56e0f4ed4a
BLAKE2b-256 0a58ec43748432b3e07205437e07bf441482e20fef765701b2e1de0b8d26212a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 665.7 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37e1aa8438099394faeb0413127d698f981110cd50650179f8179ab767cbb529
MD5 8510253fa41aba88630e1b85a52826e5
BLAKE2b-256 8930b879f7ef168741e27d7bb41eac55d502d1dca9b88a505910edc7ef2d374f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 692.2 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8877b80652289e05e6230b8f53cb55b72e3e29501278e6f5d027857cab07a98c
MD5 f5a94e02202841ee568831be8182d307
BLAKE2b-256 86b6fd0148722a83fecf690e3bf0296f69f039d85a21632f6f50fcb8013f4c93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 797.4 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 95751cbee74bea13ad04c0ae72fdbe7a5edd5d4f09eb7c621dccd2a8e60294c5
MD5 c45b3846513696ee66817c5349e9e925
BLAKE2b-256 fc33c76f6076ca8c7d328997c473c3e7de1c793d0d41152905d775da78d02acd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 667.5 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ddc68e057469be14449d2fb903da378cf55d80d71cbae0ff6123ca7792952acc
MD5 93eb4af0c9f6f5cf654ba123a207bb8b
BLAKE2b-256 e79646c93f4cf86ee78b6159626548508a9aa97260a1191a6c3631dee73e0630

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 664.7 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f2897b585f4bfa6c1d42a962fa722628349e51007e70ecd9bec5de640ba5ea6
MD5 85685addb9875555178cc0d852af8d1c
BLAKE2b-256 ed6b87f5dc949b2c531780bf53a4c14888b355d39b0336829a47446612a1d5f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 715.3 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a72ad388962b9e5506a9cb358679ce4ec8abe50e1966434807a241492a3dd144
MD5 b4e33dd6f0b28a8f5e3f3f63d81f39a4
BLAKE2b-256 ac2d8de969bec317f564d647b73c1fc7eef599735e0feb3e3dc0a7d67db91904

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp313-cp313t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 626.5 kB
  • Tags: CPython 3.13t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6e159dce5d29b2b323b4ba05a4a41f5b203bd548202503ccd00fac1a30c0520
MD5 d257b2aeeef51ab63121c2eb0e726a36
BLAKE2b-256 207167c426e89245b27410c7c3ce21723c3be7deefdfffcaa5952de48c51cc7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp313-cp313t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 645.7 kB
  • Tags: CPython 3.13t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c7eb0331c04bca7249f2d6d4c2e869d536db17b11cad51d7e43c4741ff6fa61
MD5 c9b86cfd7cb7427e7ddaaa5e7bae8ce3
BLAKE2b-256 23d467e3b36bd2063aedbf71b1829d823613ee85adaf3bf529c4d55b386c0cce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp312-abi3-win_arm64.whl
  • Upload date:
  • Size: 463.3 kB
  • Tags: CPython 3.12+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp312-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 a3b6224a2ec74c80a599bcd7db8381916df6901227e6bc7e6df025955da6e6a7
MD5 6110e354899a1365b956d6c1e15fb651
BLAKE2b-256 ecc72be9f5b9d810acf2eb8fccf1ddbc2cf00c39db5cf2cddf040788fd758322

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 494.6 kB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 5a86fcbcaeee41ede84dc32ea92797541544e05eadeaed32261c9c9e8aa2634c
MD5 ac3adcd2883208320e4dbc3f24f45cec
BLAKE2b-256 493272d7997c62b1b83fec6a6fc2148940d8aaa4d5c97a4dcea8be12dbe203e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp39-abi3-win32.whl
  • Upload date:
  • Size: 462.6 kB
  • Tags: CPython 3.9+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 0298bd1e3832ddd4e57feedf6eaf84f0a28e766569fd97d001f09478180a3587
MD5 ef4c1d9059cff2aa1820fc6b58e88336
BLAKE2b-256 686265c42a2a8c286e838151608a602fb510dccb71c5e277e545549aa0ab9682

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 884.5 kB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b0af388ec70006c130ac6f063250a0434b22be0748eabdc6fc08e4e02190e20
MD5 7d3c915055c52ef712db8aa47dc0b9d5
BLAKE2b-256 7522aba335726394c39b4d28cc09bb37e961fe2a9d64cc4f73da3cd4a3858196

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp39-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 929.0 kB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da9edb751becdc75169d7cab77d9171d3f6df33957f1b8509532020ca47c24ef
MD5 0ade29ac5691c73a3f6909771e1e79db
BLAKE2b-256 ba17938691bcc69090536ff1fd97c53ad921ad660b6dff0197f2c6c8e6683254

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp39-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 945.6 kB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d84c63ec8f9fe1fe17299df9c62b9aa94fbd45e1886a7efe18dde71b57460943
MD5 a96adbc4b929ef404d723049c3df1894
BLAKE2b-256 c0ed966394b539dc074d4831ea167dfdda86e74e2cf2e42015d3f99ee4fb1fec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp39-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 854.1 kB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f79341946180110ffb25efb253a8ec72e3d70ef0829de71715f39ab6ffa67ac1
MD5 1004158cb7fa4e45f110879d12b18c53
BLAKE2b-256 40524a25c1dd08bb8846c7fd5ed08985b4f75e3e6d2d853840ed36102606d91e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 672.3 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcb5ab63d05023936ddcb6589b9c1774d11abe54dc369e548884adffce1d2579
MD5 94ba6ddb67975cb2993f7bfd54cfc877
BLAKE2b-256 0bfe40038b0fef6a385b012ec629985f48f1ee5134184b6c87ef3fe277896372

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 702.6 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1463c081f5b1c46a932a6ef0156e86c881faf8ee4f3f0b457deb82297083e7c2
MD5 73b1248a0adf7aeac8975ee21c5bcd6a
BLAKE2b-256 1a17b7a3c0cc22d670e054371ac78dd6622980ea53ba537108a4b894815e005e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 805.9 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 04fae1814f120b555e096bbf65626e2e31ee39ee6a3b6369fdf19e08d032f02d
MD5 1e8b49f23629d99a3eb53389a670b0d6
BLAKE2b-256 705035d562afa7485ae039b8207de584fb7b4fbb160ddfb8d073836d6fce2e52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 674.9 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f9a8279689371fb6a0aae8c44f31775a269aa126a9f16304b4ac9038cc94cb0c
MD5 db0b459644b47a53eb8844124ea959e6
BLAKE2b-256 41d0fb0d6ad8255538303a313b4fc6c9be8101bbb854851b564b58120fc8a13a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 671.5 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a385d3713f96bcdf43bfaa4cecbb1b71dd4425cd1de2aeb338f61c17f256924
MD5 4d0e47613dddfc44dba82b460ffc48ec
BLAKE2b-256 ec59b5659eacfb5fc88eb674e800e40c5c2d410a3002f828dce47647e060160c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 728.8 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0792c0bbcbbfe4fd6e0084996f130d931e4b769161f8faf29e0b71fe7a64e266
MD5 f10033e86c0efadc617978f90f78bc8d
BLAKE2b-256 eb07001c626eb61e976489614d415ee10bcfbe63e5bd44b3d4f5d8738c0167e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 630.9 kB
  • Tags: CPython 3.9+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0a31570ef6f796fc74013eb89f37dc1f5808bf6df62fdca609bfe6d89eb44af
MD5 af6fde1bcadda6c3f0dd9b1da15b9cca
BLAKE2b-256 9ee57d2e263168fd75ea05c78dd71c5153ff41230c22500e4b10734877ad78e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.3-cp39-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 653.0 kB
  • Tags: CPython 3.9+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.2.3-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c99e31716ccfc00e19796b3ac9424b687d9ee47664567d4cdee3b1634ce12149
MD5 b1a022af22717632482145029c0b56de
BLAKE2b-256 1b410fac82b16e841040288b6ae0654ea1e470bf1d475f063af243db1f167f47

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