Skip to main content

Generate GitHub Actions workflows with a Pythonic API.

Project description

yamloom

yamloom is a Python library for generating GitHub Actions workflow YAML with a Pythonic API. The core implementation is a Rust extension module built with PyO3, with Python helpers layered on top.

Installation

uv pip install yamloom

Usage

The main goal of yamloom is to never touch a YAML file and instead produce them through code. All of the possible allowed keys of a GitHub workflow are implemented as Python objects. The top-level object is a Workflow itself:

class Workflow:
    def __init__(
        self,
        *,
        jobs: Mapping[str, Job],
        on: Events,
        name: str | None = None,
        run_name:  str | StringExpression | None = None,
        permissions: Permissions | None = None,
        env: Mapping[str, str | StringExpression] | None = None,
        defaults: Defaults | None = None,
        concurrency: Concurrency | None = None,
    ) -> None: ...
    def dump(self, path: Path | str, *, overwrite: bool = True) -> None: ...

Every part of the constructor represents a key in a workflow file, and the dump method will write formatted YAML to a given path. Jobs are given as a dict of Job objects:

class Job:
    def __init__(
        self,
        steps: Sequence[Step],
        *,
        name: str | StringExpression | None = None,
        permissions: Permissions | None = None,
        needs: Sequence[str] | None = None,
        condition: bool | BooleanExpression | None = None,
        runs_on: RunsOnSpec | Sequence[str | StringExpression] | str | StringExpression | None = None,
        snapshot: str | None = None,
        environment: Environment | None = None,
        concurrency: Concurrency | None = None,
        outputs: Mapping[str, str | StringExpression] | None = None,
        env: Mapping[str, str | StringExpression] | None = None,
        defaults: Defaults | None = None,
        timeout_minutes: int | None = None,
        strategy: Strategy | None = None,
        continue_on_error: str | bool | BooleanExpression | None = None,
        container: Container | None = None,
        services: Mapping[str, Container] | None = None,
        uses: str | None = None,
        with_opts: Mapping | None = None,
        secrets: JobSecrets | None = None,
    ) -> None: ...

Note that some of the type hints refer to "Expressions" (more on this later). Furthermore, Jobs contain a sequence of Step objects, which cannot be constructed directly but instead are formed from either scripts or actions:

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

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

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

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

We can replicate this in Python with yamloom as follows:

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

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

This will produce the following YAML:

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

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

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

print(
    Workflow(
        jobs={
            'check-bats-version': Job(
                [
                    checkout(),
                    setup_node(node_version='20'),
                    script('npm install -g bats', name='Install bats'),
                    script('bats -v'),
                ],
                runs_on='ubuntu-latest',
            )
        },
        on=Events(push=PushEvent()),
        name='learn-github-actions',
        run_name=f'{context.github.actor} is learning GitHub Actions',
    )
)

These custom actions contain their own nice signatures and type hints taken directly from their own documentation. yamloom provides a curated list of actions that might be commonly used, e.g. common programming language "setup" actions, common GitHub operations like working with caches or artifacts, and common third-party actions (like maturin to build this project). With these building blocks, complex workflows can be designed programmatically. YAML workflows may contain lots of repetition, but actual code can solve this with functions and loops!

Expressions

GitHub defines a syntax for expressions which are enclosed in ${{ ... }} delimiters. These expressions range from environment variables to references to parts of the workflow to repository secrets. Expressions aren't actually allowed in every field (in fact, some expressions are only allowed in certain places, but yamloom doesn't check for that yet), and some types of expressions have operations which can be used to build complex logic that is processed before the workflow runs. We've already seen in the example above that contexts all exist as members of the context object. These members have their own sets of allowed fields, some of which represent different types of expressions (StringExpressions, BooleanExpressions, NumberExpressions, ArrayExpressions, and ObjectExpressions). The latter supports dot notation (as well as square-bracket access) which can be useful for matrix strategies. These expressions can usually be cast into other expression types using methods like as_str, as_bool, and so on. These also support some logical operations (comparisons, equality, |, &, and ~). For example, we could write condition=context.github.ref.startswith('refs/tags/') | (context.github.event_name == 'workflow_dispatch') to run a job if it's from a tag push or from a workflow dispatch event.

Custom actions

To implement a custom action, all that's needed is a function that ends up calling the action function provided by this library. Because it's all just code, it's fairly easy to distribute third-party actions as Python libraries (or by extending existing Python libraries). This repository is also open to contributions, and I plan to make it host a more curated set of essential actions that can be used with most important workflows.

