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.2.tar.gz (48.6 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.2-pp311-pypy311_pp73-win_amd64.whl (489.0 kB view details)

Uploaded PyPyWindows x86-64

yamloom-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (875.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

yamloom-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (916.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

yamloom-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (936.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

yamloom-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (844.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

yamloom-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (664.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

yamloom-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (692.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

yamloom-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (796.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

yamloom-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (666.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

yamloom-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (662.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

yamloom-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (715.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

yamloom-0.2.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (620.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

yamloom-0.2.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (645.4 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

yamloom-0.2.2-cp314-cp314t-win_amd64.whl (489.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

yamloom-0.2.2-cp314-cp314t-win32.whl (454.9 kB view details)

Uploaded CPython 3.14tWindows x86

yamloom-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl (876.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

yamloom-0.2.2-cp314-cp314t-musllinux_1_2_i686.whl (913.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

yamloom-0.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl (936.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

yamloom-0.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl (844.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

yamloom-0.2.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (665.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

yamloom-0.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (691.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

yamloom-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (795.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

yamloom-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (666.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

yamloom-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (663.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

yamloom-0.2.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (714.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

yamloom-0.2.2-cp314-cp314t-macosx_11_0_arm64.whl (626.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

yamloom-0.2.2-cp314-cp314t-macosx_10_12_x86_64.whl (646.5 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

yamloom-0.2.2-cp313-cp313t-win_amd64.whl (488.3 kB view details)

Uploaded CPython 3.13tWindows x86-64

yamloom-0.2.2-cp313-cp313t-win32.whl (454.7 kB view details)

Uploaded CPython 3.13tWindows x86

yamloom-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl (876.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

yamloom-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl (913.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

yamloom-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl (937.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

yamloom-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl (845.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

yamloom-0.2.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (665.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

yamloom-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (691.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

yamloom-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (797.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

yamloom-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (666.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

yamloom-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (663.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

yamloom-0.2.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (714.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

yamloom-0.2.2-cp313-cp313t-macosx_11_0_arm64.whl (626.2 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

yamloom-0.2.2-cp313-cp313t-macosx_10_12_x86_64.whl (645.0 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

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

Uploaded CPython 3.12+Windows ARM64

yamloom-0.2.2-cp39-abi3-win_amd64.whl (494.5 kB view details)

Uploaded CPython 3.9+Windows x86-64

yamloom-0.2.2-cp39-abi3-win32.whl (462.1 kB view details)

Uploaded CPython 3.9+Windows x86

yamloom-0.2.2-cp39-abi3-musllinux_1_2_x86_64.whl (883.5 kB view details)

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

yamloom-0.2.2-cp39-abi3-musllinux_1_2_i686.whl (928.6 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

yamloom-0.2.2-cp39-abi3-musllinux_1_2_armv7l.whl (945.5 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

yamloom-0.2.2-cp39-abi3-musllinux_1_2_aarch64.whl (853.8 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

yamloom-0.2.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (672.0 kB view details)

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

yamloom-0.2.2-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (702.4 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ s390x

yamloom-0.2.2-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (806.1 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

yamloom-0.2.2-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (674.3 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

yamloom-0.2.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (671.4 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

yamloom-0.2.2-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl (728.5 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.5+ i686

yamloom-0.2.2-cp39-abi3-macosx_11_0_arm64.whl (630.5 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

yamloom-0.2.2-cp39-abi3-macosx_10_12_x86_64.whl (653.1 kB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: yamloom-0.2.2.tar.gz
  • Upload date:
  • Size: 48.6 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.2.tar.gz
Algorithm Hash digest
SHA256 83607f11e6e79184ac5701db4248a52558b4ac7d95b4253cef1071fd3c5e8880
MD5 85d3e71414803d83c95f9f3ac269b8e6
BLAKE2b-256 0b773ab5149909fb9a4d8ae64c40ba078a12beec76c019af5814b53c1084934b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 489.0 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.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 834cad7140d877eab75c4141c4f226622899fb6d9d465f490735f7fbc3b14205
MD5 c7a5f94d450421693292057481d94ed2
BLAKE2b-256 d2f54f9c479807d6cd3c4210d375cf60c7da70e55c20344fa09ca2517cff8d1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 875.3 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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69705f8941f5e70f5f92daffe19974eebae382d49c024c262ff93ef2ca78c70b
MD5 db0651711218a846521f241664a7a09f
BLAKE2b-256 0f13046af74b4dacb7eabc1122299a5352b11db0caf6f17b5fc9cfa7c794474c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 916.2 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.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 44f645c73c3ef5c8d9dc47df7ea8d46e745a13e6f105db3fb5b88efc04d37312
MD5 28c2a8f58bda5605e70530bd430371af
BLAKE2b-256 649e37f635c9133262c872772144e3e990defdfa5a0e7dec8d195c3818b1d783

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 936.1 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.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8bd56de1ac4f4c786480e8247b26faa48b205580d58079b08d52a0b09f89b99d
MD5 78ce98f3685a6bacdeaadb500c9b85a8
BLAKE2b-256 3e40dba6e57b78d625fcb5dee22c6b12dc6e17a4312bbdc548c837b494dd82d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 844.2 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.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c0801f8103275341709f044ea2b8b60377feb610b15533fe2dad44232734c2f
MD5 2a11bc6a04efead26c3ff071f18f7caf
BLAKE2b-256 00d28dcd91724645c5960ffe244a207b2b5dbad41530d09c22bdb7b5348254c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 664.9 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.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e91793683340438f0a33efe076c6b29742c3a776ba516396a55b610c3eacb4f
MD5 0c2cafd442a5bef6ed28ef0bc040f556
BLAKE2b-256 cb515812a66bbc4dcf836f3782851358dbc89591e52d50319e42dc38a0b18eb3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 692.3 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.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 44f529df55f37c3ac85fdc8d82d5c01d9babc1e7c36a9aee809e8fb222d1206f
MD5 2f2048409e4471441d897fd5165be866
BLAKE2b-256 874617b4504aba0919abd06e1aebab08972a396cd422048c532e93587991cfd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 796.7 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.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f9098c12ec5d45de20730619b33983e5fb59af46f76b50d9da77f5f896446e4c
MD5 d3988db8e5b8b580151314edab4194d8
BLAKE2b-256 0ee75c8a6aecf94194e9073db3c474ab7fae3810728eda21c33dfc66ac16eed8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 666.0 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.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 021760a83110fb20718c40f90172a8ce4f2c1917cd66003f63c754c7504fcc4c
MD5 1a7ccdbf226ae19166ace39a24c784be
BLAKE2b-256 df3c53198750de639ed149a93d1153a4a54ecefb14ea70b0e723ab1ee42b67fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 662.6 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.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39d9d8954de123dbcfeab7323bb20b20d4b6e4f83f58b9684635178d872ca4ea
MD5 0f039933b10e2ce18d1b9a549586a139
BLAKE2b-256 754ddcf0c4404df13d778ffc90fe243c0e1db40f936ba13be28bf95b9edff081

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 715.9 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.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7fdd5e46b04b96b9c53e369f86a59c58add4abca772a64be65eb08e2f2a925ad
MD5 5ba21b80a2e8d3384678b4b0e18563df
BLAKE2b-256 5b242bb517409cdc44da024339977452f090a562047dea020f358ff2cd536f93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 620.9 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.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94b534539fa553b3ddba61646a258e28bd2958effa77aae0ea613654dc1eef51
MD5 83c91bdd6ff07ba44b4f07e9509cb7e0
BLAKE2b-256 563eed0bd017196eac377652a882cf9eee738844757be94442e9acf22bc67b66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 645.4 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.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 056adc16501cc47fc52d2adc1776119c64329bda54e8af20fd5bb12516771717
MD5 261c0b3916a8a62c96440d7dade433eb
BLAKE2b-256 2cdeef4d7388f669e4eca628b2b542ec830d0e8ad51a1590afb7caeb5acd796f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 489.4 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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 09545d37f1b128fc110b5ee62868b253339fd7ede80d3a0fe50ad8e1bab357c8
MD5 b888326738a49d489eb66c1668eff92b
BLAKE2b-256 b619815d4a39624f5091491ce24a7ca9241b0b84720e339e359257192eb0186e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 454.9 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.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 53d16d35a99c67b19bbc042e1d93d4edf08c5821985ac757e61af971fb87e141
MD5 410cb2325c03a40f3a4837dafbceda9f
BLAKE2b-256 23b9e2ad0c04a7c1733bc35ea4ed32d4fdce961271f164852b5ec57465c28262

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 876.7 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.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f82ea63628536914b602634bc22d1d3d88acf5a79f9dc8c275ad4cd2d0965914
MD5 c42555ad7f8771f98e74ff1c6cb01ff9
BLAKE2b-256 e3e17257b691402d29a37e9aa96f9a07d791f7ab6c60f87eb911aed754f04da3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 913.2 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.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 866db7e860996a275d6d021ad3d8bff107faf4e294658b09c5893ed74c471144
MD5 b2438046f889f0dccb2442439afdf96b
BLAKE2b-256 ae94229006cc3b3599d9e5e908c82b7625d80f113c943d6219013ee85402742e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 936.8 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.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 833308c6f073c0a87a15c4500847e8128c9ca2cae54a7a9aeb2210cfec110ce3
MD5 80def762f3ed6a4bf0ba9a6fd2aa2fcc
BLAKE2b-256 dc75e4f961730991dfa4d5493e03e36083388f0b5d344d8e2fa1a56e2821d965

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 844.5 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.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29c2e46ffa55529a7e838bdae2841b1db5f1c5fb4c99b0d55e2f86c5b8724ab7
MD5 5f9fffcc7c05e6659d4177468c601f91
BLAKE2b-256 dbecfcb0e8301c0ffbe15cffa6e80f7bec422cbe0490e9162a270d9e35111d9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 665.2 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.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29ee25f64454d5f498c2169a195af79462e790196e191c4c744ff86b6dd4c2b2
MD5 15741c0d8985f2ddf7b751982733e1a3
BLAKE2b-256 aff4595b4cef9f671ac1b32d058027491762141567f7b49ea65d6c7ccc85b19f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 691.6 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.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 920ef1e4a4ded967b755adf7a314726344013d22871bd436aeba2e149261b027
MD5 b55fa1b96c863998c0cc57192341a19b
BLAKE2b-256 a034f555738b854cb4c26ce586163b58876327f7327d55bfbed758470ab865c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 795.0 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.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 acfc4e1412a33b13f37fc736ec0d7baf6392ccfe032ad91be0bf322c1b505f50
MD5 2456192ad0be09db20f5af7355cb83e8
BLAKE2b-256 6c2c3c238dcaf9f5ecd3c2da4c191b18ee5927f4388a538d44f5ab88a8c36456

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 666.3 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.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7abdb75dcde88275310a7b5399620d3671434267fbce812e81cd18af7eccbfa2
MD5 8422b9743c11b069e7ef9ab15f327425
BLAKE2b-256 9bd9b0f92f202691b056e063fd4ea28c93ea657d3b467cddfb5ca12afcbf3d90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 663.3 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.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78a816554e8aeb2c2d89b9bd7eb6b9ab09824d98c19bb829230420d216960a45
MD5 3b32d631fd5197321a733e2490a85064
BLAKE2b-256 7a80bae2a64cef666db0658bdf3716950f663f83b6662bbeeee5ec491e986bea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 714.6 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.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c677630735fd137d75b6d85eeda35d472a58b27602d0892a641df8f00a0035d5
MD5 7bf9ad9fd70b76dbaa26ffc14c6e904e
BLAKE2b-256 2702f6bfa65076f123f569a28ed8f29a7bdb6bbeac35465511172661873df96f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 626.5 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.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 060b2fa189194b778ff63d9d46a9ce7b08724f3f5aec96af5cecd7e6d6f22b12
MD5 42e6ca8e20a9dd1b496f0b742ffaa334
BLAKE2b-256 e3132555c2d68bd7f4b34425391bce7bdf9d9835748648673fe6b5a9d31b8633

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 646.5 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.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 619b6d51dd1f6a0adb216e3bafce55e0edc632aab18974ea8ffe1f39becac9eb
MD5 53b53dbf3c3125bfffd7229b1bf1060c
BLAKE2b-256 e914de6b5bbad46878897101709ce471422ac145349b0cc607abab1c10d74b1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 488.3 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.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 1b14d87b4934ac0f12831e24711db264987fa2f86d0280c54a233773cb72d9e1
MD5 93a0857e641e5565496fe91de7995fc1
BLAKE2b-256 9e6762d5920ac065c942f423d275dace79f95c8b00cd7c40616ce4ba14eeafe0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 454.7 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.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 494371f516c9a91566e4f58aa4dbc994e2d36ad8fecdb953e904fee2f493d5fc
MD5 b73d5a807e726191a11aa8e34ec71bc7
BLAKE2b-256 7fc87044624b0402f243974a7edc7fa802e89416cc039ea0d0b99e1ca778e0b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 876.6 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.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62deeef4b8751698c0ca8da9eeee083edf13156545884035f09968e3084c2836
MD5 f8eafb3d56a627de0300d91657bdb12c
BLAKE2b-256 a70e5164a6f8f439f08113e3e80e042c450d57e5ab44e61462e9b8b00438745f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 913.2 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.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c597efb6453f74f4c9fcf146faaa6cc97283c0a224808d694fcd495dbe0185c1
MD5 7584f36236e688b1dfaf012cd9329a52
BLAKE2b-256 0f62f709479c52f63a0fa55b7d22f600678cf52513e93c94c85306456dc148f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 937.2 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.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11fcdd0a0b90ea1930f834a7ff954ce689fe877055e301863a88b93f461a9521
MD5 9328fe431a328d7d076b44c72a095263
BLAKE2b-256 ee9a1d6198c75d0c222a86df1921a70160aea0b9166eab82377e4310ae10f980

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 845.1 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.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 16e070cce1162fd5b801f31215f50c17d033441ea8d6e6d6c041d71111362d59
MD5 867b7dee7311099e438b3073b651344f
BLAKE2b-256 1b84f4d019001381e00317e5ce6de69a606b65ed925eb4979d82a53b92733618

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 665.3 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.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fabb1de71096d97071c103b8b8b97b897b1d0484496034c2811f55bcd61ade9
MD5 82556359fce32b9f3c83aaa9960aff16
BLAKE2b-256 37e26985b740995540ac15cf82e72b082f35fa6421175d35c87a9ef1e5c68c04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 691.1 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.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 47402c2dcdac2f0611f0ce851becc83fb0814549a678c9c38d7e36dd407cfb85
MD5 584dbed65f52b76ba95115c440ecfcca
BLAKE2b-256 6e85f977e68f2724c03255fd1c04cf559f285290695abbd924ca563c9b98e019

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 797.2 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.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f9e03a188892c0edc6c19fbfe8d2181991841c25f1033a5f4a152aead7525235
MD5 d852cc4f02e7c65a33b82f13de373615
BLAKE2b-256 d539fe975189dcf935e3552271c3a9f592fbb6d4e321fb589ba8d2658a98662f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 666.8 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.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf68e28c1736dab9b6361f8a270791aeefcf8efc9df73a4b7ce799d785d7afa1
MD5 f716bcc192a1d6d7e7967656c7f13b18
BLAKE2b-256 65262c361fc7dc64af633ca6e5ce7c1294763e953ed9dd860bd51a65e7b82772

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 663.8 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.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72fc1d767e5b79145e20443b2166ada7a43dcfc92286394b0959d748e8811d9a
MD5 b1aad8781fd749adeab96a9b503c1f0c
BLAKE2b-256 2c5908a0fad052206685244f6dba63385c2e7c34f9ca08ceb9e6cb802f26f33f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 714.6 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.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f28b4678b00577145ac9859ca64dd35c41732dc6b2ea1ea403a3ff08eab02b1e
MD5 3da6a70c8d730f4bf3813b21177227de
BLAKE2b-256 2fe57032b888c24bbed00e36eef3cc3b7260d3dee90c4dc8cbc0cbf494053c0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp313-cp313t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 626.2 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.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75688fcc8f34d9a5795e2fdd614cdf77f61655c33b912e41a470516198346506
MD5 837a4696517aaf3f12968280f927ada2
BLAKE2b-256 2366672897c0a1fb9566850fa93f0f403709427aea956dc32b6c29f0b7ae8c1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp313-cp313t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 645.0 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.2-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5ff213c1a5b9e659fa1da36c9df68ca7884b7fb5652abcc4811c5596fcaa036
MD5 780dfbea97c08c2436b57a3b026dff7b
BLAKE2b-256 8f8408468ac579f658c3cfdea6f4b286c92b6a2b0fdbd3a37a1f45d8ea8f3f22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-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.2-cp312-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 e707cc3fbe2d6a6a961cf995d2dfb3288402db2e04457b2e82c6a2383dad022b
MD5 e032692944da2bd1c2853a04ac07dabd
BLAKE2b-256 9cbad75c6e54f3a76c65f5aa361f28a570b1069a52538499a52aa8662870800b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 494.5 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.2-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 8fece133a88ef49cb7521ae8aa72ec469b60407eb609ad8ee5997fea99d7dcfd
MD5 7d1f460bbec71fed29601991f3daf89e
BLAKE2b-256 f742e5b7e295f9e8f27d4c65065ae1557394552a9426916c2a35c1ff26b07d03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp39-abi3-win32.whl
  • Upload date:
  • Size: 462.1 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.2-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 9b888bb76815ea75ee5a1923fe606ea34571fa688d54b71c1ffddb7edaf1bdcf
MD5 8c78c58ea5324560e2098d36d760b208
BLAKE2b-256 2d454f4a1800998271ef3f45144b9b5bfc3d593794ea38098687c4f0c347363a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 883.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.2-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff980a4eae6236736709e39e2dd95a5d80826879f79e2e9147207d8f7fe8ff5a
MD5 8ad1f04b92a0e168489d29014c701929
BLAKE2b-256 7ccee81038bf53c987f0827496c31029b15aeaf9af0f743818a07863fc908306

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp39-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 928.6 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.2-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1e6a754a85abe19b0c36b4e018fa4059df882e7215cffc7b3a6178450e885a5c
MD5 055397884c72287743078f16c3d8e534
BLAKE2b-256 bd108c2e844efa22d1d3f20e1102aa69232d0241443b39e0b020f2bd54e95f07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp39-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 945.5 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.2-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 52715f1a110e81c51fb29f77ea44a11d24acd1033b44128730c42609649432d2
MD5 817d394711b3458f94c74777a5b5efe7
BLAKE2b-256 d6068526fea248be60030c53339402368b5ed73a72407c92138d66d0c0304355

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp39-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 853.8 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.2-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8da6ac8060c98aca79a44b6a17a1efeac1c65a6b00b8958ecb1a4d706373f7be
MD5 d104069d78695a8a4c032af5bf1a657c
BLAKE2b-256 5df9229f44fa11519a0fb45e74af3765b33ba6b3d9d396d6de08a360ed298ed6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 672.0 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.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7cb9e4fb2b3b84ec9c49d8cadac4625ef598d9dc3a84984d5e71a604d1e58c5
MD5 bc755cf7ec0f6d76ef65327bea6c26dc
BLAKE2b-256 e16927c079483eb271b80d98a3c9649cc76002b7fdf7640c91c8bf02ca9a44e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 702.4 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.2-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c45b1505e48a84f70665ebce65ecddc5c9a6c957ee4ba73f3851890f9a08598e
MD5 4728cf44f64e2a8483c8867307b66100
BLAKE2b-256 e6f6ee5a550771b5c0338a978cc38b2f864e55181c54b4b515aea5a89ba0ebbb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 806.1 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.2-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d1cff756c0a83b4a4364951f76923a8b0d6c203f8d4b0bf705ed95b1089fbca
MD5 8826f5965dc3bd286c6a7910eed79799
BLAKE2b-256 d93f9385b63b5e5b2bb77b1f31990de6d1acd61a4dae5ef9a1a8d200bf204fcb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 674.3 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.2-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a180e6bbc579e718ae5faf2224efd8b81d139934d5de8ba8ca2db2da72dce992
MD5 2d47964d7ecfa9154cbef524edaf3bab
BLAKE2b-256 b4a211bcade9aaba64c4b1b3b0aa1f0e416e05b933ba6460ab43e2a906813764

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 671.4 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.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed55127eb19b752c665c02f65dd3dac28e3d2efcbc1e12193196ceeb9e4d1f4f
MD5 18e410c184900c58da343c437db07e86
BLAKE2b-256 93a00702c72555511086e5ad0051909b7d85cbd346df6bc93de141d63df827e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 728.5 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.2-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c9ae0fef5933a2c9647930051ef20af48c2b31e3ef742f6eec7b9376befafc37
MD5 8b8bcc84cf1139a022fce44a19b0bc74
BLAKE2b-256 1018dca096776435a2d85f839e1daadb0047410ffc12786cb341b5ae52536d21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 630.5 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.2-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4025dd62b155e01443667610b3204445cbfeba3b9fac44b3328e9f1a41fc4dc
MD5 0b164a589b0e08e45cd4d7c5bfa09b3d
BLAKE2b-256 9d0f22ebc1a859a4b290afd2602319c8c8044186f4deb3886f7161f7aaccf0df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.2-cp39-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 653.1 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.2-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 87bbbac8bd64cfe7e27bbb25bee0d84a91b386dd2cb9e94092c6a39ae89aa8b2
MD5 4a392447d0d24795105bcfff3c11086b
BLAKE2b-256 ce7a8ec44d757ab2f58c0dc726ffea452dc845f3bcccfdfcda6c32ed12fafa75

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