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

This will produce the following YAML:

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

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

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

print(
    Workflow(
        jobs={
            'check-bats-version': Job(
                steps=[
                    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.3.0.tar.gz (54.4 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.3.0-pp311-pypy311_pp73-win_amd64.whl (509.8 kB view details)

Uploaded PyPyWindows x86-64

yamloom-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (896.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

yamloom-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (937.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

yamloom-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (955.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

yamloom-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (863.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

yamloom-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (683.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

yamloom-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (712.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

yamloom-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (820.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

yamloom-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (686.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

yamloom-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (681.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

yamloom-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (741.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

yamloom-0.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (639.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

yamloom-0.3.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (668.1 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

yamloom-0.3.0-cp314-cp314t-win_amd64.whl (510.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

yamloom-0.3.0-cp314-cp314t-win32.whl (472.0 kB view details)

Uploaded CPython 3.14tWindows x86

yamloom-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (895.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

yamloom-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl (931.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

yamloom-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl (956.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

yamloom-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (862.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

yamloom-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (682.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

yamloom-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (708.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

yamloom-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (813.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

yamloom-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (686.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

yamloom-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (680.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

yamloom-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (733.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

yamloom-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl (641.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

yamloom-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl (663.1 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

yamloom-0.3.0-cp313-cp313t-win_amd64.whl (509.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

yamloom-0.3.0-cp313-cp313t-win32.whl (472.7 kB view details)

Uploaded CPython 3.13tWindows x86

yamloom-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl (895.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

yamloom-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl (932.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

yamloom-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl (957.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

yamloom-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (863.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

yamloom-0.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (682.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

yamloom-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (708.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

yamloom-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (817.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

yamloom-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (687.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

yamloom-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (680.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

yamloom-0.3.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (734.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

yamloom-0.3.0-cp313-cp313t-macosx_11_0_arm64.whl (640.1 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

yamloom-0.3.0-cp313-cp313t-macosx_10_12_x86_64.whl (661.6 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

yamloom-0.3.0-cp312-abi3-win_arm64.whl (479.8 kB view details)

Uploaded CPython 3.12+Windows ARM64

yamloom-0.3.0-cp39-abi3-win_amd64.whl (515.0 kB view details)

Uploaded CPython 3.9+Windows x86-64

yamloom-0.3.0-cp39-abi3-win32.whl (481.3 kB view details)

Uploaded CPython 3.9+Windows x86

yamloom-0.3.0-cp39-abi3-musllinux_1_2_x86_64.whl (903.0 kB view details)

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

yamloom-0.3.0-cp39-abi3-musllinux_1_2_i686.whl (945.2 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

yamloom-0.3.0-cp39-abi3-musllinux_1_2_armv7l.whl (964.4 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

yamloom-0.3.0-cp39-abi3-musllinux_1_2_aarch64.whl (872.7 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

yamloom-0.3.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (690.9 kB view details)

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

yamloom-0.3.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (721.1 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ s390x

yamloom-0.3.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (829.0 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

yamloom-0.3.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (693.2 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

yamloom-0.3.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (691.2 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

yamloom-0.3.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl (748.0 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.5+ i686

yamloom-0.3.0-cp39-abi3-macosx_11_0_arm64.whl (647.1 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

yamloom-0.3.0-cp39-abi3-macosx_10_12_x86_64.whl (673.8 kB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: yamloom-0.3.0.tar.gz
  • Upload date:
  • Size: 54.4 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.3.0.tar.gz
Algorithm Hash digest
SHA256 2f3240354f7279fd493affad80343474b36069e9b57fb837d608fe3c363d4fbc
MD5 1ae2489dc2b2973b2d718c19f6f4af6c
BLAKE2b-256 8a1458392bd4291e4cc3a76a515279b16abeabb6c4e29967badeba8ac3f62204

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 509.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.3.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d1d351e9592480c81ce3b787c501ece8e180c77f786ea0114dfea3a9f26f1065
MD5 12ff1ac000ee5e5eca4ccfdcdb220af0
BLAKE2b-256 6b86399fc0148d2430f02e3d1f84031d9d39fce196d316250cc003a6a363be7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 896.5 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.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38813badb523f08bbfe4cff64fb3d66fb784a75215fbc908c778c5168d3d5cf6
MD5 531786c0e4a86b9c087a8d30f96c00d0
BLAKE2b-256 a68882a7b7d7c3f8608ab3165acbaede2ab4fd2be67ad1f11e5fa607357ed9ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 937.0 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.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dfd57a5e1872e88a89d8eac3ff09b1429239b8778c5a3af90961aa046175b33c
MD5 8c20262d14f06b15123860a378358c51
BLAKE2b-256 0c1f610f98135d648e0f8e0ce5cfbdb3c72f62d820ebc20e8a466e26a14c8d21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 955.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.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b45860691bdc11e584134bcc50b8c50e03a8959825cb18d44c719ed3c1cbfce9
MD5 951faa177359ca20ea6c0b37c2ba8adb
BLAKE2b-256 1e6b22c358bfc0bfbbc30c87c1fc0d5c54cb036f40c31a487f088b95223d8071

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 863.7 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.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6bf53f52a0b2e33d35c09bcf96a585033ca1cd94d64dc22627745c00f6f331b
MD5 9b68192320739371c208274487f6b1cc
BLAKE2b-256 88fdeae5c17833fc52de28d40709e5a4fd9e55cce266075f15706538540f69e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 683.8 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.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8914a89d322a67d0ec7053b00934eacfd9188b9fa49f0d503899506a495dd5b0
MD5 cc31f14dbadde33f80b407de0c17dc50
BLAKE2b-256 c091cb374a0c711772cf31f1584cfa0bac0060e6e34bd0119103cc618d1971b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 712.5 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.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91e8899d5bd1e2a2a5a9c1056e17bc9a8b2ef948f9f0a56d14fc7402c58302e8
MD5 4f7e64ee3f33663dd734584a84a2ca40
BLAKE2b-256 602635da54b0d92c1e3896227411012a017349e4cee2962fd43b71c1217c266b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 820.5 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.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9ed363b9cfceb9d2bd2a46618b336ffd310fd425ec136013fbba5be63d15da9
MD5 7db2a7e1de1b64ad70ec9a08112e0dae
BLAKE2b-256 140460839c3c75428333ade0ea8737e0335cd3dfe5b6d70ec707241db593f73f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 686.3 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.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a3cd9b9ece4f7ce94a1d36202c8ff89e48d46f7a4f8bd90da8632fa0ce01d2c6
MD5 41fbbb733445f51c4dab3c5543d00aff
BLAKE2b-256 14a96ecbdbb1fdeb9d9dae1086152a27632fcb493232ab349019683d980f99fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 681.1 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.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e84b35c97f2dd1f09370eb23cf875f22cfb88a77c087d93b915a6259ff538f0
MD5 b76c6d4cb2e2090c085b0f31ef19d22a
BLAKE2b-256 d94d179bb91e5c89aa98d629b8f92e4c9b011b1a082a726f3bb06da03dd2f213

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 741.0 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.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4299153e6efaafeadc87a3ad6ad85a876c352ef903d871074c7a81a7a5017784
MD5 967c8855fc8d55be26afe8da6e0c268e
BLAKE2b-256 96d99f650e40639b146a1991bbd2bddd24c3949ab6f9ca682e45f3d6533834f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 639.2 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.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9317ed3400c2488e11863a39b3ac6cbd869e72a57e49af9fa33839902c2ed10b
MD5 6bae11efbbb61a3a0e0a0a28f4e57e61
BLAKE2b-256 b0e67a00496323fd3a7385fcb86f9f5a7b249aac33843c6359748b2118d404c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 668.1 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.3.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 675760d2af412ceb2d2ed05ca12105b04c57952d11741e28bc1067fecd1236f8
MD5 6f325931c890e83b74e7f8af16204000
BLAKE2b-256 2e3588bb1d514dd78550de03fff57b62d31bb0e0cdd2629f8ccb87342207c01d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 510.3 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.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 de450d080fcb34938486d5db97ba4573bc5f362a0a184db2091ec05ed6442ba7
MD5 4f0bb725e95e5d036d9b7fcb0f73a7eb
BLAKE2b-256 090630e076ae7e6dc5d436623b4d7cfe6a0348956c2e7b21997a4a0e3e924849

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.3.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b238ad5c40f42570fccbd917b09c309207482611a520f1e72a6c2b60e2b9c2a6
MD5 4c8870a0e1ff2cfde17480e9a1fd1dbb
BLAKE2b-256 044a13d921c30ae488bb1446352494e4baf1b0874bf3143876fe5ea936ba7fbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 895.3 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.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63fb2a40cdcaec29faf27129e697a3c284bb460d364c4c26daa47c96270e1e9d
MD5 e9cac392cc7e43bf23852c83530032b4
BLAKE2b-256 66da0160da311bd9df45bcbb7494392ea4f38f52453a5b5468a9e61767190a36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 931.8 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.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3231787337c6226e1db794b904e8b52b1609c1ce98e421fadd580fb8091895df
MD5 76f03f3159daeb158a98e106c0415d20
BLAKE2b-256 16ba1161bafe006453129b783c3c84f92e4fd6f77fb6c1ee31f70629f2eef35d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 956.4 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.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f62dab6f98b1248812d010af8ef494bdffef6aa088a795b92a2bf25ceec7959c
MD5 8cdff159e74394e40e3b245af7b17a3d
BLAKE2b-256 ce57765fd0ba2f0306fb5553ed6e129d4500a0039503bf0ceb0b9202ff3026f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 862.7 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.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3725956d87e3e56f250ce69d1d43d24ab60e34a95326139be2f35513e7a19609
MD5 86d03c6651df7d89db652554a6957ee7
BLAKE2b-256 1f9cda63aba1caa7a919ce749df99e5afcd6daab96ad6f5ccbaaaf0edb0eb600

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 682.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.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1a16c757a4b3ee32279498326d7de914842abe06ba7c4349d6fb4110aacedc4
MD5 f5ea5b153dbce7f520b8dadf4b44db2a
BLAKE2b-256 badedd236513a1414ddccbc7ee288c2f893d0a8388fdeb33d5c1ad142c2f3795

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 708.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.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab672eb4304f29a09e6b7604f5422fb3a1dcbb6d66285f7329ffd821d6596d39
MD5 7fabfc96ad83a1ed38fbcb1a99ac205f
BLAKE2b-256 5c0832b5bdea9991ffa851680f94c952316ab885de855ab9e78d9bb13386a9b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 813.4 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.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b0356e0a066bb49139de44dbedbfc7b36abac984b9ddd666f63af9486466a9b0
MD5 748cfa669a194b8f50f2433c24b2269c
BLAKE2b-256 ee20cdc8afd986b4e5a29a7047d811d7af42ae661770cfcc7b64e8d4d291f1c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 686.5 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.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 33989ec3fe0e2c72462b5e78600cebbb74b5fddf97fadd47e0e061722d0f8513
MD5 314c89479c32e783afb90d1b5e629387
BLAKE2b-256 5f8c11465b063acf3b79b50380fbb1f09f14ff1cd26f4fe80da92f41b3e87758

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 680.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.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6331a317499987cf04dbafdb144e4235aca980b9f69913db63efc752b8c8d60e
MD5 9030d5a512dd8e9808bca1b74cc37f9b
BLAKE2b-256 c63e4704c763d3b05177c763ce130beb19766b3a2303ddbe21ecebeb4ac27aea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 733.8 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.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 26bee6120742221049a142ed76b4b499afa1051ba43ccd9f85c5ef8753234c2b
MD5 ce0909042048248c56fbfa6a7c201cf4
BLAKE2b-256 fb22127653ca87b65c827b5355bacc0ed58c7e16a37cd61ba8abcc544142f8a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 641.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.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4620ac9232c04670fa6a45953b1f3d8234f177374fa58732c2fff3995f6968b
MD5 fe4512a615cb45394b6a2aebb82967a0
BLAKE2b-256 27454ee5d8e3d518f5b95247012d64fa29da2b9b700075502f48cb3809072677

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 663.1 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.3.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c0145c8ea1bbe417207040fe32921f237a2a860c611450e89071effeec7ab6cd
MD5 ff2d7b0d123a294207300304f21e244e
BLAKE2b-256 8eda3dc6ab5f3110110e02cda3339d2b29d0e73e486df46e82ad76680fd5aa0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 509.0 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.3.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 3de5c94783b51d38eb5149dfeb16e5cff3109284d7c471c289e77ceacd3daedb
MD5 86f77e52a80e6631d068496d9b68f519
BLAKE2b-256 b699c6050b48baa0051877ce6f7b7e0f0887605783d2324119b59165781247ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 472.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.3.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 85cf478d242793402272246e02681d831a02f223dab1f80866d31d8a358cf340
MD5 2e0a8e15f61e4e081be4f6c4cd200632
BLAKE2b-256 9544f4fe8de30f2aca6a7df2db750b209aaa0e1d5b6248c8c4158e549f7fa4a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 895.3 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.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9016d9ae63ad01df467dc4c52942e8402c10e526cbc9f5e6a132531719899ad2
MD5 d527d8b1c2fe448fda2edfe8ac7832ce
BLAKE2b-256 a981b02a4c955ba64f009686940e49d1f3134cac271ef6dc7c016f1afcd845ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 932.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.3.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 339e0703541221cf01e480eeb686d1cae517ad436a595b017bde3c724b0d2698
MD5 acba9043a4a0bf63be0d22e71d8ab326
BLAKE2b-256 7d4d109ef812e67bda1d084387d32c7716bcb7ce8b862d6d36edc03c948d5236

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 957.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.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 48dd677cba95db5b6cd0fa38d1fe6c3b199fbb5a63313a821f5724962f5933af
MD5 0b6a5b45c487fab0373acf17be4ca617
BLAKE2b-256 c0d73e10b7e6d905bb6ece810fdb90beb6d0f202a646114044cfe6da3d08f7c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 863.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.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a28308f7dce1ce4603e6832a382b498cfa59a85e0b3787a9a5a7b14a9004cfa4
MD5 682670ec5687c204859c48893df56fc7
BLAKE2b-256 f4580a7c467cf3d2364430eb110054ad8b446143f0e8d9667e5cd4a611e169aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 682.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.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a704922d9c7082ced83b2e411e6e2b298b4e82ad4ccfb975475e87a268500ac
MD5 e5b77fa59be335826f5203b1f079e6be
BLAKE2b-256 60132106c0b4acfbe85e2e5d3554514e350a6b7ca3d4a8bcfe0bc16b20c0e5fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 708.9 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.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c1e78b3c244930113e703d102d40cf6fa17f6440bd6a792f136f20397787932
MD5 584e93ed67c880b478342af5d24d1a79
BLAKE2b-256 4a51222e9bf6ed509313abbad52862828e8d38d57dfa586df17bef83d36a6f98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 817.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.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f7a41fb31fd3b05c5ed6f2a3d7ddea4c18cc798bea273ebaa1c8568de7568b2
MD5 260a343b184eaab076b910ded431643e
BLAKE2b-256 c4ad9360b2454a5ccfae51bf1763c6136b85dc6e38f1c325b4c0433a9d3b445b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b9f4121f1b0e8b1af46d9b17cb3d7b5d8adc15783a320945329856cf993572dc
MD5 908b1ec063ece4366b7c4edc1f923028
BLAKE2b-256 86a160287926c873fda2832b540fe23d7756dcfb49a9107fc7d1c9fcedf63256

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 680.9 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.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcc4bdbf45bb9facfc856506955399705a1740d42f2ca7618536e8197c2d067e
MD5 855339b6adc573df13ec65788381694f
BLAKE2b-256 6ee360321419114a400d522e8cd3c65ab9379d66768eb8c3cd400217ab8aaec7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 734.0 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.3.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 08227976761e5590cbc5b802551c9bad4956d7902927a466d214e99029dd68c2
MD5 a80cdfec20494e4519b19248991270c0
BLAKE2b-256 6cd7dc8bb8c293a27dfa7aeb2c7b55a7a097ec376cc296761fe67fa6fdffd560

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp313-cp313t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 640.1 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.3.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5d55f2ed759b8c9976e159c7c3d112aa24094fb6f50a041511d3b73c10315b2
MD5 9f5719c1fe2cd9da2cfbbeb2bc2f0dae
BLAKE2b-256 126ce35e28516e2917069b99280a672b8b7ef1eae5249183dfe9b3e4b889b5f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp313-cp313t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 661.6 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.3.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fbf7d1c52d72dec411dd3eae75164ffc81b6da7ebfc6bf437b6cb08c6438bb1e
MD5 2dcbdecaa1c55c8a981244e49f2034d2
BLAKE2b-256 b04a2c56bffc148e8d7f093cf704e717e4ad00378a15860eb1dccb3b2fc005ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp312-abi3-win_arm64.whl
  • Upload date:
  • Size: 479.8 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.3.0-cp312-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 397a56b01db52549b379573b1dbd64123f6f35e7b6483bd63d31254fdd3d0754
MD5 dcfabca173b654119aaaf60d98025955
BLAKE2b-256 2a0b8f17439decc7ce2a84e0a989b168a30765156cd47f7d19ffc7f9865c77ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 515.0 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.3.0-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 6907abc30208ee06bb69ccc5b9f86ae16177dbe266097af11a663f93e5bde98a
MD5 8df997b4813ff91ff84a3bc6c873b3c1
BLAKE2b-256 e9afa179464bea543d703a8ed896545b6258f859293ee33e76cae71dc86e5564

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp39-abi3-win32.whl
  • Upload date:
  • Size: 481.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.3.0-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 9f99cb2c23610fa0429703cd3aa639c8ba7c6782a6ecda18c3115f86a188ce03
MD5 182188372eb68d1735c6db68478022b9
BLAKE2b-256 c3f1feccd5fb00fb0e0d1bf79fdd458185e72e108e290fa157282044894ed726

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 903.0 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.3.0-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7d1a8acbb339014b04f533941bdbfdfea33b6d7b17b3ca51fee512ef57790cc
MD5 09fd46d41d9d5f01418d7b709340cb03
BLAKE2b-256 ded7705b54e19eb4d36edf4cfb8d9a30fef2f149af935d1a83a6c216bcee7e90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp39-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 945.2 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.3.0-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 47621974b143fa0a27d031b65673d2a212445e8700ba4fc95c651ab1b3aaa57a
MD5 719e1dff96ce528d47e3be957dc5a8c5
BLAKE2b-256 a9c4c790bcbbd3f2a335ff344268912e3837b84fa12ae955eef00e666f330eec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp39-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 964.4 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.3.0-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bae69721ad29c9ca2a11b57f0f0c4a2a73182a41178033fe560f99163c7d9844
MD5 26642e65457db1f3b70ea48acbc85c64
BLAKE2b-256 53eed67c81e1addf2598db1f5acc88f750410d065c076c398ec5bc34330a170c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp39-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 872.7 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.3.0-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd7cda5ad613de5501a98ea5611e1c41cf8ad430d761590729d4e377aecc47cb
MD5 b3b2f55bdbd264d5533c6053cd603352
BLAKE2b-256 5c0e1ea16d29c1dd5bc527e2831260943137589a80f503ba290ffb9981ec0a8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 690.9 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.3.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd35b28aa59f23f083ef2c85aaea1d11d12c52495f57a0498e11f05c46239a03
MD5 4ee590970e33f6522f3795831d00dea2
BLAKE2b-256 f6b8f09983e0f2aa6b7b33fa76a6775f788e253cff3f9e1d8a0e5e55296aa414

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 721.1 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.3.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97f25c7e1320fd7efe4013957663d8629ce2bdf5403e57b030d0b1ce3fe3fc57
MD5 119a4b38e132b3983e100e0de74994f1
BLAKE2b-256 88c69ca77581ab79c309389d7be543f698aebbc6ff4480f9ecbd68cd212f3b9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 829.0 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.3.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbee0ba8e74971d06190aecc1f138b874e166f1692182874c493d6f71580ae77
MD5 1164ecc91008fa811754a57955df7c69
BLAKE2b-256 37bd7eae34010b9eec912a22b7ab907cf180ef26870fcc18575554601799ce35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 693.2 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.3.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bfdbdd8750e3acff8220a8bcac01db836da78d5509bd7ffea258bff67cd92c3b
MD5 8c0fbca051f5490e1e062e7a8a5684e3
BLAKE2b-256 141b64feaed38a0de192bfeaa926a0aa26884c21dd58c30a53f8f334da8b9f5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 691.2 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.3.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4188f4f045b652c517046ad69c3e08d57ecd5e17ac470d5a98df2e9c92c5c8d2
MD5 ff5dab77ff56e47b06a38f8f25e2f2c0
BLAKE2b-256 7d0b3a0456b5e72232d88c51c0b557771e76bdbab1a3047969c6f6112250bffd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 748.0 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.3.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f25f19d5f975a5464a59da424b2c0ca5f9569bf05a8059d77fd5d05a4bfb5ed4
MD5 ae2974ae1ca4b6dec0d641f2d69d767c
BLAKE2b-256 9a51171125d26a23fe88a4179803acd847ef472b28927f9a2e65222e3e83a75a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 647.1 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.3.0-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d36cc8326164c0f1e7808f81a031511f29c6b27ce06da045e0a082f841b97e9
MD5 8ec4addb20fc358ab31ab924b14cbe69
BLAKE2b-256 6e2747c6a36fb90a6137901283ae5a27a7317016e759c0167fa9894f74ef30c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.3.0-cp39-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 673.8 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.3.0-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 339463cf5f12ef324f03cc8bd067f98f1f21860656a36d8e7c0f6e54358f024f
MD5 7193233d533bf374be94b61a591b8a19
BLAKE2b-256 0d6fdc0f5a5d35f590a4372c1d7d9a78edbcb6f463d54eb040633418701ac082

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