CLI Usage

You can create a workflow generator script (defaults to $YAMLOOM_FILE, .yamloom.py, or yamloom.py in this resolution order) and run it with:

yamloom

You can also point to a specific script:

yamloom --file path/to/workflow_builder.py

This script should have the form

workflow1 = Workflow(...).dump('.github/workflows/workflow1.yml')
workflow2 = Workflow(...).dump('.github/workflows/workflow2.yml')
...

Right now, the script and associated pre-commit hook just run the Python file at the given path, but I have some eventual plans to add to the functionality of the yamloom command.

Pre-commit

Install and run the hooks:

  - repo: https://github.com/denehoffman/yamloom
    rev: v0.1.0
    hooks:
      - id : yamloom-sync
      # args: ["--file", "path/to/workflow_builder.py"] # optional
uv tool install pre-commit --with pre-commit-uv
pre-commit install

or use prek:

uv tool install prek
prek install

Why Rust?

This could have been implemented in pure Python (the original draft was), I'll admit, but if you've ever worked with YAML you'll know that the Python libraries for it are awful (mostly because YAML itself is awful). Rust has a nice YAML crate, and it helps to use strict enums for YAML fields rather than the optional type hints in Python. Also, the trait structure is much better than the amount of subclassing I was doing in my original Python code. The error handling is also much easier to implement, rather than having a mess of validators or some pyndantic models for everything. I have plans to make this a more robust tool, so Rust will eventually come in handy there as well. That being said, using a compiled language for a string-building library is maybe a bit overkill, but here we are.

