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.1.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.1-pp311-pypy311_pp73-win_amd64.whl (488.8 kB view details)

Uploaded PyPyWindows x86-64

yamloom-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (879.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

yamloom-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (919.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

yamloom-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (939.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

yamloom-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (848.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

yamloom-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (668.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

yamloom-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (701.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

yamloom-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

yamloom-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (668.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

yamloom-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (665.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

yamloom-0.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (718.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

yamloom-0.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (621.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

yamloom-0.2.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (645.5 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

yamloom-0.2.1-cp314-cp314t-win32.whl (454.8 kB view details)

Uploaded CPython 3.14tWindows x86

yamloom-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (882.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

yamloom-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl (919.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

yamloom-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl (941.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

yamloom-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (852.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

yamloom-0.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (670.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

yamloom-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (701.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

yamloom-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (798.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

yamloom-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (671.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

yamloom-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (670.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

yamloom-0.2.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (721.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

yamloom-0.2.1-cp314-cp314t-macosx_10_12_x86_64.whl (646.6 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

yamloom-0.2.1-cp313-cp313t-win_amd64.whl (488.1 kB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

yamloom-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl (880.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

yamloom-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl (918.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

yamloom-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl (942.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

yamloom-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl (851.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

yamloom-0.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (670.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

yamloom-0.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (699.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

yamloom-0.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (799.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

yamloom-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (670.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

yamloom-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (668.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

yamloom-0.2.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (719.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

yamloom-0.2.1-cp313-cp313t-macosx_11_0_arm64.whl (626.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.12+ x86-64

yamloom-0.2.1-cp312-abi3-win_arm64.whl (463.2 kB view details)

Uploaded CPython 3.12+Windows ARM64

yamloom-0.2.1-cp39-abi3-win_amd64.whl (494.4 kB view details)

Uploaded CPython 3.9+Windows x86-64

yamloom-0.2.1-cp39-abi3-win32.whl (462.3 kB view details)

Uploaded CPython 3.9+Windows x86

yamloom-0.2.1-cp39-abi3-musllinux_1_2_x86_64.whl (889.2 kB view details)

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

yamloom-0.2.1-cp39-abi3-musllinux_1_2_i686.whl (930.6 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

yamloom-0.2.1-cp39-abi3-musllinux_1_2_armv7l.whl (949.7 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

yamloom-0.2.1-cp39-abi3-musllinux_1_2_aarch64.whl (859.9 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

yamloom-0.2.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (677.0 kB view details)

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

yamloom-0.2.1-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (709.0 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ s390x

yamloom-0.2.1-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (805.5 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

yamloom-0.2.1-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (680.3 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

yamloom-0.2.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (676.4 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

yamloom-0.2.1-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl (730.6 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.5+ i686

yamloom-0.2.1-cp39-abi3-macosx_11_0_arm64.whl (631.4 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

yamloom-0.2.1-cp39-abi3-macosx_10_12_x86_64.whl (653.3 kB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: yamloom-0.2.1.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.1.tar.gz
Algorithm Hash digest
SHA256 3634e4d7492f78bf8d2e31f3c53b6f5ad09a61cdebd4772439de73f6ed825399
MD5 12327acceaee1da89c30a132e8ecf12a
BLAKE2b-256 97efddf2e329e8be2697e87340ccdbca14cfdfe111fef64336aaf72bc0a24270

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 488.8 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.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d6b600f1f05a506339f1a35ffa243f094759eae64de391a24e9c986306047c32
MD5 62ab95cf703a1d29a824eb879c8c81c1
BLAKE2b-256 a8a52b1754a55e4bea0a8105a57d3969464286233612385c3dedf1158e78613c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 879.1 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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 065ce7d242982b529f043ca321cd1bada1fffb7d49e58e59f70dba2e2a1be80b
MD5 6001d5c4d3fa7df40e34d3a08fae008e
BLAKE2b-256 e3a433195a7f1198a78d49e2586ee1dcff86802ffc737bafc7efec6094fcf4f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 919.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.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2411f485f0a018954bc0e753696fda517755e54df84ab38c34a29f8d6a704202
MD5 48f21061bddbc7d0fc61c0bf0766ccc0
BLAKE2b-256 2c0c53e56dd4ee52517d02a3e2c611dada9788b382c9c39d831f7e0467d4135e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 939.5 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.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5500c998e979332492347af29642f1e160530c0cb8e22c23e6e496607e11e773
MD5 fbf5f058eddd0c6c51601d9676b6b44b
BLAKE2b-256 f74f26e90a4952a4aae90e59473ec52c9e6adcac43c42626839e744b5b84b845

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 848.8 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.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ced664614b92fde398c18fb26c407407bc7829ca86fd7a68ed712d6d428f0015
MD5 bdbc001bf324c446b00e3f05e816bbcb
BLAKE2b-256 9ec75b195230e2e28e5c018ea1658f4a314d92cdb851e466a2c9c90b0dd921f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 668.4 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.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2ab4b956fb20bbb9d00ff110f58551d61f5504f2b5f9555eda22d9fe099a068
MD5 c1c8412fc9e826883572da92325f5e10
BLAKE2b-256 af7ade595d92a4fb2a79af9db8ffcf23af79086a192f115a15c897e245b476cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 701.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.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b312adc6c2ba2d7f293ff1bc7e10ce2c4d71b305fa91dbfe849df88eb6e93eb6
MD5 beb1c90381fa43cc84d8ebc46871fd9c
BLAKE2b-256 6bf9bc880b6632105f8b8f1bf5ed20b47c7541f559d00c8aa3b3432f252bb89e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 800.4 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.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e28e3a1da0d3d75ddbfaef11536f3ae4c77b9c7541f827b1edbf7d6a5a85b285
MD5 6405e4dca01b498de31925686d51a274
BLAKE2b-256 e0b4f9658674e38ecb8a02d122ca9b0df742239e4b91df6ac8ce4e57cecdd68c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 668.7 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.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a58c416c3417dfb17a07969e938a44de5a685c1a26c2e45c4ae95176c80313a3
MD5 21ca20c809c5d092dfd4e39ef43198ce
BLAKE2b-256 349e1ae0edf354d6cb17cc1d73d0f87912c65917f212c53661bc5b36519902e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 665.8 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.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6239e94adf398d8de4e59b4c859fe6ec984d1049f9cb09f3339abbb49e6d3586
MD5 f6e02ef8bb3193006cff2f0c53dbb551
BLAKE2b-256 480c6c0f64b7e30cc118174f3b380fa5d9ef8a9ec599cf1ee16f852cf758ab6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 718.8 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.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 09e485c5f050e7729f397cd39ee3022a3926eaeebf6dcaaf6f1e3717bb1a40e0
MD5 817260271add30721059f0be71c3a02f
BLAKE2b-256 14d97c15d271c863ad62b0ab7d28ee876744019c751a665841931831bca83243

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 621.7 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.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3603043e7cb61768d9dc581f163a2c0b35d13140c3886a3cbbd3d157a852e65f
MD5 145d49af12e4d5ec9549047cfe392cda
BLAKE2b-256 bc7df34d533bb7c971da620cee45ac1c353c47526924191b38ba120b1def69c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 645.5 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.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 282b71f47462ea13c8a187319d046a29987c029c7b219eb5a78f5d96347ec42e
MD5 713f3361a11b11173db2310b9a1d9abe
BLAKE2b-256 98dd0c855e9001da3c927ff9566df0cbfced1cc08c92439b4d6d1b31a97eb9b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 934415e3d949484f18d833e32319697a0a71265f3723e6ebed40db365e76b29d
MD5 0b4c7114d6cb1196005f90e06b6fde15
BLAKE2b-256 a0516e4fcac79bd7d910c7fbd0b2fde2e726e0b130b2f5bbd79f5356fef780a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 454.8 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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 04c636280d4b95c2ab223c79e19a5747ff3045b1ca3b9ce51f0fbe43708161cd
MD5 7da3e1b36d6cf54cd20b13fc751a24e7
BLAKE2b-256 16c9acfcf88e8703996bd572ffaa6a5514abdf23d0dade2f5c948d7e9d31b066

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 882.2 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.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 209b4e0e31e8d6977e083f393a6f5d41ec4cbe90d0af07a730f4f130e7db1093
MD5 59b285b60b008d7f3e098bf8fcdb09d2
BLAKE2b-256 cfd980eb4307ffb16699ae8fcb8118f8153e1b2166cd1bb06c6b17e143743306

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 919.0 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.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a552bce1b3461d7e7fcb4b4b7bfe6369800a8fe71f6911ded645e88195839ddf
MD5 d9904b2638dd9fc455cd604a770e262f
BLAKE2b-256 1463c606336fa7ef48de61c8f1c6adc3919efd708ecead5baaaee44491a684f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 941.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.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 55b0bd5d1a1edb6435be3b7a39440cf95ebe26dc00ba9d9763a9763f34f47371
MD5 11e0fc025e93a1b64bf1de55c6f4207c
BLAKE2b-256 9710ed07ac0f7cb2231de65d4b9f2e1c59e79a2c3ee8941fc1e80efd01188e73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 852.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.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4dfcb28a5bddda73775a5bd17e0685f60584076885e324c955050028d82f11bb
MD5 d866d984ddb6a11d8f599598e5e10a34
BLAKE2b-256 5e79d66f7fba87bb02c7a06c12e1ba03b75fc24e6d17192e963df72310fc3be9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 670.1 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.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8aa2fccf0d6bb9c61070b7c27ba7412c690b8168f38c08ef6083df03475d7de7
MD5 620f6d911cd5d9ad74144429d07fbea6
BLAKE2b-256 42258562ec16c0143fd20ddc1400326dd1a7a2ac0def14fe1b56f891a0c2447b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 701.1 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.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ded0e1fbc8b8421c73a962531410355e127cf22de81a1ce0152e5b73841c9763
MD5 4fed6999f081267d57deccfbd0a2340d
BLAKE2b-256 6ef238a7a6ce76ccff839e7e7041c6d22b0206c02b6e18aaec3c27902ad14e31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 798.3 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.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a81136f23543e44ac9c4191ec60f034361927677e48cc1bd07fbefabf7d89b82
MD5 b6d127ffa52dda1989a3c2d66c24e71d
BLAKE2b-256 721bbc0268f2e5b3e3abce330167000de30354b9367e01cc00e54835d6828f39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 671.0 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.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5226f0fabb14671f20f5a85f98a628b163eeb936afe1000c74a3acae1d773ec3
MD5 db26153d8afbae3300e234e253a66e0f
BLAKE2b-256 46fb1a1b76a4fb22b19d34b1b8936dc05f4396e3fde020e63b7dc5d2d7ea8184

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 670.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.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e5beda660698aae73691dd0d6f76de5d33fb9860342315dda651f44a9d09ce0
MD5 b87873a7d55ab9aa1213b410387453fe
BLAKE2b-256 5201dc479ac32d1c2e2ba934434372e5d7b078e963b4ca7ca9704cc6e54a405e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 721.1 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.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 746dd560d6f48fd78ef6405cfa0be2de12701f3ac4dce05b93c613571cf935fc
MD5 e7caf55b3d972c756c612dc20d203e3a
BLAKE2b-256 0cb522e24039c5ef736fed18f2e17bdb6fecfdccbbf32cd0674a5013f6d2469c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c409d9f8eed42d6964fb54f90b1f4f5dfbd77388f80b3213d2260e9c99673d49
MD5 e2e00a6d16a1eaf91bf847ef5f129ecc
BLAKE2b-256 e724588803e9eb6fd0ecc8fb8f6fbdcfd9b5303a4e15de34a090cfad7a0753ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 646.6 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.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f18aaabbe569c95ec707fdf9408aec4beb2eee5c692802eb11839c60144cdaff
MD5 ef840aa4ea6fc29d8da6b50f67232057
BLAKE2b-256 e518c273aabf6fee5286e1710b65fce3534199f3c57d8c2c7bf833d5a2d8f8bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 488.1 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.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 2c97daa0771c91e361ef6c5a307b5e999418e8cb57a34bea79b76939c3c8e175
MD5 ad2c86a20c5a2c44f6e43e1ace1bfebe
BLAKE2b-256 195e3fea3749b31c91301c0e8142128bf8db83ffdd794b0e7b0f06bd09338e35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-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.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 5651b93195e06e61763db66f4882f55de539fc026aa74115a976ee99fbc0b3aa
MD5 ed6a5e149ec445c0139ba004b10164f1
BLAKE2b-256 bf0d0e6b3b74f91f254037bcb82b2a57b9ee948684812701163b03dad3377e58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 880.9 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.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 217eddcf680e989a707cdd015f05af9de7c434ae0f092863ad24f0fb94e1af88
MD5 760033aaeead9be661784a3b118a7244
BLAKE2b-256 f42a3f45478966b6d9b50578411e127bce1921cb8fad211e016e9ac6ee6cd874

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 918.7 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.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 95ecdf473d330d8a76de17b40a36bf99ee9d4060a3cbd3b86fe515256da9e958
MD5 a104fe1633942378c4682795f6eff822
BLAKE2b-256 7022a5f43c3b356879df186cd581522300dbda2ab5fd63bc12d396d82ba63390

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 942.0 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.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 57862146f4649cb9111860430afa12f2a86b080490b10650f22f1aee008339c4
MD5 432f9dfc3d7b9d2f8be50752e791a31b
BLAKE2b-256 e9b18ed3d4348d3622147340ca41b2621a0c02d8bd1beb93da9401fd4aaf0ea8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 851.0 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.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 794366b03a1ea66b743aa2663e78975bef7bfdd52c7d5de38921987ece95c0a4
MD5 2ae73738f00d4f61069339cb348b4532
BLAKE2b-256 4fac934fa66ed2ac0472e3e10287a14aedeabbfd035aab652a423958f5fd1929

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 670.2 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.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c7315593e72c012d6687f92a96938200cc558a84fd10fbfefc1c6919036b467
MD5 d34a98c4d7f30378245d9dd857f82dbb
BLAKE2b-256 9cb6d489e828a44c5d8858fc214d20c6baadeb4c9f54ec2ee980c89678e1f91b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 699.7 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.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1a36feb589ac9e318e1f8b6be275ba2ea153a6b689c9f381bbaee7862f14e78d
MD5 aa51a40e7db85a7720bed2f61da33e4b
BLAKE2b-256 875ecbb163cae52de0fe3dbd1fc9375a8f3bdfb76faf9b521797b1b51f400a58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 799.0 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.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e6c8200913ed988bbe6707b60b218683de0d9bbf25477176107da1c096901d8
MD5 2da0dd1786ffe4ca763a5c446f28d77c
BLAKE2b-256 f77d3c801c5799ebe89a9908afc8a3e94e910b36dfa4447e3627a2450316286d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 670.9 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.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d96fbe549aa1f62b9d155e5e8eaeec90bb44a3f2c69c004a333dde5ab27ed77b
MD5 6fe103856e083dfb1378559282ae8e71
BLAKE2b-256 b2eee646011fd13b18b97fcacb4367bc5671b486459f384aff54825aaef215ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 668.3 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.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db8bb960b78b8ed80c1665141e1415fc28edcb559a641856ecdd1ce76c1ea1d0
MD5 f42e9fd25cbe1e4ff9fd2cc8741e36bc
BLAKE2b-256 1c513bc443c5f736e2c9b4fd44e5b834a51d21932517a85f74bf4a0aecbdb9b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 719.9 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.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d48ef7d1dff4674370823aa49af9a91ef4c214e27c53b2ef2e8f934b9d210ec5
MD5 81bd133d295648430f37c585b486364a
BLAKE2b-256 504b252731cf44e5fe0284e98fe69d02286a6b43d1efdeeba8465864659e6892

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp313-cp313t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 626.7 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.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db4c91b0094fff6e7046675011b313d09775ae2967b8da7f0851cbe0d42f0da1
MD5 4d1ecb0010b2c415fbc532448520fb9a
BLAKE2b-256 a659361f54be13df8f3b9ab7572b6152731691f2d189734e62603b2d97435ec7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-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.1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 39659e5adc420ec22180be3102044394e3e32a1d01da895d7927127852cb142e
MD5 83ab3365fd0b569b0c8755b0b94ec295
BLAKE2b-256 0488b1bcc3b7d1ecacdfc2dd9bb2dae3a647d015858871d7e01114ba7bd9a3fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp312-abi3-win_arm64.whl
  • Upload date:
  • Size: 463.2 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.1-cp312-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 86e29d88154b0782fdc18418ac167be57d1e1a93527a908561f8b08f682fe2a8
MD5 e31373cd456fd3663a2a67043866c53d
BLAKE2b-256 27777b3ebc979fbf4f267b7a2affce6b043be022fcb63559ab820eccada13316

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 494.4 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.1-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 6edeeac17cf4206f82e2201402375adddd24b15de7589dac041ad915d19d8e30
MD5 06d8008ea768a1084f66322c20a6283f
BLAKE2b-256 b6cf21dd54cf3cc8ff64b408d3f0c506bc59a8016fa1a37a8114c036775eee90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp39-abi3-win32.whl
  • Upload date:
  • Size: 462.3 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.1-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 4694f4ab4463fbc81651b8f200e2e6f7f3231077bd0691e87fb075b12e1aeec3
MD5 e635e95163d055e371a2f9f2e1ba1867
BLAKE2b-256 32f57b93a6da0de134cb0862a0879cc28482c4e26ba2a64dbe6c92fb0e2f9f67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 889.2 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.1-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c4b7da0cc25c76852c28e08198846accf9bf51bdd24ebce7425c9c7265deecb
MD5 c357e510c63bf55c2c57710a51575295
BLAKE2b-256 cd1d7553276a247fa0bcf10fa1d906f2df964ee1a7a068d85ae0683a8dfb15ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp39-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 930.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.1-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 73e41c8318afb711aa77972a8ecd69fa318dcbf94924dbd3df416991d67ab0e9
MD5 3e5759b20517637a0a160b407b739e5b
BLAKE2b-256 b9009d5ce1118eba8e5467a466cc9bf9cbc8fa235dd99f9cf483155edde61130

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp39-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 949.7 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.1-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c10b2f5cfa9484ddbcbe180b6db98bd005c8478d188489a726d4bcb24263ca8
MD5 57cd16f9734009d31ad63ce42501436c
BLAKE2b-256 22370ab2a0a01b571c0fd2a7eda299f4a52bbc5971e2714c4b3aed4117e27ae1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp39-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 859.9 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.1-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f320bcb69072e2cc77f8b5d74594934ed389ff43ee8eaebbb335b95d10d8604a
MD5 5023388f626e4052c2103c337a7fe7fb
BLAKE2b-256 d04cc57def8032287fe93d81c89167aa697095de7eebad3cf67270c144a731ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 677.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.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd353e02aa7f32204f26afdf0d706e30efee4a9a43b3f2f186c518bbf59eadfd
MD5 36060d84440d0cf441dbbd30acd607c6
BLAKE2b-256 a79d93179e27fbcf7f1b96ba34f7d6e02da4c502207f918391a430aa17f22e10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 709.0 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.1-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97494ecfe225abcd0838e87e7474eec7caa356a675b5e2e678675e314adf0830
MD5 805e163ccb8ae2c9d492d19227106d99
BLAKE2b-256 efe9187c6f2bb45f50f81db128f080ebe2f2b6c7a285dde6257a90f06db6d278

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 805.5 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.1-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d369aeceb0401bf189d7917b4e7af5dbb6a98df20ecc18a8eab0ddaa4171506c
MD5 76a7ad50ca9d89b02cc1e35e4f03d01e
BLAKE2b-256 a01d6e396e9475b897afa80867ecdac08ba6bb31cbf37ecf43c1f266d5f30e73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 680.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.1-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4319cae922c1a18fc9f29bcb4c5c3b8b6311ee7e22fd6d56637e7339367c3b6a
MD5 e135f27b8602e6272eac89be0822c22d
BLAKE2b-256 cef7f9f82b909f535c65b86f185a5c0919a8b9adb2dd961008baa3c3dde74a03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 676.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.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26ca60e04271071f8e980b60d3c412f08f86889cdf2ece7d8fe65aeb7cf03bc1
MD5 0db76921620d4f892b2db8477d72f9b3
BLAKE2b-256 7ea4d857fe7bbe8b40fd8d46ef6fc9a8e8177d00c169d12b2fb5f5d7d3faa638

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 730.6 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.1-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bf350e2245abe623f6b2a0990ced0fd049f38017021f593556ace6d5c283de09
MD5 188cefc4aba60243b82acee6678767c5
BLAKE2b-256 42a467b28aad931dfd22bc894773dd4d6f91a5df18631f5a5d57c5357f690f8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 631.4 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.1-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d07c61a2a80925855d6d9f0b968f44c10c2771f65fa1ec6477f2c254df06c60
MD5 afe35cdf52ee825dd05727839a7170c3
BLAKE2b-256 9ec3441d58d800ca31e94a8e1ed5a0ad7aafa3a87b7680df1d9cab9bf709d0e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.1-cp39-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 653.3 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.1-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cbd1609106c0dfdca6ace7a35724399a3f04aee296808d313f17d91582590077
MD5 6e8bbeb4851f867495e83fb12fecbffb
BLAKE2b-256 04c964889198f33a0d9a3f2db7b46cfbb31fa590fc4af4217dbba3ef2e948540

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