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(
    name: str | StringExpression,
    *script: str | StringExpression,
    condition: str | bool | None = None,
    working_directory: str | StringExpression | None = None,
    shell: str | None = None,
    id: str | None = None,
    env: Mapping[str, str | StringExpression] | None = None,
    continue_on_error: bool | BooleanExpression | None = None,
    timeout_minutes: int | NumberExpression | None = None,
) -> Step: ...

def action(
    name: str | StringExpression,
    action: str,
    *,
    ref: str | None = None,
    with_opts: Mapping | None = None,
    args: str | StringExpression | None= None,
    entrypoint: str | StringExpression | None = None,
    condition: str | bool | None = None,
    working_directory: str | StringExpression | None = None,
    shell: str | None = None,
    id: str | None = None,
    env: Mapping[str, str | StringExpression] | None = None,
    continue_on_error: bool | BooleanExpression | None= None,
    timeout_minutes: int | NumberExpression | None= None,
) -> Step: ...

In practice, most workflows use hardly any of the keyword parameters, so most of the time we just need to define a few things. Let's look at one of the example workflows that GitHub provides:

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

We can replicate this in Python with yamloom as follows:

from yamloom.expressions import context
from yamloom import Workflow, Events, PushEvent, Job, action, script

print(
    Workflow(
        jobs={
            'check-bats-version': Job(
                [
                    action('Checkout', 'actions/checkout', ref='v5'),
                    action(
                        'Setup Node',
                        'actions/setup-node',
                        ref='v4',
                        with_opts={'node-version': '20'},
                    ),
                    script('Install bats', 'npm install -g bats'),
                    script('Check version', '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
      - name: Check version
        run: bats -v

Notice that these aren't quite the same. Right now, the yamloom library requires names on actions and scripts as an attempt to enforce best practices (in the future I may relax this). The most obvious things one might notice about the above Python code is that it's longer and more verbose than just writing the YAML directly. The main benefit comes from type hints and function signatures which give you the set of allowed keys and their types without having to wade through GitHub's documentation. The other benefit of this library comes from using prebuilt actions. For example, we could have written the code as:

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

print(
    Workflow(
        jobs={
            'check-bats-version': Job(
                [
                    checkout(),
                    setup_node(node_version='20'),
                    script('Install bats', 'npm install -g bats'),
                    script('Check version', '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.1.1.tar.gz (45.5 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.1.1-pp311-pypy311_pp73-win_amd64.whl (484.2 kB view details)

Uploaded PyPyWindows x86-64

yamloom-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (874.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

yamloom-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (914.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

yamloom-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (934.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

yamloom-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (844.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

yamloom-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (663.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

yamloom-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (695.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

yamloom-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (795.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

yamloom-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (663.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

yamloom-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (661.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

yamloom-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (714.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

yamloom-0.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (615.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

yamloom-0.1.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (640.5 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

yamloom-0.1.1-cp314-cp314t-win_amd64.whl (484.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

yamloom-0.1.1-cp314-cp314t-win32.whl (449.8 kB view details)

Uploaded CPython 3.14tWindows x86

yamloom-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (877.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

yamloom-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl (914.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

yamloom-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (847.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

yamloom-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (664.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

yamloom-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (696.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

yamloom-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (793.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

yamloom-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (665.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

yamloom-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (665.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

yamloom-0.1.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (715.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

yamloom-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl (621.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

yamloom-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl (641.8 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

yamloom-0.1.1-cp313-cp313t-win_amd64.whl (483.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

yamloom-0.1.1-cp313-cp313t-win32.whl (449.6 kB view details)

Uploaded CPython 3.13tWindows x86

yamloom-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (876.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

yamloom-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl (914.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

yamloom-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl (936.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

yamloom-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (845.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

yamloom-0.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (664.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

yamloom-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (695.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

yamloom-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (794.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

yamloom-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (665.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

yamloom-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (663.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

yamloom-0.1.1-cp313-cp313t-macosx_11_0_arm64.whl (621.0 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

yamloom-0.1.1-cp313-cp313t-macosx_10_12_x86_64.whl (640.4 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

yamloom-0.1.1-cp312-abi3-win_arm64.whl (457.7 kB view details)

Uploaded CPython 3.12+Windows ARM64

yamloom-0.1.1-cp39-abi3-win_amd64.whl (489.6 kB view details)

Uploaded CPython 3.9+Windows x86-64

yamloom-0.1.1-cp39-abi3-win32.whl (457.2 kB view details)

Uploaded CPython 3.9+Windows x86

yamloom-0.1.1-cp39-abi3-musllinux_1_2_x86_64.whl (884.1 kB view details)

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

yamloom-0.1.1-cp39-abi3-musllinux_1_2_i686.whl (926.0 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

yamloom-0.1.1-cp39-abi3-musllinux_1_2_armv7l.whl (944.5 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

yamloom-0.1.1-cp39-abi3-musllinux_1_2_aarch64.whl (854.4 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

yamloom-0.1.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (671.6 kB view details)

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

yamloom-0.1.1-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (704.3 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ s390x

yamloom-0.1.1-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.7 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

yamloom-0.1.1-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (675.4 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

yamloom-0.1.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (671.8 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

yamloom-0.1.1-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl (725.6 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.5+ i686

yamloom-0.1.1-cp39-abi3-macosx_11_0_arm64.whl (625.6 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

yamloom-0.1.1-cp39-abi3-macosx_10_12_x86_64.whl (648.3 kB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: yamloom-0.1.1.tar.gz
  • Upload date:
  • Size: 45.5 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.1.1.tar.gz
Algorithm Hash digest
SHA256 9d0531d17b0c68572996c7fe73a3dadd97d3e92f90c37bf852eedb16ed92af3e
MD5 5ffb121a0bf096f98f340c70594bba93
BLAKE2b-256 0f931001832a88852887b5366d19375a6c75c37bf7e8d650e3dc806cd2732960

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.1.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f4f4ae46ea8bc3fc742d51af255427848220caccb5d849b25fefe4c9ef089e0b
MD5 ff2591da181e49c1afb6e020cbe7226f
BLAKE2b-256 20932269121fdd6c64e89fbc247d9cd9686fd2ed8e06a33a8ea1ccbbff60ca0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 874.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.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f51036f67dcbb4786434615604447969237762f73eaa303034a3dacf163ec6b8
MD5 08e5d03bdeee708c08cc2a47005f00a3
BLAKE2b-256 a78de9ca98f019af181c430c54ebdb222a805b00f9ebe97240bd3042c4e99062

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 914.4 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.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c847b28edc20551d082bd4c7d571fb8ee41e7c39bd2bc01effc520d48789e8ee
MD5 a870a8963d34e7581eb8fa3c306e75ee
BLAKE2b-256 185a240824d2447373b174c49213fe1ce405cea67eb7b0a94042e37454f134d3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11b8e79b1ee83b55b32c64e132ca5ea9295691d055d6b01daf59f7479c6e5f34
MD5 b32356f1488e23ae1335214d1a0c0339
BLAKE2b-256 3cc805dbb2b685d3392d687f0fda5889909fc9d1867fb8e844477dcbe75a7a41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 844.5 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.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2401f6855ed8ece37b8cfaeced1e121e56e0db7e5a485e6b6d77d36241e2f23b
MD5 777b8533215953c4053d884be398c252
BLAKE2b-256 862e94798d845047504820161c1a86c9bd3394103b95485d54d3790591d9ad46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 663.0 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.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98c53e5e489c63b234094e009e2722228ba4d10419cbc7a8631cce7b7118af01
MD5 88d08239bfb43938f2a44b6677c24dd0
BLAKE2b-256 c66f91b29886d4c44ba6f70a0943e4e1e5208d4e14e0035d58793106291d540d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 695.8 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.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d4bd48a80cb7eb45d1f07773617a04f479f90fb1403422c910bece7d1749a1cb
MD5 81ccda62a54c10fbe3181fbb9d36d7c2
BLAKE2b-256 509d65bb33f16a8c09cbb92452ec945f70b679ba3737e2e3917251156b87545f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 795.8 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.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae1ea239bf59aa5336db27e531e7db84cc9e9c48e4fa0658039680c329b03c95
MD5 8e11c27cb23bf27e6ec5dc5aa2dee11b
BLAKE2b-256 649645dad257cc33b877586edba2a5ef3bc967b8e931ced1476c386e121de413

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 663.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.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff33f81ad7d65fed2660cd859fba0a291260d563d8034b9c164c4d0b5681989b
MD5 b66a9623a5ac76512c772685a96d2652
BLAKE2b-256 72c7de31294290f71662c62240cecc7252845913406a9f835d83c40d391a45d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 661.3 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.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dce98144d5ff69f5cbceb91847b50c76ce4b40c74ea59c6e812add8263691e83
MD5 263984e247393e5cb3caca38875e561c
BLAKE2b-256 da5013ee39c2b4d4869467d24285416ac39db728b2a8985c79c3cdc19e15a261

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 714.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.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 65c4f52ac9342f1b766a9f7dcbea70e0eb4b49fb2f6ad6f10976a38fd3684ff4
MD5 03725baf39251b28452b7db5a0582cb3
BLAKE2b-256 e8cc8c1314f99a9a9ed5cc75b4c7e4f85f0ba42d25b65d650b4c62ce5f4214d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 615.8 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.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a30b519cc86f8e4572fca896d42c7d56bc3779db630eb16077024f5fbc43eadf
MD5 9f8f944a2103ce57f574eb0af8be2026
BLAKE2b-256 245afd097fb0d12925bb9ed7a42237fc81f99e4320d44d0c6ed310bff3f75326

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.1.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e28192305807c84ae0b2488daf8ea3c48b44ea8a46d4c256344f6115393b979
MD5 c7861c1187ad586d94e04f6255bebeff
BLAKE2b-256 392d764809d46e94dfe9bf2bcd45857a28d56af1a951dcb5e1db664151cd133e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 484.6 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.1.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2dc8da8a205d2c6427986ead4ca6df101ec2fb15830ed53b07ce80b2c5003e05
MD5 05e58c709da2e4c2f7a1f900217f6069
BLAKE2b-256 eb3d551e0a87e604b6e2a19bf0aa14b275b9926b5e790088a4a712d5709fcf80

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.1.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 5fe2824fef93beb10fab6e183bf1a46fdd4985711cd4c1c4d016bf33c81d9dc4
MD5 68a9d43f944195e0f86b729e09eec952
BLAKE2b-256 91e2082bc0a210b233cc1c9b29837c79d2d330063d2ab4359f4ea914f5c6ccba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 877.5 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.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aec68979dcf45fcc09976a07918437b8b8a5496119799bcfe4e9fb29e981534e
MD5 2401d62ec96f81956ae2084ca8d0a5ee
BLAKE2b-256 96ebe8229b087e3d06ae8dbcef224066650adabea37210b970d1a07450918d06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 914.5 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.1.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b91f48a4a02787e1f5f904180d7daa1c7ffbcfbec94a1db3eb592c075907fc00
MD5 e6725bed361fef688b63024306ad0757
BLAKE2b-256 a7a5d878cdef7d0e33c7d64ca9ceee612e9f4331a57e9ca917d2600fcf956b78

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 edd8e1f1c96faf4d2e7d99f0c2458ae7cb244a29274a45e18706f342a48a7e1c
MD5 2c93cc724db9909e1fce736ee7455394
BLAKE2b-256 f6c7d32964a315d9a6aa02d630ec6431d0bf478f4ce9a11f0b58d1c5b7511e97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 847.4 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.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 168725b2e20cf1e893af6afd8537eb7561dc98bc8a1c7c4fe45a0c08ee203cd2
MD5 f9bc275d7b7b4b779d93742ecf9f8f0e
BLAKE2b-256 a00cd55a583eee9b5dc7e936b4549b8c91febc7531d8119d552e61cafe6a1803

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 664.9 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.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bf250e1c7ffcfa8325536cee3631ad714311e6133c8ff2fa762df5e62dccec6
MD5 87be1539bacd88f36b0daacf843387a3
BLAKE2b-256 6142f52e04cdb5a539caf3dbae1f53fd15342e261a9e91a4b52c9174adbcdc0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 696.2 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.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f1c43bde69e05c961ffe511e286557687cee997451500153dc8808b9239dea1
MD5 711f72e11a8bc62430616386506531ea
BLAKE2b-256 9a317a4956f022219bbd355e2b09c5c90d2cc4b40616d41c7650a976c8c97e4e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96e2b427bff3e89cf59b515991099a1929c138acd7210eb7e049c8957d5db383
MD5 5779844e0d22326d56a46e6e9a689e73
BLAKE2b-256 0a4d15706a8a55546fd132f4279dcdf809474b94adbbe6423bbfb9ec0898decb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0bb5cf5fb41cbb52cff4a624e4f86c2b3bd4e7e772baf623bc342a6db065d9c6
MD5 7bbd47e929b3999ecbffe827eee10e58
BLAKE2b-256 2642efb364f2794cacf8d35077c5df935bb17c8df064df399f0d6c979de4901b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 665.0 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.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b2748b0852899a26df4dda2532a1ef94c0832e6de7a3a069fbe3d68b2852c59
MD5 87508b2b46546313447b9c5e994d2204
BLAKE2b-256 307c2070576694e17f6ae8c68503465cd9b230c6d9916f815952ecfd11ea11ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 715.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.1.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c9bb16e115e048ebd51d97abd4e58198d78c61d15a2e49c4c68756c8909f17ba
MD5 ade752660aecb263583e8da9079fe77e
BLAKE2b-256 f96df3d89b587f67b97e4df6b8c8f7e3910f3c4786480cf0eb6cdd5e8cea2ab5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 621.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.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d8194f1543c7d469f396ddcd24f88c56d99360771c00085117ad72a8d1144e7
MD5 167a616e7f8d36b53fc9e98dc6fcd526
BLAKE2b-256 2f6cf11eece0813c0d4371876064faefb27cf0ecaa4989f07359a75d9857b42b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 641.8 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.1.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d6e040308970d960c58e48867b32da049d09328fa896b803bff665f30dab52d9
MD5 2b25141f538efa52137f57f3fae73fcd
BLAKE2b-256 f089549038ef7b13c8f980558dde8fdf9c2d308b454ed0eb676abf1df67b2fa3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 483.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.1.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 6af1f0a194ac9b71f0dbcd375bd2f50008290feab3cf02e0c77c6fb3a0cbbf41
MD5 aa1efb33c0986e4cda6f37c5088bbb79
BLAKE2b-256 5f615c51f93125faea695fd0919ec4d84099454d54149a67c124917aff8d4d79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 449.6 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.1.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 cdd06d5317f5bd3a4ba2d562f3f6d396ca5364ccaaccd0314b98a220270a187b
MD5 f0fd934914d8482b30353cf921adf3a9
BLAKE2b-256 674723626cb249de9eaa2098936a349564f233654d16b84c03d42b1dcab7feac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66b86b1f218ac1bd236c0431ee8dad24acb3e049add4a33f3180fc24c7906739
MD5 dce495937ac99314d2e3de57e4fffd8f
BLAKE2b-256 2bd7bab5642943180023590845c4e8f8326efbeb34ea546f9edf7305ce44ed61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 914.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.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b487e6a6019f9d0bd16608ff7a2089084d3ed58eead3e90dcfb595a543a82ec
MD5 9811df19356749d60578e515d0958efe
BLAKE2b-256 e91185054a36140e6621702e2b85200d2a4a6d623baa4fc92df8f74fd92b7eb8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 936.6 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.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 160594740b26b1c8755ec919bd8772892487e3fa742026df5d0ea74a95c47f22
MD5 6023e89688c50c0a8e50dc94f0d41ed0
BLAKE2b-256 e158f64ccd322786a410980e801ffaccd791451763a172f0e11973c5e98e23a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 845.8 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.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba04033e4751e915ff01e85e46ee700f00bf609c02ce9766f5e1a9b409f1b6e4
MD5 6a840f642d4e8ef7b6447e746b2f4712
BLAKE2b-256 f0efea8eacc95fe5ed4dd4d606eea65beb0756761d7bd89e7bb5677df37c06dd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6ab70caf38087755e2124bcea093851993463fb9053cefe2ba7138c732721ef
MD5 41c9c9de7f90e50227223b319973e5cd
BLAKE2b-256 38d44f69277e903cb72b3cde62e052675de386a982933369cd82557b54707bc2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d30b701f8da0c719baafe4b71124c36fadab8cbb0068ed5e10450a7c88bad7a
MD5 dca722c6cf2d85f3bf60d8af68f74521
BLAKE2b-256 0f8fc3366549ec842f2bcdcf9c764748327dcbb6f23e8a60d527ebf92f16d698

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d6b967d7dba8893b74b790a78ec896c2f054e9da2037b7e65693cccb635a58b
MD5 34de5692c8ed59c691bdd621551885fd
BLAKE2b-256 9dbd7ac9a7a9b2092b1024f0add8c615177be7028ba8ff997f512971f7eee878

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 665.3 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.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb9196fb5128e77df5d28839c1c2dc564220e4be8821317849ae5ba17f312b86
MD5 9ac055f7c738e35ef29149e10e8dc05d
BLAKE2b-256 9c1ff3f11d7aff5d4a5fcdca940cabbaa439a6f36b5df16411053ce04c6877ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 663.2 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.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e40f5619651a4f469d1b4bc4f468d778dc2d3a0993b7044685fc28c8871c5f85
MD5 c8c22f53ab2828814a12ad23ac8b05fd
BLAKE2b-256 6562b81906133975c3b59f8758ab7e020667fff86a383301c6202741751ea96f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.1.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7b9fa4ced23cd8e3b661f3297b8068e56eef747b550df8824df012caf30f0c3a
MD5 ec4a7447e828c1b574a5e163ee0b3223
BLAKE2b-256 466f0d9ccc8e26187b92b647fd856d807fbc683add55a851967f6d3a91438770

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp313-cp313t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 621.0 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.1.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ec78015ced323e34bedfe32b6bec4a2179f037efd4a187da3e25fa32a1dc8c4
MD5 c7fdeab941a7d07c57cdf57f6a635528
BLAKE2b-256 647a1c8628b3e69753a49a2279a848ea652b2fea6add3416d92ef6d4081cc9f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp313-cp313t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 640.4 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.1.1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f691efb9e57d05a2a5b8bcf9adbd45b792978d9c418d2e2f8819d9a9753a461a
MD5 25455f25f8c732eb984c60868e9a1ee7
BLAKE2b-256 ab478fd32b02ddf3478bc8d26e2d42a4883e882563fd6a1ac7bc6edfd34de65e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp312-abi3-win_arm64.whl
  • Upload date:
  • Size: 457.7 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.1.1-cp312-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 51a5cf78fdec0dc0be5c79fc50986e0e76eecd958f8f7803d7a8fa1700cacfa9
MD5 8f2d750bdb6654ec7198f1aee9701361
BLAKE2b-256 7b9c72d6e66593332ca988f46982bb6c800a04d1475b4614a8a61db7f8cf864d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 489.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.1.1-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 8bd1f1d5337c7a9aaa6fcab203ea84897209d9a26c7351b2cf8703b35ac3fac6
MD5 30bf4cf1db0e25be920693b0d81081ec
BLAKE2b-256 80d6068a0cc35cbbe8f7abbfb73d9caac6ef1956658b3e7536d2721d6d9f6e0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp39-abi3-win32.whl
  • Upload date:
  • Size: 457.2 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.1.1-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 624ef1b234d2356d3f22bdc2003ab17cb9197b4120527b4e11ad19af96940e2d
MD5 332d5b0c241947e8205cd5e05cd1f047
BLAKE2b-256 674bcbbf4f7ade49928f08d2843dc0f5934965773d53a831571f3cbe161fc719

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 884.1 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.1.1-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f0b2be79b5f204e0f5839f46d3aa32ff98a1cef1542d05008526ddb097b41c9
MD5 51fb6d19477a09bf81a2f9685d94a20c
BLAKE2b-256 09982150a0836dcb19e06480f437f1da8bf48cf452064360a145cd40c8c70763

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp39-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 926.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.1.1-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fdd815d4a173704c6eab7e08b147328342cd6c8fa917b4eca26260fa69b5e99d
MD5 b8b1e127dca3c99df526d20c2db70613
BLAKE2b-256 9a53bd3aa5c67a752be24bae0314d310068a9939e207edee3144a3014530f065

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.1.1-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6eab447aa60b4f659b00f4fd110a3f1c56edd955db1205ee3a4d93ac7fcfca1a
MD5 c9f330e5ef911f822ffa16ea6b582a71
BLAKE2b-256 b9611b1f5925848e23be28e766f8c39ce75d689550745c5ab47bef70f7cee0f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp39-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 854.4 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.1.1-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 481b4144118975e068473beda0604e10a6daef062856a3261e60821a34777db5
MD5 3af67d8bac59fd62772f587df1f532f0
BLAKE2b-256 6968a2decb5bcb2c8e46b42994210a1a60a337e781b654000775dad4cc223136

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 671.6 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.1.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1610d243ef67506644c1d34f1ad1d0bd8d91ced919ba15b730b88c84287de4e5
MD5 fd6ca4ee861edc4fe0bc2b7759735ad4
BLAKE2b-256 e9f36e421904d4cd4b37e4ce7ebadf75dc3dbd69f366231b11e076ea7130c867

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 704.3 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.1.1-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 173ed77accda72677cd57fa1d030c8aa4dfe285c4c34a561e5c32a0f36ffe8a4
MD5 b92bd0d18b213fdfafbc2032f8fb8093
BLAKE2b-256 ee4272a6b056950262f8f936b4c8cfaffe843fc44183cfbd8f5baf7b20ea17f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 800.7 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.1.1-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 06280231ffe386374956360c13de7135e6e0ffce19f67a250259cfcf2a48c818
MD5 76a311cc834dad73e080ff25aed61f06
BLAKE2b-256 190d232e7695aa3c0a4aa3b2e69b4a1d29e7005cc7715f5d0177cf870cd8553b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 675.4 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.1.1-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f5d9a19103f3d385984d9c38f1657cab7474f7d8e4e819bb0d9f4b578bfbd510
MD5 fdec28f5b63a5d4fe1245fbe6019e811
BLAKE2b-256 94c5ae70c76841be592ee919c39bcf45f7ccc350abe861cd4f2e8a22f7763326

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 671.8 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.1.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5786171be81e64f093a905c3d5666b9121d1b2885b602fa0e2e441c1a77e723
MD5 4618c56dd63a6a37324cd9f2e480a8ae
BLAKE2b-256 c4ae334b257839b44bdec1dbf8cfc7bf4f947a5871fddd94190ec15df81bf469

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.1.1-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 45a897b1a9e68dc3a55b858e5ddb57d5710973e219331f53cfcaa71a3b14d246
MD5 714097aa727b42cbe803b1e1d63f00d7
BLAKE2b-256 392c5d1d8f29c4ee452235babc4b18a1436eb0296a0c9c68e1419beb7cb78de9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.1.1-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 625.6 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.1.1-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bbd88a8481be3c71c4795459fb94bb3c924d23e544dbe66219b22d2ba5016d8
MD5 473698f816170e1f0075049aca7687fa
BLAKE2b-256 69ac131477aceda8f6c4e0ac0369385c5cf0ceb6cf19144314484f591755ebfb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.1.1-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8edb0acd016d0771f336dbf34c5faffde5d888b1cae7c635894153d6a4205ad8
MD5 b77667c63aea226282843b5019a5ddc0
BLAKE2b-256 ddf1233696dfc71517ecea0fa7a89326badec6e03db15435a7121b43640593a2

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