TODOs

  • Docstrings (I've been a bit lazy on this)
  • Tests
  • More custom actions

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yamloom-0.2.0.tar.gz (48.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.2.0-pp311-pypy311_pp73-win_amd64.whl (489.0 kB view details)

Uploaded PyPyWindows x86-64

yamloom-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (879.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

yamloom-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (919.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

yamloom-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (939.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

yamloom-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (847.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

yamloom-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (668.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

yamloom-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

yamloom-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (668.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

yamloom-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (666.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

yamloom-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (621.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

yamloom-0.2.0-cp314-cp314t-win_amd64.whl (489.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

yamloom-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (883.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

yamloom-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl (919.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

yamloom-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (942.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

yamloom-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (851.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

yamloom-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (670.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

yamloom-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (701.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

yamloom-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (797.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

yamloom-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (670.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

yamloom-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (721.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

yamloom-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl (647.3 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

yamloom-0.2.0-cp313-cp313t-win32.whl (455.3 kB view details)

Uploaded CPython 3.13tWindows x86

yamloom-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (881.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

yamloom-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl (919.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

yamloom-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (941.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

yamloom-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (849.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

yamloom-0.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (670.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

yamloom-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (700.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

yamloom-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (798.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

yamloom-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (671.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

yamloom-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (667.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

yamloom-0.2.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (719.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

yamloom-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl (645.7 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

yamloom-0.2.0-cp312-abi3-win_arm64.whl (463.4 kB view details)

Uploaded CPython 3.12+Windows ARM64

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

Uploaded CPython 3.9+Windows x86-64

yamloom-0.2.0-cp39-abi3-win32.whl (462.6 kB view details)

Uploaded CPython 3.9+Windows x86

yamloom-0.2.0-cp39-abi3-musllinux_1_2_x86_64.whl (889.8 kB view details)

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

yamloom-0.2.0-cp39-abi3-musllinux_1_2_i686.whl (931.4 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

yamloom-0.2.0-cp39-abi3-musllinux_1_2_armv7l.whl (949.8 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

yamloom-0.2.0-cp39-abi3-musllinux_1_2_aarch64.whl (859.6 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

yamloom-0.2.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (677.1 kB view details)

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

yamloom-0.2.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (709.6 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ s390x

yamloom-0.2.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (805.3 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

yamloom-0.2.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (680.1 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

yamloom-0.2.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (676.6 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

yamloom-0.2.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl (730.5 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.5+ i686

yamloom-0.2.0-cp39-abi3-macosx_11_0_arm64.whl (630.9 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

yamloom-0.2.0-cp39-abi3-macosx_10_12_x86_64.whl (653.4 kB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: yamloom-0.2.0.tar.gz
  • Upload date:
  • Size: 48.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.2.0.tar.gz
Algorithm Hash digest
SHA256 c1af4fe79d619800181948493d7440739c47f7db13f4431f81da347f8031d467
MD5 79ac1bb54e9bdc4334ef48018f56f087
BLAKE2b-256 6db80b50557e2ed53a96ae11e074352e1cacaaf7ee8430f877ead496d7a9ad8c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f034390f56a7c40f029d570d649dfa5478053bbc20a586a67ce8145dd67a8d3c
MD5 7bb540dd13bdbaa3518abab07b20429c
BLAKE2b-256 1efba0928dc858d5ba0383fcb4c38791b6ba3be10dec7aead38487a38e910153

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53416b6adc55cb35ca52256fc400174bb51ccda8c0a7d7b81eac3d427f2bf4f3
MD5 04d2cb81c4cc0e2021f46d047d2d885e
BLAKE2b-256 81aff8f287b42d098807a7d4d4764d1e0fd7f6556e88551101d9081067bb511f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1be297efa1682c96fea5a85bf962cbd3aebebbec2a74dca5a43d5af89371906
MD5 d7f79b1481e4f6a926fdb0e450967c28
BLAKE2b-256 0f26f40c89bf5e057106098189c161a949131a91b8940a700a25fa49983de4b7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7cedc2e1ec1ce4f2507ca896647ee5a2fd887647c2086718cceb926137a539c4
MD5 743460bdc4bc80f13563c37afd83f0d2
BLAKE2b-256 9e3351198d5a0c28de787bf3c02e71ab7214cca8233e49e736dd4278494b21d8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4234e8690dcd46906128167ef2443288ad908f15190bdb9085a4f91510653e61
MD5 aa77116ecb0711cc38dd02778dfb2365
BLAKE2b-256 cdbba82c2f5dd5aeed8dc6c0847085afd41c83d740659fbf182beedf764c0a0a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77e7add2252070fbe4033c627ea1dbf7315433020cd233d1ae336ff760ce26e3
MD5 df81b6db2d82fb566064c9f11308542b
BLAKE2b-256 2fb08ee8a9dbab6b79d6ab540ae6a99dbc7cee6d507382727ee97ea83a7de387

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 415bc3da0716ca2247f27eea80a5dddda27759511bd6c03665adf98c193be76c
MD5 353efd95b66e443db1d74fb9a54d3daf
BLAKE2b-256 0d5514c0385812383530961892becbb615bd5c4008ebdbb649f3c2eae72f48c2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 36d689bd7d7b3a7322f815d6a0f39f85b3e2a54b45be9b2b86643d126d6a9879
MD5 3ccbad2e48195a176ab2b3ce6ba76f29
BLAKE2b-256 848f63d5a6f30d8e51a2f664c938e9ec232de5863f080eb989cf4bac5402cdd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 668.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.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 641c025acb3ed74cb2a245f376426c380e95299c8f73808e64039144032a4e91
MD5 9fd1b4fd048afbbc2a32c70fe1acad6c
BLAKE2b-256 d07811b5b0cded550a372cd8665dc4ba44ef02c59fd727ba96fd922d56d99202

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f9a471f4af136c2ef16967d577446a7c703864dd04c72b676a5dcfe02f6da54
MD5 6fbb4e67fbbbaa743873f2f4b00c7e8d
BLAKE2b-256 2f80c7f4f4234aaf2d8e5f6e41f797ab80a5043d863d2dd6069aabd0d1d44f83

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ca590da67b194d890ea8313d1615da2c2a3ea32c93a89832a6b29db107cc195b
MD5 5d66b23a4830e8b0c223ceb80f2ccc7c
BLAKE2b-256 7ccae827f8e51ab12f727a0dec0dbef6d4c6c6e16305da6a8b0b9788e16be38c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f190c48e33f30aed10370975cdc60d83a6fbabe3c09cf041a4763719e1c7fd66
MD5 690408de153262bd9d54bc981f6ac5f4
BLAKE2b-256 dbab643255cc95fc187a2db3591c7150dd91f82d0422af7c3f6b5361a1bfe587

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d012e4248fc98ff3d76767abd3414576376a995d3fec44c5a9a56068bb8382cd
MD5 03e9359ff6079359b07c5ff88d66264f
BLAKE2b-256 75f9efaf5f75b3bbd7c0a503e119641458dd939548e882a10e3dba309f4bc2e3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4a2842401c0ff95251368862a939532bde08ad4acfbc68e854817fe459574c74
MD5 547710c40324c16281cbb5a38df18a0b
BLAKE2b-256 c32578a46b444e7931039ca6584274a6a6c2ec78eb8becc7a0cb49017bf41c2f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6151d92a33edc3308c224718039825176dce2de4888c4f3f349f729b5fbf4af2
MD5 b1f3d49725ddec97cc5e80ca33ca8ecd
BLAKE2b-256 8dac5c0521bb77dc84b786a71e000846313283102442ff72cc397286fe415100

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd2c8a44c98c40932150420532954110815fbaa1240b182d5b1e3ceb78719f51
MD5 2dbfdc126ec37992a7170ecda318bfb3
BLAKE2b-256 307ef0c7c52b785e86792c2278856233058a230f3894f6a7fdaa174be3fd11d7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f7aac98e57fdbd8ed453dcc50ce2a29560b595b4d441bc6c162bd911fac5b33
MD5 4afbedcef54e80c716bbf2a7a5a4ad6b
BLAKE2b-256 cfef95fd07de5e2e29c131bd912c2b44b695ddf740d1edb137692b1f7bd91963

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 19a9ddb86dc34c02f593cb0f6d4ec159f8d2ccc9fda13024521ae76965f1f315
MD5 be0d0f4ef9fc7aff2bb2c8cc64e742f5
BLAKE2b-256 6e37d32c853511fcf52c465c35dbfe5b3d2d088013537d2a8cd43aced1893df5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e6e4c13fb46ac2ecbedef0e9726855b58e1ec6010c0a6fe1033435961097c86
MD5 eea3a8f2572637f011c00eebf37e03f0
BLAKE2b-256 6544f25ddb9017ffad9d55b796dbf3f2a6a2cae25da9134f75cc6165d740415d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5dcb9791879a46212d20cc11116d7b8725452f35b47d60ace74a9b01a72f1fd
MD5 9d18fd2ec18f58c99340134d9a7adce9
BLAKE2b-256 357c8a405c47e7ded6eb1e8a89b1b70d844d25a87c3c1713c42c65f7b390c4e3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d94df161bb960c0b286ab02bc20089c3390fb616b363c7546e035d8f5a40467
MD5 9e68faea76dc1e46543e5cfeca26eaad
BLAKE2b-256 85b86d10c610bf5a87746806276633b05c8121632067e328c9df7e395f434ffb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 faba1d4f4a5ae131be9fb98748b7e08cdb98e32de2a06867fd9681f5d2a0b265
MD5 c4926630e81a58c3d487a7a300f109f1
BLAKE2b-256 162419c1fd90ecc94acdc8b442b1d5f8ef522d80c680fdcbb88f2688633f1b24

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6312d6177c1e76c4573723351e3ad0a1bdb6da5b46020dcb2c3167bbade026d3
MD5 d74402d9f063454d26ad228fe411bc50
BLAKE2b-256 d04d798d35159c3ac49f6ebe4b786cf6467161cda15070d54bf4576d42d9afa1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 670.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.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07854eb352311a9c7f608ad6ff5c0e32e099f617335049d9dcff02b3cfc2ca0f
MD5 daa0e3f7a1d846c23982c1331fdee74b
BLAKE2b-256 543d0c97a98a2e857c4fa7a64e2b520cc861ff4bdbbe7b9956a4bc3bfaca90a3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ad978a57dfced685cc1d13b12872ec9488c9405c82d138b20e796e75be01381b
MD5 b2952e58061bd43f5825df6a0c581f64
BLAKE2b-256 86c95ccfbb825617838805f77a303ceff374116bddd3779b22a64fc702e50111

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42a2dba8f7f0ba0f6fc62cb2beb048afa3f4d6bf4861ef37c23a3c0381e560a5
MD5 7285ef8d05a41475dd68a1d3b8e4b0ef
BLAKE2b-256 656503fe2737847ed86cb6f3366bfe2c7da69615602dde6924f1a4a73ccf4465

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a63c091bfc96722b161d09fd612151404b4dcd8d9a23752e91606cdc23832b6f
MD5 2d78a10175cbf0dc2674ca18837df035
BLAKE2b-256 5c10f751540328188ad6bf98d0cd49dcfb67c129c5b2a8076b39b13f02a17041

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 ade06388aed50e460246e75b16cd06833150d87319cb9650105298595316144c
MD5 33e1f6aade6529c8129f583c58000faf
BLAKE2b-256 a547ff27cbd829daac0d6d30aa874610db69c891a2a3510b64df395344528594

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 5acae2502e707a9a782af5c7bb1b4eb1e3ddf3dda7f440c17ee84f8a34bb604b
MD5 0f2fc6c578c52690a3f8c97a19c055e0
BLAKE2b-256 284670d4ebddf3f1b0e1bfb7692a0055cc09307aa957cd4eb2c2d616bf143965

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 703b824d2a2fa4afb66644221fdab54019aa8aa28c02b6a280e6a5c7eda24d29
MD5 f482b82ae653598297a3a516d7f01223
BLAKE2b-256 08d7b7c31ea0b7f95a4677772fe1d4073aa27b1e9fa01d2f3f2881b56be71dad

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f5147eac8a15fe8fb1c573cb480d35d2fb65c952a6a61b586dca8d93b66c2d1
MD5 ecb968e087330a74264c66b74c94b5f9
BLAKE2b-256 6ee361c50b6f74eb12aebd0eab56cf5c615ed446e9bbc188e70221d025dc946c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 941.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.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be07b308b29fb228aa1d109c9f9f2cbe0895ea2256d7180852021a52b6465d4c
MD5 7bc5406ff2646de5c1a83f6ebf069746
BLAKE2b-256 baffd9c79653688cfdf820f1f7c4003bdbc3d250b6b36581ce4864d440ffdb13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 849.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.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 800f063d0021efec2f55c9357798db282a16d73d7057052e1a15169d76873af3
MD5 77c77b7da58e6f861d1c7715763a5dbd
BLAKE2b-256 0e8ec1cb788958e6df4126fb763e9d73ee6a2af645b254fe70e0d860aa375162

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9089eea8722635f26df2a3bd372aad1549129e0a4c4f8d03b5f7038bd6f9510d
MD5 5a730ec3a30fd44936b4339c53eb2580
BLAKE2b-256 0f991747c142580bcf1ffd2b997cb051078f644afa4d78a160b6ac4a498f41f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 700.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.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 439faded4fb6d7131966790c9c8c3a5d0bd6d294530d162cc2b92919b54f3693
MD5 e6fcb1d5dac595c6d0679c8c62e45e61
BLAKE2b-256 1c94201b7f963936303493a353d2298747abe85570e8a7ab3410b43e8f132ebf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yamloom-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 798.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.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8fb8cf45f3ed11e4b6b98704067549528b5589400d3ca3bfd1765dc8a5d3b1e0
MD5 a948736de710dea0864b35f4962e94bc
BLAKE2b-256 819b81591f9aac269af126725253f8e46807a009803d6b3492027bd08652bab1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d87bf7136270f69ac31602efc1bc1deb2d46d4333e689b1758916c92447e0cf8
MD5 34e21e28be44508d99e7c2e8e7be0854
BLAKE2b-256 ee5767978830bc615c7773959d11844b749c6ce6bd0f23a7e504b726822792d7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3ce271ede8a0302f23d6f3fc7dc06a20fbf6db066799fd16ffbaeac6804df62
MD5 c4f158fec1cddb25b3744dac7300d54a
BLAKE2b-256 d5d2d836e102f43105441f8ef851191404ccee1bacd6bd60295c31dcbb2439ba

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 238b22ee2233d2af38afdcdb505e7f7a91a66fa25816d46e093855ba043f9427
MD5 e414977c97c1f508ec10809c1ab2487f
BLAKE2b-256 fe0c4054fc75d688b8764cc2686a90e69e9642812f2a08c82d7f1e127daa6ce4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd8b30469887be52406fd9234d7010392d5a65d96aff66b7e9486ad1f0f925aa
MD5 0f1fd43361dc31c2b19f8c930f1ce5e2
BLAKE2b-256 f7c7ee6df11b62db6307dd74b1ae176dc2207777210e8286e3d30b23cab6eeba

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1f9cca0b015c698d2d5011c8a82988e7eb567fbb558e6284f0c102b62a796c51
MD5 30fc8fdc199a916ab36276b7cc97d154
BLAKE2b-256 7b001073d3111c2cb4e472ddaff357d21eca6d9eae5df3f15ee7fa9521019f3f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp312-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 27211a28d4fd05b09c2e485d5a16e4621b291b8935e0dae03d38af322aabc765
MD5 d0bb70f5732881470b14574357ca25d4
BLAKE2b-256 8aba22cce8f7c1a4039438101bcc4758d4fec0ded994277bdfb7347929393515

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 b2df388900351909cdc2e1314f53c0db2e3d341496d08aca8c398e786c83789f
MD5 d20dca7560ab1e051b2f966f3817d44c
BLAKE2b-256 d5a43cba725887c96b91c52e3e50b9cf9c350cac5ebffea02139570ba329e3de

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 783fbc10d943f11336621274c5313aafa2fa4073cdac329f98f39070cf822527
MD5 ed3e5116280303ca5de92e8e96765d5a
BLAKE2b-256 6259c4a2cc74cd9838286ee620b3070e93d56f0efa846b762c204ee67e1801b8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 afcd45f43bba22521c2aa671ea1dae7ee13cc704a030138bacba673636ed966e
MD5 825b6cd7137d454889f575892bd4f1ae
BLAKE2b-256 8cf5f4ead8a1d1e1d79c2f1ced657487eefb14ac16e76169450722008c88ab84

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 59901fc343b277cabfe0ea93d815708ba170e5b83d1e3f9894399824988ae1ea
MD5 1ad552342eb2378cde4e256a01e23026
BLAKE2b-256 554c540eb293ac69bfcf8a783e9825b0f1c14186c1a00dbe6e094f4b12e0d338

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fcdd701841f9150816f87f41a46e2bdea2f1bd4871fdf29de81973248b4d5710
MD5 45c1f11d118af196ad134ced89006f95
BLAKE2b-256 3e45d418e5d871416adcaf0c09089726920d39d5a13653b600c7072a03badfcf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a173ddc968b9472e487d6e515bbd75d9ddc71b3f06d314d1360af8f8a31f528
MD5 b51a70450ffee7dfb9c1cd62db7615a5
BLAKE2b-256 e3a982576a9107ab46175012f842ed72da9bc8e059e0c8436e38b92dad59c1ea

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc8200605d3f07a61141f60e7dc8c2f06f22329c08d0e007921a751c7823ffc9
MD5 ac40966a2a93076e5df7b0c3a5d6100d
BLAKE2b-256 d74374283dd14d327b4075e5a0bed654b6bc085b7daca21e58bab3135d8dea0c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 01d87ed048be28f9cdf46b8bb32907a4961b3809a535ef011353a12acb25a7cb
MD5 0efbe00ad544b1af4eb2d460d8560449
BLAKE2b-256 fdc52e33543594ad944cb0ea261e2dec6f0554e6ca5988145fca50a7a227fb7d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0abb6a883c2b304786415eec892b99d8e6b1c6ecde02b2a0efe1437667d94f7
MD5 aba90e2dd212b48e03fadf41e2495e46
BLAKE2b-256 192cbfd2c7155d980ee982b49bb3e1673a2946282b7d5e1d5af5bfe2287307cf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1625dd9f258ac781360d16e9c8d379d056945723a8fdd97f749df6021e742fe7
MD5 17496a22a64121ec0fc7eb3f86375ec7
BLAKE2b-256 be5c81b18b264833079a128d2e38577b07afce4eee8d9382ed056ad3e98995c0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f70d299cb228c620264566044f8a420a7e7a00d3c2cf1570c67c479d9566537
MD5 ba63026dd47c01477ce93e96736c2f8e
BLAKE2b-256 c477e060113e9409377a29ef18150f57ac2bb8ebea27dd7402703753e604c839

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c18518a10831a8cc872deef92444bfe43baa39108dc9eefe7e25b3c0ddbe20d9
MD5 360d49b56162a67305c5cb85f9eda361
BLAKE2b-256 18efaf6a4719c80f571849a63072fd2d0c4f798275e45aebd3c5bc99dc3273ae

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d45d3abe27e5b05d725201a58546f66b18c9c8720348060b8162f2914ff00ea
MD5 43c7a0885f09949f4f3997cf8ee0265e
BLAKE2b-256 1a2d82b4f09700955f88e7c7473fdbe5875f63d326d1a1d94624ae0cc117ccd3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yamloom-0.2.0-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 37481e3fea54d1f28dea1bb4b1b737abd02e4bc99810a76a418a1754a84a42ca
MD5 bcd78a5018cdaeb0a91cc62278319738
BLAKE2b-256 5a8a68d7b891c484ce88452330540e0ccc1cdee22c522978252198da8e6a7e94

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