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.4.0.tar.gz (72.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.4.0-pp311-pypy311_pp73-win_amd64.whl (536.8 kB view details)

Uploaded PyPyWindows x86-64

yamloom-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (923.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

yamloom-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (963.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

yamloom-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (982.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

yamloom-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (890.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

yamloom-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (709.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

yamloom-0.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (738.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

yamloom-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (846.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

yamloom-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (712.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

yamloom-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (707.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

yamloom-0.4.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (767.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

yamloom-0.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (665.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

yamloom-0.4.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (694.3 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

yamloom-0.4.0-cp314-cp314t-win_amd64.whl (537.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

yamloom-0.4.0-cp314-cp314t-win32.whl (499.1 kB view details)

Uploaded CPython 3.14tWindows x86

yamloom-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (921.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

yamloom-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl (958.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

yamloom-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl (982.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

yamloom-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (888.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

yamloom-0.4.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (708.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

yamloom-0.4.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (735.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

yamloom-0.4.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (839.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

yamloom-0.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (713.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

yamloom-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (706.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

yamloom-0.4.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (760.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

yamloom-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl (668.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

yamloom-0.4.0-cp314-cp314t-macosx_10_12_x86_64.whl (689.9 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

yamloom-0.4.0-cp313-cp313t-win_amd64.whl (535.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

yamloom-0.4.0-cp313-cp313t-win32.whl (499.2 kB view details)

Uploaded CPython 3.13tWindows x86

yamloom-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl (921.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

yamloom-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl (958.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

yamloom-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl (983.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

yamloom-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl (889.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

yamloom-0.4.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (708.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

yamloom-0.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (735.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

yamloom-0.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (843.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

yamloom-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (714.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

yamloom-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (707.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

yamloom-0.4.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (760.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

yamloom-0.4.0-cp313-cp313t-macosx_11_0_arm64.whl (666.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

yamloom-0.4.0-cp313-cp313t-macosx_10_12_x86_64.whl (688.3 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

yamloom-0.4.0-cp312-abi3-win_arm64.whl (506.6 kB view details)

Uploaded CPython 3.12+Windows ARM64

yamloom-0.4.0-cp39-abi3-win_amd64.whl (541.6 kB view details)

Uploaded CPython 3.9+Windows x86-64

yamloom-0.4.0-cp39-abi3-win32.whl (508.5 kB view details)

Uploaded CPython 3.9+Windows x86

yamloom-0.4.0-cp39-abi3-musllinux_1_2_x86_64.whl (929.5 kB view details)

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

yamloom-0.4.0-cp39-abi3-musllinux_1_2_i686.whl (972.0 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

yamloom-0.4.0-cp39-abi3-musllinux_1_2_armv7l.whl (990.6 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

yamloom-0.4.0-cp39-abi3-musllinux_1_2_aarch64.whl (898.9 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

yamloom-0.4.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (716.8 kB view details)

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

yamloom-0.4.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (747.8 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ s390x

yamloom-0.4.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (854.8 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

yamloom-0.4.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (719.9 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

yamloom-0.4.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (717.3 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

yamloom-0.4.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl (775.3 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.5+ i686

yamloom-0.4.0-cp39-abi3-macosx_11_0_arm64.whl (674.4 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

yamloom-0.4.0-cp39-abi3-macosx_10_12_x86_64.whl (700.2 kB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: yamloom-0.4.0.tar.gz
  • Upload date:
  • Size: 72.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.4.0.tar.gz
Algorithm Hash digest
SHA256 1f6ff5079f3c797d8816b750c89b9457908a6119889176eeb069c84efe67cf5e
MD5 a882516fe9b65b372c9bd0c36a08bd31
BLAKE2b-256 5bfb36ca3cbfe762950c79cefc568c6c25c1ea3be3f181e8727fa95259d06f06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 536.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.4.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6d6632a57256c2692b8b451686bb654248e3f1f68beab0a0a9a58b6035ec6c67
MD5 390b61ba8013eccb464a78a8962fcfc2
BLAKE2b-256 b74f91eb7287d4310f570f9d8c8d5ae43d14a55b3357a0f479451fe2f87f7e2f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 923.2 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.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 29fee6183976ec6b31411f7c671ac1cca59b82e251b49434fb59559bc4130102
MD5 6b85db10a635335ed4aaba9a40b23bfd
BLAKE2b-256 4f4bd6d9838790a0ec9e792be86a052b0eff66164d9352100d58843dc4469cd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 963.1 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.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d728b951f1f98578d883bc080baea46edc7a02c34b98d827565d87185931997
MD5 0e235db8e90c9be2dfc4a3aad4b25430
BLAKE2b-256 f030bafb968dadd40365b99d1f3827894943dca7d12937d0bf466e15961e217a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 982.0 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5346780306826146c782978dca3fe7132cd1a532ac205d70ec445500bce7dd50
MD5 c3ec57cc40e3509a22ee2aa34f641489
BLAKE2b-256 f4ff1d2a683860fd6af26fe3a87f0ef78949ec7215a30603dda5d83bdb14aaaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 890.1 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.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8cd1a7e15b7225f45dc0150ce33a4cfded6368fe3c33a0b96e5a96c228cd9163
MD5 681a3f5fa1af068dcfdad8cba7c57aff
BLAKE2b-256 09aa294682c176911b0aabe5c338def67451582405999a7abf4bc199de4bda71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 709.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.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9b31e5303bee548d98a5723cf832085983917862659f1e9561d988df13ce91f
MD5 1c4cd6ce9c7090c5ad0f177111aa0408
BLAKE2b-256 0489da2c1d64aaf3ab78c7febc87ff79901726c099344ab6fbc0b4cd7017234d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 738.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.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 44e11250b4236e9718317a030557bc50d28ed2eea4e5808439da90a0423862b1
MD5 25f3c7e1711b80c2dc56033d778c92bd
BLAKE2b-256 8c40e10bc06df78a73de99ed67f0a929ddb58e2b4553a861432eb5b1ec2949bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 846.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.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f7781efe7af7dede7fe310ea85e53e012f1f7537de6a71f98df767e2bd0ccbc
MD5 1a48b92ddb92f99c5748e6c464ba3247
BLAKE2b-256 ebe6fc6f68100bde9650fce74f6600dd746d99b81a8f10618b7c030fcb1a057d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 712.6 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.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4cd830f68c06419194aa49ba803298cc9aa8635386801412ae92c4556394ded3
MD5 63b0c2f7fc488eeb91eba17e8d37c54e
BLAKE2b-256 f20bfcf41d8640a4f1b027e0c1a28c3b38d0248df44e9f6df18a731370c6310d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 707.2 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.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3fa00235f10dc5129e6bc92a0b2ccf1dcfb6f8dea79e8793f94828499d02733c
MD5 032076562d692f02a561db2dd2568555
BLAKE2b-256 645253314ca72588feb2f29fe22da9d66ca683fea364d6eb759f13f91057686c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 767.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.4.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 15a9f2b837b0752634f435873fd90022b2e59ddccde67106fe2279985dbceaed
MD5 1fb5ae508be00f5ddfffdcc1abd16927
BLAKE2b-256 622caf181266e29cf5b101433d11bd88e3254a254f4536d7327e6e7a75ddbdd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 665.9 kB
  • Tags: PyPy, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f5fb9d72d4c95cc2f8f9960e3ea86f26c854a14dc634f28f515ed807293981b
MD5 bef9899569c4ba4bcb14579f19bcc6d0
BLAKE2b-256 b64de3db89679f16358020bc244c9d542eb91dcee33bde081408dfbcc5a908b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 694.3 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.4.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c877370081e6ff6a12b6e0a9eada5fe970ad1f2ed177acffcc473423479b623d
MD5 e51263886c8d2cf1c9a4c6e34eef212f
BLAKE2b-256 0def2930a9857b43a69762b434fddbc17910bb7e221f8b9cf42bcb44035d2c00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 537.1 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.4.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 25e4863ff12e9ea67e614e084d335d511ff6bd0442da8405a462d0e8a0e88913
MD5 f97c6a626928fb5f961a7048b3737b05
BLAKE2b-256 ead0afa495d38b80f599643051109a175e1236a0518f84ef39d17efd673fec37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 499.1 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.4.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2abe902f20b285b1aa3c8274aae79aa748e93f39702f3dcecf57875950488c4b
MD5 e842eb6ea119fa8b5f9a60a7b4b6a410
BLAKE2b-256 169d2043c51e47f346de39221d59ee0c6b454e5efe07f3f0a70b52695e7a6460

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 921.6 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.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 812a19635e6528b8ecb2d25bedadbcc8b351da70e64aa86b1912c10e15e635fe
MD5 3756f666ca597e7317b335701ab2def2
BLAKE2b-256 e18e68a6ed2cfca77f34e203964ebcec8dbf93e8cf90fc97ef355520a9c2deba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 958.1 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.4.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d7bd7defeaa7f7e055163c92883b9bd086a807a96727fa39cdfc07fb99f8475
MD5 4d589df02a1ceb67f7d0899a9ee9561b
BLAKE2b-256 29a076b23157fb620d37a39f3a9b2b56e9dce776cf05dd86bdcce66d80326f56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 982.7 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.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 156c8c600ea2db01c7eb65edcf66809f6de301a3f738e42c7db8c9d5fdab476a
MD5 4d58ec62d7b6a5080281d6d9701cb5c7
BLAKE2b-256 c313494adbb124a92d27bfd0a7f889595384b3d0f26c0b6a2b93841430d163fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 888.8 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.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db8c854e261e0d099999cac16dcaed8427c40ea96a26946c1fccce4e7d7a10da
MD5 cadb1e2e690a4cefe7bccf3757762b07
BLAKE2b-256 3ac5c2e17561cbb0c9af21647a73eb423815d35b0f47125f14663e160ead2186

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 708.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.4.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8affdc35bb1d3558e25b97dd846fbcc6bc2cbe4601c3d873cc727b6ec3b0fd2
MD5 4145501d5f2ff8e273be5f5d42e0dea2
BLAKE2b-256 5041ce46e6a8279baaf2a222c0b03d5d05e21dec436880cd9fdd1485efde4f28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 735.0 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.4.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef6af03ff228ad7536b21f2eb1e29582af11f6e6073383c537cb4d9765989097
MD5 ccad1e90c83f746e9b4e4b27059576e4
BLAKE2b-256 ae48a1158f67e3b28ad72e490fa9270c432bee75843a748c5376a9905928fe68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 839.8 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.4.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ca3635fa8ee4c0632f2c902927d7abb2e1569eb9ec22fd95ab01bfa93a2140c2
MD5 5abf4c3136f259ef4906dbb36456f3df
BLAKE2b-256 669055ddd439bdfe58a576333bba5f428aa5ccc33f9ff1a09d6305beb281f7ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 713.1 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.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 afcfa57982445acd1452ef2d05776bce37311573d8e58575cd2544eb664d92e4
MD5 798ddffc4f090525786c2eb5bcf77b27
BLAKE2b-256 25f1f34489dbd943947531ea545f532745d7e94859c2c4c46dbe1cd5fcb240e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 706.4 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.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37fa1a591a0d3c166b082fc98ada524862e224451bfd20cfa644faf1689ff337
MD5 eea699bc1f5439fdb4d8b5ccff66e8e3
BLAKE2b-256 177dd4a290211622d3b9438d71651d8858e4aeca58afd6e4411de5f350657633

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 760.7 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.4.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cc26ef2d773281a6416da6c01fc0d4b4b79d43c4d20862873a257d75000b615e
MD5 cd75ae7c49ea4bd9922931969c77514c
BLAKE2b-256 153ae67d732ce37423388d84b6adbec4a6d15e707da7790e49b1d0e15bef5c16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 668.2 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.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82a5ae5318350a7c74f2ad6c237b786984c1b3790ec0b69d9a6e0e95ccaf83a9
MD5 043266613c11c50761b8e954cbe06062
BLAKE2b-256 4fffc1572dcb07d34089a3570e50ab69543b68433d187b182a0217d9c82425bf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.4.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f8a03e1923033797587cf69b4f57956946fdc7e97625aa069818b60a98becc0
MD5 af6c5d6ae81c5640a63c65e8a76cffd2
BLAKE2b-256 0c875b148eeebf47bbf8941c8bf5c361b48dbbfeb76018a04d4e5bdcc62c7e00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 535.6 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.4.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 5506c026a560bda3665c4305aa6424a96b715e2d48a9fe351b9b38913866f782
MD5 3b20d86d7533a117f0b0eaa6ebb233ed
BLAKE2b-256 829fef2a415454af8442fb0aec5a06e1a0238b6677ad296b10545fd177c77138

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 499.2 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.4.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 d74154339a0d28b3a7527f21e866e143770f2b3d1f18492d7a98a6440f1666a1
MD5 7a690bccaf56447e9a2ce8c4f0a007ff
BLAKE2b-256 36ec8ca2653ba68a2918e0db3507ac35979cfb1ee0a17e6f9f228eb75326b86f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 921.7 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.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5dc6a2f4ecaeca7a3a133218823e4b6e7f2b15ec3d1de4c9aac85b9be8d67a54
MD5 fe8d9338ac5055ead0a02b760200e5d6
BLAKE2b-256 d3a190d87feee83eddab1d5084a4cc67990e4586384d921bbdb2768d8a0888b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 958.4 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.4.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 07ffe2fc40fc1b2ce13652988c9c305c7bccb03a44aba0436584b647edac1c71
MD5 3b80cd27c6d0e1ab5daf6a34808fe743
BLAKE2b-256 b710c99f07b634843939e4fe33fdd431fdc08c4875b7e3b01d9f20ea9daccb90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 983.7 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.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b80af430816d3d3deb8472c88735e62dce5ced634e0e7baa9f456d9cc162b56
MD5 b6d8476fc4fc87b70fe5cc7c21aba189
BLAKE2b-256 7ff177b66c177eb7a9cb4c48f53df7cee6c9aa1c9774d505d2262f5f8d7c2e87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 889.9 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.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e550bbd1ba0dd7ac4d8f13f76c8acc89398b8dbb44ac67e67526a4658e1ae521
MD5 f68ddf7a583aa4273321b3b6a6403480
BLAKE2b-256 c81c778e5bdca02517db979cd225c6eaadcaa14c612815516bfe366145c671b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 708.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.4.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5be73f7d3fee4c772c497e4f92664de1092e3dac34dab5963baf4e2eff3df0c6
MD5 cbd7ea3595746a70141c84fbb1744dfd
BLAKE2b-256 4a761a88a8158f7aae640ac787b5cfdf6d8785185f9b82bee55c3b0666835aa0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 735.3 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.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03cac12a945b5a040ac31ea20985923f459586098f766ed10b1e34e960134ac3
MD5 933439b95f729b8fb01072c9a6e4e2ab
BLAKE2b-256 d6ee7bb0f0f2f1eebce24f0ca34ed6a489cf90ddc2d5bfc09c34ff0c84be18e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 843.5 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.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96071e06b647c5d9fc5d8cfd19c4a5460e6516f292023a2ac0e30e5585e812ba
MD5 4faffada04f6d2d030d2dfbb04c5fb45
BLAKE2b-256 073ad8000c9bd5b8193fd1687f5c42f18d8a9a1c4a496ea29333e6ed8f3d2e41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 714.1 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.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0791b2d6fb607ca6cc67a26af767aff670a2128d44811965c25369e52a41a60a
MD5 b1fdf502616a5d7f6fd2b7b8ce8ec250
BLAKE2b-256 149727ce233acc395e01834398adccab68a01473e858d990c1acf36be35aaf9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 707.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.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 143279f9b1c7528420c426d19e86d9e08a3b22eb109765d46a2c7a4347380a45
MD5 2b641ab7a16c2d8d2623c6a2b9a63838
BLAKE2b-256 c791934cefc418ecd1589b90fb8d861c2c15cb75bf3c1ae76709bc5eab070f8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 760.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.4.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 34d4fbbec2fee5be9f9ae67e99c6831cfe3aab44975333e557f5d9cf89fb0337
MD5 512dd08801a9e101194ea41f0dad3640
BLAKE2b-256 fb7150fd1428a9983c6cdf3545922f44e729c651d698866e27c25fdc8c340d61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp313-cp313t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 666.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.4.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1048164a508500bb589d24ba4309f7ea47dcbdfb9fa1388f7b31941a584ed778
MD5 9bda97abd2495f581ff2bd5a3593ece0
BLAKE2b-256 f124962c76ac6eaa36d0d45b8b9ea27a14fb81f9c8822326b04f9cd3eed13a63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp313-cp313t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 688.3 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.4.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 931eb0204460f2604068ee1e26715c374dcf4638d378232f3807adb8d64e510e
MD5 26625b4788b20dfa70a93d20813bbc42
BLAKE2b-256 f84aee5c8f6544148a089d44e43ce16421ffb4d821ecd6bc35bd95256cfbdaa3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp312-abi3-win_arm64.whl
  • Upload date:
  • Size: 506.6 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.4.0-cp312-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 0d7fbfae07975e23e77d20b8551ce42be4d063fa8f49ad4d12b5d799c25d327e
MD5 b71a862f0f12a2b41438d7f03e8db3c2
BLAKE2b-256 56e69c9af60943d5592fb7a23a60c1a0a9760f96465c697963c753d2c71dcf8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 541.6 kB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.4.0-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 b078f1c2f546043eb0eb4fb5e0f3a00d388c1d5fda0cda8ceb9f9e5a8c73ac2a
MD5 e5f455a43fe6b102eaf6155591da0d3c
BLAKE2b-256 79438ee9c5c09b392dbc5eda3f2c10e7014be56eb0c57bf24912603f7e5c73a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp39-abi3-win32.whl
  • Upload date:
  • Size: 508.5 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.4.0-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 9e5e3c579b3a09ccb2e64cd83d1f72058636ef104b6c40b06e246196499a2b23
MD5 0e04c5a15e22f456bedc45e42887e26f
BLAKE2b-256 b405eabc452b33678a6c3cfa3d5915cb90f319002fab28aa9af6ac07f3c1e3b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 929.5 kB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.4.0-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2787409d822377b8af9acc571fe3fb4ff26f248d3d3dd9bc8a4da9dfa9ee62a
MD5 e7a8163124e6df320f967e979f719314
BLAKE2b-256 12a9936bc19b93cb3a80bf0639347f498290e1866fbe02a545a4112e34b1db54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp39-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 972.0 kB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.4.0-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b0691eb186b688c2d2593d6460161d90ccbb5414b4b204fe371773cc288aaea
MD5 60882b2a665aa5113202bc084a4af521
BLAKE2b-256 c1b4df65f02d2bd284009863a2aa1c257774a552fe55acb3737aec10dab300f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp39-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 990.6 kB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for yamloom-0.4.0-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 664fb569cb85b0cd9d7d9c1fa667d506408cea1e37b4c7ed1629d9a914d2ae6f
MD5 167b9534c844e01fbb1b7fb8025ef49a
BLAKE2b-256 57fef5043b7cfdbb0851bae99d372d35e6c01e5f1dc80a835186619b37eb18f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp39-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 898.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.4.0-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ffd4c6829d251742ae18c5c1e42e27156a748d87cede289ebed61a35e1cd86d
MD5 1734fbae7f4307e23897a203890b89c0
BLAKE2b-256 e07b5f5c59c8bda3cab49b50b6a503944fce69f80dfdad2db003ee3ec2406e80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 716.8 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.4.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ae20d1a8d173a0b64ea81c3e68bb5d6e385e655628298916ed20b9fe1053d90
MD5 70142b34ef061c770c07cafff2f33864
BLAKE2b-256 b5aa9c3e4d6a9c738345805919fc0b9a4e64d06dbfeb1c018e7afda55cda000c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 747.8 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.4.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 edcf480f2deda5fc6bbbef4f910bbff5ecdbf66ca4bc62c554f036c6da519537
MD5 e6cdb010492ada66e3182107fb2e436f
BLAKE2b-256 03eef38ce5d4c0438070f43b3c631bf04361f9bf164a9aca9c78316d14fd6ed0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 854.8 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.4.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 87f80601c433dbb7f9c56e757ced5486643f21f28beee9b39c01f3782453b206
MD5 5ccb6a9ae57293b9c998be8576de208e
BLAKE2b-256 5e323e07f079c4c2f0b4e4c42ba2a625ea4819ca5a3c5bf05c0668fa75291986

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.4.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba3767e45a8da687b87fdc6997d262f5932fa5ff2ccf866e6b4f5045f19181e7
MD5 2743225a90592de2f1b539a1677b733c
BLAKE2b-256 99d360d5d2cdee924526071e24aa2771b2131aa89ab30ddf3dd2955ccc8b9279

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 717.3 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.4.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70ab4a22662fcf9a0f31d862aab6ec2a67294b53b9169df23be6fcea757b2f53
MD5 4ac7c29c6604893325dabeb48fd2ddd2
BLAKE2b-256 29b5e748791141e57edc2e07c3c13f264931f6e5afb4ad233a25cf62569179dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 775.3 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.4.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8a914a66a262b6767c8d5a34e683efdb13029095236f96f76dd07d4e1c8355f3
MD5 126a48853473316722581295d3f49b11
BLAKE2b-256 ad078271a7e38248414f1c0be76bf8b0b8f32cc80649a53ebebd68d577a73f53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 674.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.4.0-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 583c24cc6383592e5108c76c2e7dd9810d879ea817bad61a61227a5fcb48e41a
MD5 78e44e6e0ec38bf37264f272f8459f0a
BLAKE2b-256 7f699a061767f9dada01d6745e226a2e57f0fdb4ed4d3a3ee1c299bc01161440

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.4.0-cp39-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 700.2 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.4.0-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 512fab56680e81398f170f355bbec424eb6ccc510da49b537b68603664cf2749
MD5 a9a9f739f73bb2581562363feb7684cf
BLAKE2b-256 d63a761cd9be440cf4b18bfa380e680d47f21f3ead331e0780d3dbab0e77df29

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