Skip to main content

Bundle, treeshake and minify your python projects

Project description

flay

[!IMPORTANT] This project is in an early development stage and probably should not be used in production

A utility for bundling and treeshaking your python applications and building OCI container images out of them.

One day I tasked myself with building a docker container for a python project I was working on thought it would be cool if I could further optimize the footprint of python-based containers. This cannot be too difficult I thought...

What it does

  1. Discover imports and copy the module to bundle with its dependencies into a new directory
  2. Strip unused code from the bundled modules
  3. Finished! Now you can use your bundled module from the new directory

Goals

  • Smaller image sizes
  • Smaller layer sizes which result in faster updates
  • Improved runtime performance by removing unused code and imports
  • Safer containers by removing unused code which could become harmful

Usage

Installation

Flay needs to be run from inside the environment where the target module is located. Therefore pipx or the flay container image can only be used if all needed modules are located inside the current working directory.

It is recommended to install flay inside your project with your favored python package manager. The package name is flay.

CLI usage

Right now there is only one command in flay:

# flay bundle <module_spec>
flay bundle flay

Configuration

There are multiple ways to configure flay:

  • CLI options
  • tool.flay section in pyproject.toml
  • env vars or .env file with FLAY_ prefix
  • flay.toml in cwd
  • flay.json in cwd
  • flay.yaml in cwd

Here is a quick reference of what can be configured with flay and the default values:

# flay.yaml

# the output path to put the bundled modules in
output_path: /flayed

# if package metadata should be bundled
bundled_metadata: true

# whether the treeshake step should be run
treeshake: true

# additional non-python resources to include (e.g. html templates)
# accepts a mapping with a module as key and a glob pattern as value
resources: {}

# Import aliases mapping. Useful for patching dynamic imports. Absolute paths for symbols are required.
import-aliases: {}

# List of symbols that should be preserved at all cost. Absolute paths for symbols are required.
preserve-symbols: []

# A list of decorators without side-effects that can be safely removed. Absolute paths for symbols are required.
safe-decorators: []

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

flay-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

flay-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

flay-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

flay-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

flay-0.1.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

flay-0.1.0a2-cp314-cp314t-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

flay-0.1.0a2-cp314-cp314t-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

flay-0.1.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

flay-0.1.0a2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

flay-0.1.0a2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

flay-0.1.0a2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

flay-0.1.0a2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

flay-0.1.0a2-cp314-cp314-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14Windows x86-64

flay-0.1.0a2-cp314-cp314-win32.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86

flay-0.1.0a2-cp314-cp314-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

flay-0.1.0a2-cp314-cp314-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

flay-0.1.0a2-cp314-cp314-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

flay-0.1.0a2-cp314-cp314-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

flay-0.1.0a2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

flay-0.1.0a2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

flay-0.1.0a2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

flay-0.1.0a2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

flay-0.1.0a2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

flay-0.1.0a2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

flay-0.1.0a2-cp314-cp314-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

flay-0.1.0a2-cp313-cp313t-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

flay-0.1.0a2-cp313-cp313t-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

flay-0.1.0a2-cp313-cp313t-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

flay-0.1.0a2-cp313-cp313t-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

flay-0.1.0a2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

flay-0.1.0a2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

flay-0.1.0a2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

flay-0.1.0a2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

flay-0.1.0a2-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86-64

flay-0.1.0a2-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

flay-0.1.0a2-cp313-cp313-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

flay-0.1.0a2-cp313-cp313-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

flay-0.1.0a2-cp313-cp313-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

flay-0.1.0a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

flay-0.1.0a2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

flay-0.1.0a2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

flay-0.1.0a2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

flay-0.1.0a2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

flay-0.1.0a2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

flay-0.1.0a2-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

flay-0.1.0a2-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86-64

flay-0.1.0a2-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

flay-0.1.0a2-cp312-cp312-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

flay-0.1.0a2-cp312-cp312-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

flay-0.1.0a2-cp312-cp312-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

flay-0.1.0a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

flay-0.1.0a2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

flay-0.1.0a2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

flay-0.1.0a2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

flay-0.1.0a2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

flay-0.1.0a2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

flay-0.1.0a2-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

flay-0.1.0a2-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

flay-0.1.0a2-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

flay-0.1.0a2-cp311-cp311-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

flay-0.1.0a2-cp311-cp311-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

flay-0.1.0a2-cp311-cp311-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

flay-0.1.0a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

flay-0.1.0a2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

flay-0.1.0a2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

flay-0.1.0a2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

flay-0.1.0a2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

flay-0.1.0a2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

flay-0.1.0a2-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

flay-0.1.0a2-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86-64

flay-0.1.0a2-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

flay-0.1.0a2-cp310-cp310-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

flay-0.1.0a2-cp310-cp310-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

flay-0.1.0a2-cp310-cp310-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

flay-0.1.0a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

flay-0.1.0a2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

flay-0.1.0a2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

flay-0.1.0a2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

flay-0.1.0a2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

flay-0.1.0a2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

flay-0.1.0a2-cp39-cp39-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.9Windows x86-64

flay-0.1.0a2-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

flay-0.1.0a2-cp39-cp39-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

flay-0.1.0a2-cp39-cp39-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

flay-0.1.0a2-cp39-cp39-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

flay-0.1.0a2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

flay-0.1.0a2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

flay-0.1.0a2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

flay-0.1.0a2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

flay-0.1.0a2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

flay-0.1.0a2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

Details for the file flay-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9337c91b410724b22be3b90e46bb558bf80506cd41c7fd15c11923030bdfdb7b
MD5 f350734f6b30f157a9eca115ea6f4d39
BLAKE2b-256 4c790283342da227131c6330106b48df62cfcfb1ad36ceb858f175812b7c8c1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 29b0f78d1f748d8846b140c469dfd813a43bbc42ef8c4a779bcbe93f1944e368
MD5 83ae4a86cdb2e0d91ce28c3f2db480d4
BLAKE2b-256 429a7063f9c6b3e2f491f4ecee11ee31c32a89a3b793654f1bda26a14024d1ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 06d9b54f84367d222c8d94ed432aa7eb9fa824f5d68b0dc8baa5679655a169ba
MD5 912cce9881dc54bfc260715afc817250
BLAKE2b-256 23e8ba9d5d84f7431dc22e464e9528111b4a75702c66f33b174065849fbbc086

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3dda603f47f5d45750deaf693cffcff831be500adfcc1fcc645decbf5088ee9
MD5 8cd415600b03733ae2027ae5bbf6da6d
BLAKE2b-256 ff5dc2210af13f18e10e5bccc9da664f478763c3bcd7536e40f4c0b1de5265bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57f9baeccbe13422f511d8a014f7591f909c107acd3ab87b321f2cc1f5acafe1
MD5 dad5f0fbbdafab4184f72f41689f72c2
BLAKE2b-256 b37b2ffb2c01786b51399570ebff274e07e12cd79f553e553ff950e68bb988cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d071c993c61afd38de4d22b264f7fcdc5bf7d7d66f619d7fa06a172b798feece
MD5 9fe1404b659ab6d1863775dbee521930
BLAKE2b-256 996f0e26a9048674ac6d1269933c04d40b52a168a3818b61a41a13d42ad0123b

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a49f3d01ed90b24bf907805fba260a9db994171fa06628fbfba9cc4983fc9385
MD5 c3796637bdf542567e94a07145bcdbf8
BLAKE2b-256 d2183092d7fbc4c693a412844d3b599940cc018c69cfa6f0beb18d24489d9b8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5238ec39294be356fa0cf93811793bcab3de2b116bb4c1c9ad520d7a70bddae8
MD5 e40f100ae92bd5c19284c1d589e224b5
BLAKE2b-256 d6c9071f6f02a0aa030b445bfc88eb1c8334c7c329ffa5ed0ff44f964baadf17

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c04e6e41ee2865e126b2ea809013904547baf6fd96640a16481b408d7989ead3
MD5 9ff89d68fe619910f951623eefd27c9d
BLAKE2b-256 2add45811aebddfcc172fdca10b5d700d53151f2567bcab7a37b1778cb3ef5ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 289e3c3c6c9fa8c2a8574b8a2b5e582c65c0f8b2445c417489b1c1383dfdd99e
MD5 6810abbb3d1dc7329454a406a75eca30
BLAKE2b-256 80fb7bfb34f3b4d1f3c73ad6347e917e0ac5e4f506703fa258fbb65fd55ee62d

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db40e2739fe70ea5c69bd959f77d168a155b1f7ccf5353fb0d8d089295f1a488
MD5 2a76da256137c46dc2d6f73ce4fc3d55
BLAKE2b-256 8c5177da258abc2633e927683448fea05857901f6540d25c5e1110f797d0c6ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a592559fee24d2aea532ce345fad8608671c5003f203bb405e1fc17c66976c53
MD5 e7c4a2b5f4efe3abfa3186b04800ddab
BLAKE2b-256 f113ccb7833f5f4729bb4c00ea6a9db7f82d9882209a0f6125c84987107e2b1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1559ce2b5e7ad5859057893b25062522d1300352932da1806eaab29d5ffe8b02
MD5 883cf15e745b8122fe23c17c1864fe77
BLAKE2b-256 71397ddd85cc9ac869485d9e402e07e76ba74024b1649bf13cf585ef05502d0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd86a2f86f2fef8bc3f902703c8a8cda048fd6fb76608a24e37e8c20a616f17c
MD5 aee209feab4f400e7e315f2b82d21026
BLAKE2b-256 940c74ca3a014da07300a9622d9f2f0d6f768025a8877d2e44ebf54250a344da

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a85a1cb3693713cef1ae6a51e8dbb55ad478b8ed89640edefacf4e24c8c8ff13
MD5 03334cc644a73c8818f08092be2aed50
BLAKE2b-256 e707e74c5b2350231f2fafd56f9d1e3ae8f0d1570c0146ceb9b074dc3748def7

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f7fa6148c13bd377e964cc76a95b6b7c2108d90f06c25562dfffb51f9e0f8be4
MD5 899eededa566b10d8527f4b04b7fac67
BLAKE2b-256 061f96de70c748a447a7439b14aa0f4a573176feeea2146c218a43e5068e1088

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 15e4f08edd24dcb3057b3f00f22bd9bfc606548a2744f60cd1cec564a45fd43a
MD5 83d759ca92889198b24eb4aba3447287
BLAKE2b-256 ba5323bcac9a702ebc22e246727c2cfb93947df1c9b003c223f171e2b8a322ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b98d636d73339e97851b8441d5535726153fbd0d78706ffb79cb0430ee11003
MD5 fa88b396c335f91b3b5ff64ad5def14f
BLAKE2b-256 0238e2b98b9c7a82ceb59b9635be1686fc1d4e82cf5a2b6e1b7755ac19e228ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: flay-0.1.0a2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for flay-0.1.0a2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ceb95aa683220a72f7910396641f53a8775184a5ac96853286968741e13aa55e
MD5 289fc47c8920255bd0756c6067e0c069
BLAKE2b-256 acd87405a8b4a9be1f89c1f50715ce44b82872c2ed57e908fa9e5cee90e47043

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314-win_amd64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314-win32.whl.

File metadata

  • Download URL: flay-0.1.0a2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for flay-0.1.0a2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 547d9d41e5a58a353d35670070df53c5f06efffb904da8faf6cbe1fbaddf6016
MD5 9ac5fec23ec46f1369d2c3b802329671
BLAKE2b-256 a16f2ec7fe407c7ad73eac06f10bc21dcc5a35b2db0f24d317a54efb6c0c8cb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314-win32.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d9fae7e41fd7607b3158dd6575ac9f606aa38c253c8131c414f5a4a8db0b665
MD5 5433c637425e4a65f2737c68f354ad86
BLAKE2b-256 cfc5a948f80e58c81d124c69af0034320fe2e89d2e2964e6d5282ac721b23975

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 51800e151d391457fef5aafe4695c00ee8a2a7afc57b1f28fbadb4c41a9cd8bf
MD5 f7a6882aaca3157b07347ff011721fda
BLAKE2b-256 834ff3a4cf500677989deab3ebfed338e6dc8ad667facc7cf5b757895430fa88

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7fe92aec211666df8594d36848a02bdfcfc82bdd86ea6daccd86c48a092c8fa5
MD5 71906ddac51f313434e8c537102c0523
BLAKE2b-256 71acfaf2a3ddc6005a3c066750dfd69e8228c42386a3528d82b89971f7c3cf97

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 25a0d6d630c5162ea420fdef9b70a390b4557037991aa6b3c30049af19a9eebb
MD5 2e1221ca359dbfaeea6bdf6b9b893863
BLAKE2b-256 dd6c00d7933587b96028ce96e7a7f9a3a031e4094107ac7e6a4400d015e044f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8eba009cb8e9755d9aa3f8e1c92fbfcc06f82a456b11e8be3c00456e9e535b80
MD5 12a69b1acab7fdebaf44fad3390bf762
BLAKE2b-256 4120f23c134e3568e26065507f37ff704e85b315959d802befa8cb777c28b9bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c3c18071a45dad1846e707e459044f015206c3159e394d2f6f57e407a0898f5
MD5 9cd5c1b9e1db7ce7dccf6de2470cbc3f
BLAKE2b-256 20fe44bb2358028f4f3ab2fa40a0ef74c59243f3cad5c191b39d135b879cee49

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 feb1caff8203d38343e3f135a5ce72e9021ab18c986787948eacf7fd45e4b52f
MD5 5f891b3f286dfcd9c0795dae8f654ce4
BLAKE2b-256 7865ea26eb13e0848a85df4f9e8cce89e4ee1a33a0a97582098e280eb3383606

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e52811a3bfa5b4fee5e928487f49be24b6da33f9127d8cd3b2cecf60ba296c3
MD5 3d90189f521a2da1af0f5d2612c926df
BLAKE2b-256 8926434342ce02ee8550e8430d8dc98951a06449c072f59f5342cf2790bb8226

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a307ec2de4aba64aba43c316b8ef009e9af5bfbcc2bfed10c82ef90183c76250
MD5 94a1fc1b7f0e4bf38a0d7c6c6bfa5df1
BLAKE2b-256 f05c60a87cd0333b338abdf18b60b41ef2de84051b3e5ed7bd411971b35375cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 61fb20ab6cab609ee5f7340708968be16e0c5a0a45c3b3c5c1e99904c956d949
MD5 0acca3f957ac503d8760d88b0dc729f8
BLAKE2b-256 4560ca6bc5199f369b10190dee748429260cc75a780fbcdeee0fcd871edb0210

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8aa7e45ea996093f31a217ba60dfea66ceeadcd8cf69f5c0c7b66ca10d5b2a82
MD5 0b993463e71629ccb7b292f005bdef82
BLAKE2b-256 0c520398714294a42dd54bd82d1dae1cfc3234cc497786baf28db74899dea8df

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5532472f1d3c3d7ed73d266d10f22a03b4d0d96894358990f24c0c4d0770a090
MD5 491aabcba2d49ccae1eeae79860f1fb7
BLAKE2b-256 bfd927ebd1d782fb691cf105a011695ff9221e65558a171f609332744a687168

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 993863ad965a93f9919ab270f6330fb55a701e12ef3bd966c2d15032bceae3dd
MD5 d4aa2a99e8991f7e4c22df56fe21a98a
BLAKE2b-256 a2cceeacbb01c18874fdd3f3aafc3179b32cf269a1dc74560b9e3429c758d8b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 687b84e27005f270bdaad0f64c25c4384dc0609d189b915da8e4ab4f144e931c
MD5 b5324a707c4bd2d342931c0b844ec515
BLAKE2b-256 6034af2917c554a2f0a1b5e6ddd4878b47f5c1e789ea8a13465f4a37fcf88b63

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db37f2299274294775e1a44715c18d2e1d56b0ae33024416408466097ea54c58
MD5 bdcf617fa3548847dce31b4b2855bd6b
BLAKE2b-256 7acdcd6c3b8bf3d320552dac570783c12dc8eef77ad667f7df807f583cbfe519

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b70e5686309b3e456807575e9a64d7424369f9ed4f92bf09be40d117c4bb6919
MD5 e305f0e3f74f94852c716feb8a533c04
BLAKE2b-256 f9e3c9c2834459cd978e91cbf0c77721790621628c8fc175264a852aadbc8367

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0646bf917cb6fa9d558b47262edea76cfe3581ae39cc4f216e54408819a67471
MD5 1ecaed0695ebcfa3cde5269b87812296
BLAKE2b-256 5cf6be4bcd590d951900deab32fe18cf5fd4d57d41488643e8180b07018dbd55

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f380694b496c6dc46f3fd64a4b70d64ad2400bdda7f27ed7773e972e6bb579e7
MD5 53bda6fc965da9329199f96d66c5a2f4
BLAKE2b-256 4eeb47daf52d33fde6efaa973f8641a6b3894faf72f64e749c6ddd18143d6b38

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17f9bac591383f16a82732fdfdc06efb6466efe73c47c1b7b3b88560fda18b95
MD5 1e988bf0bd2c0887c36813764a088774
BLAKE2b-256 1b17b1da43eb9d090357f21567c5e0c39aadb8d8df15333faa8da458a384adbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: flay-0.1.0a2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for flay-0.1.0a2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ae166902b6c026be4d22e8599d416eed2b13434c1f8ffc6601fa3ef40d25022e
MD5 77ecabe26b5f6ceb57a54f56956abd66
BLAKE2b-256 b443a5b2a71e93bf46b120b038e5cd2fc2470ef18ce3a51e3ce97c654286fb1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313-win_amd64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 666d27cd96cdf0c900d0e716d097b51eaa0fe7cf146fbbb5805a5dc018c5e887
MD5 a11419a62c9f1eea1ae3b3f7e00a95ef
BLAKE2b-256 0d5cf2b6aca7d8efc7961a8ccb47d61ff47ffe196b5e619086e3f379fe877ed6

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 493a461675aa691a04ed7603d041f27ff60734064f3bbc7a7d6195ab36360dab
MD5 dca25d98eea6f8be507db8638033a47e
BLAKE2b-256 915c5e61b155dd81bd078fee370d857480b28d6bef4f62b352a0408f20dc2879

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5f51fbe63518ca00eee1b9cd946557c6cc5e87f4a2b3ff0fe828af2c8d816dab
MD5 6036cb3427f5b594c97bb1d1ea1a7158
BLAKE2b-256 5680d78f2c45a3ceb841ce8665ac061ab6d2ce90fa71907c31946652aea0fbe3

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c8c2f2f12f4afe84b0bb4bf9ca27facfc52e59b028ff39dd89708105c30e9a0
MD5 c511f06f1a4a5f8cc9f788b894ceb5be
BLAKE2b-256 a4079f4bc9b7ecee748007357e40be2eaba9a9cf0d9798e105fbb699ddfcb3ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 021eb70f67d139682c4167e40b14da5b658d538cfcb2d541109c31ab085efc5c
MD5 cd10d6fd8e9034b390bb02960d9ad8b0
BLAKE2b-256 ad4cf15fc4b1f57f66469348a32f301c8e2ca31e9edd1f7c515d35f97dddaa5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f5f6c94fa877830fd42b3f72222efdbfc70d8dee61c14237eb5c9e27474f1ec7
MD5 2cce435d8553d1233787a2fdc0f5a4e2
BLAKE2b-256 0133992d7f41c80d1ca954e32f4f51dfe3625888f3f22f21547357b4f4535b69

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2e26d517a5b259a351b6cc79beecc8509fae467c0a62d58dcf1946cae260a471
MD5 44f5b4263b3b3ec071b3e53be79b221e
BLAKE2b-256 cfbf6c3d9141e42bd66e16ad196e4e1145fdcac6019f4808f2c07dda95ef463e

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 691950fb4e536e9d0dc6d9022a4c8e668faa16908b2acb58e8273eb5e2f786a1
MD5 e73112d856c27509fbd8eef9177e549b
BLAKE2b-256 94b18ef5d4dec4b6d11d1b23488fe8efbbce43d5ad43e4549fc4dfd2fa32dd69

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf9e5d3d6322f5f5299fb313cbf53c0fc3e2564dcbb6780e2649f942894b5d86
MD5 6f86eeebfb1fdc6f42a9476871e6f14d
BLAKE2b-256 800655ac5facdb8d029391d3292d5e385bc4edc3c26392d7456a9f4edfcbc604

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 04b71c6aa8e3112941dccfb06764c4f9ac7b68aef60c373c81b341b2fe81e52d
MD5 8da81368699701cc29bd4e820322d2fc
BLAKE2b-256 444e73bf3880cc2c955c4479a4e50c3d50dbe5b5fe7a1bf68c521ddc4de9eda2

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6eb00efe968ee7a1b84a417ff66e678a86d6c63b96658fb5e06af904f3fbf7cf
MD5 707e8711cf0ee6b931c1e88f2f896ccb
BLAKE2b-256 cc352b349ad056fcc0cf666b5e6a3dbc1130cff9b4b45cd170c5d36405dccc74

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: flay-0.1.0a2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for flay-0.1.0a2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3078a52804214763b2338c16aa3d263d8c63c4d8cc964858e22934f288c456bc
MD5 f29ede323c0db3130895a57e9db2fe38
BLAKE2b-256 f447456c0c80f2936564edec76d8dfafd5b787b463f87747e0432e32ab53513a

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp312-cp312-win_amd64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c6e623e558a012942761591396c8bda726662b23ecb672d75862f98eb717477
MD5 5b4c292cc6b44612f23a93f0e84c19f5
BLAKE2b-256 e96d464d1a1d5567cece53582d7b44dd0b9e33eb26557725c239bd4af86f524b

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7fc26870b8b3f7e76b751d51b465b5395e6597465b15bc535a328d2b1fc44e0d
MD5 4434d4bbd0fc9688b3b3777e054d5392
BLAKE2b-256 0db614e1b57597d18ac9f476df177eb4baa3410f2e36ff8d0d110c4dc655e7d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c60f6098346a65bbd827809f9bbb20ec05f6c8f081f85c2d4850252e3f47618a
MD5 bcb971b72baed3c401489465cca35cc5
BLAKE2b-256 af80602614db5070c93e4c5cb6d9f447baa7cee203f81de557c438ce89927840

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 109dabb0968558fb283005e070b04ce5bc41ada854446c9350502c229152f8f3
MD5 2543b8b1ad42e1406243fe60a5853b0c
BLAKE2b-256 d9edcfad7b67e2600dc16f377626b83f79a485ccdbdfbaf7a8cd7aababc80ba3

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77c1c67afc6cd73c4c46ee01fd4abc60d9880cebc54d51b87570c07e2fa42a12
MD5 a7b6dabb533a22ae99ee581e7289b077
BLAKE2b-256 5e05ebdf874cfda85441f0df5ff80cf82d29109d211f5c73ba616608569a2535

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f97d3a4c16b5621773266cd8cfbd2e15425dd6363fcfd84099781f5359b5e419
MD5 b099eb3c417c1ead22aa92cbf2db8bd8
BLAKE2b-256 96501cbbe5f74fb6d20dffac84b79d4c747273c28c97de117b13c76d961a0a28

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb18a32d88aa5c56c1152dee283d58f3b34805e55a67d0f03e342877606e339a
MD5 66516ff232c42f61c9cf7af376f4ac8d
BLAKE2b-256 c304e37fe23ab520737c65e951d620e6b1c77c3243a272545d275ac9a5fb674e

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a7ddc77a26ae8501016dc2b2a95c20384a9677d9b7e9c90a9a720f7fcbfe11d
MD5 18cfcb7924c9baff96567c51b126dc36
BLAKE2b-256 a7d3055346c0bad7106f3fc6eb7be1816fc5145cfbb3e652933a45edd142d511

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33f6c25acaf5d20a2b6e1b5ca45ead672304ebd5fcbcfaa3f7c6f3acb3bff80d
MD5 8ef2cb63ed410287c8fa8c39fc6f497a
BLAKE2b-256 4c8943648a1e1388640569c3a77ab5f2bd35a8cf578449383a0c5ca4f6436066

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0d13eabe42de90122b7c2f6eadd5c2f1c968a34e8913fe13195b35e12156aaaa
MD5 e7404b5cca2b905687566d439554d2d0
BLAKE2b-256 23873397249615e27040855c5bd9db80ccca139a8c2728157696b0d1ee4779c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 737d1f5dafa20b38e0e50bf509eb2a367f9053fa83ba6ceac01f4f0827f489ca
MD5 0f3550d74a40944183bfd498173d1671
BLAKE2b-256 907ee0273802513141d1836d0946d07bc8d923ff4954a9c02d46e75263b9c275

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: flay-0.1.0a2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for flay-0.1.0a2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2d8134fcc15e1af8ff285978d48c059e207a06661e2f43d141cd87921a93864d
MD5 d857a41bd208d2c7ef34161a93d23e2d
BLAKE2b-256 c8dbaff7d5332b72d41aad3a781cab8bab0eecf4859da75234b3ef1747ae1983

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp311-cp311-win_amd64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34f2646f5b4472a8f55f102958c95e2d993aca77c6a31db5569e0d97023930d6
MD5 574aaf4692ad876d0434e98c4d61116a
BLAKE2b-256 ed65bf818761e1425d0d9d59e16fe9b9409a8671de4917326ec1e1bc6ae030ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e23eedb853a31e7bf1ae2094d500d19be50a22a4544e4ad0a57427f94b9155cd
MD5 bb32c20e6afdabd514aed2ba891748e3
BLAKE2b-256 141a18d8632e218e2e8cd19933ad61be5cd80575a0eb8b65029e5eb2807989ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7559fb0f286f881de996de7427d59e72605e56859f2149094a657705c660a1d
MD5 f19e616e655dcfdb84d4048961d53515
BLAKE2b-256 c4269457e6214db5510bb0fd49a31c1bd3c70c7d1bb5783270368c6576a3e175

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b20de6a2653e94b03278cc90c91438ac6bd7f226aff9093b34ead1e8f6d58bc9
MD5 5444779b3dca0427f3011a338653122a
BLAKE2b-256 d90002a8e9d8cef934bfe4bd83fdba2d13aeaf8da9628c1e177694ab47be8f8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10ac02e36dd9875d8c54cccc83397c01cb499af9081781c13f169b43c058097f
MD5 4437a1bc3c3161405d5223b48a695110
BLAKE2b-256 8e7159ed0df3162c92652f9a54006e42cfcb78df29291578b4c9c12a5c357a99

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fedeff81814c9c8a9f5c71de8e6eff88b369cf1ebed3135735137b06c0667664
MD5 4dc0106a8f29351f79cc711651d0838f
BLAKE2b-256 a32f92c7dc393170560b733be5692a4cbe11368a9d2d4fdd42c42117adc180c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7fa15ce2e936876b44d230a82eeb559e6fe25ad46ce149210789720c0abf566b
MD5 dba33428c48904c2e03d29088ee3406e
BLAKE2b-256 2edfafd951c83d041fc50b2511e0c88a787822635db0770cc4772f19431e6d45

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e728d7743c739a324ca07f63ab2aacc8b6c71006f390042b37c5e8930d44648
MD5 b3112bdfe10589350e6a415925a907b7
BLAKE2b-256 6eac20abc31bdc35cc7240f854f0572e742017ab77e48680eb0d286598bd470e

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e947e24997805a4e84b88d4fb21431ddb954644f6e255a22e206c42aea9874f
MD5 33109906d79f81c638efef14a92e8c54
BLAKE2b-256 c25e5471659dd1cbc3c1480441136f8a1039d50f8fb83c53ffc1131911909ac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6ef43b50c14ab9e9ee36d97677fb5abeb793b1cc06ee5cd1c0b5aa9fbd375600
MD5 5dafa0a1a21b4760d22a8e135ab77233
BLAKE2b-256 26c7fec5ebae0d8208d7a61d17e9e73d95c6e5f75aa87612669556a602a7d328

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5f5338120f92d5ffc25b1904563fe33a68f25e900251c1dfbd80c5fded6c379
MD5 e4339d70fd156a1708afebbf6d085d5f
BLAKE2b-256 81a2cc4ac996f9a881c34acbae5c0e34d825ed30647811833c4b15bab932c4c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: flay-0.1.0a2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for flay-0.1.0a2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c8e4b1a4a7dacc24cca59a1c09911bfa688aab13eeaf2ad3dc4e23b280fe186e
MD5 46da2933325b072c79d55fba398554b8
BLAKE2b-256 713a2f8b123c290ac7ebef4897d9c16479894a47bf30f4ad2a12f8cf3ccd48f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp310-cp310-win_amd64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 106c8eedc935d43e08733405fece06ccd59a03c6c860f6d29cc031ab23c475ab
MD5 61b1c2af93afb74fbfa3b94412effdf3
BLAKE2b-256 5615376eb6a2804f1aba743cd1c4307922622f5b7850b701687ac5f9ea51f243

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cbbb21bfb410db7646d6613fc5fd213e8e7bd4d6994d4d009d115cf36aed2be6
MD5 ec1cc2ae380ac068d7098d04bc93dab1
BLAKE2b-256 dc3016bcb0091b8569b90e91807703a7b87b81947fdffa0a1c5b6994301ba169

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3269d13caf9a2e3942674e5d621dbb1f30de471e88e961a0245f8865c6c43b55
MD5 3062027a5746d1084aeded2450c8a0d9
BLAKE2b-256 8b272c208ec5d7319a56716bb7b502400b66a181c64802360e124386c98d329f

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4433d90a0acc91971b3ec4bd538fdaeb9516caee2db009f7ed968965f9267f50
MD5 87fc2d0a844179ebb9d13aedfaaf6398
BLAKE2b-256 84fc315e848de7f9b5cda1c32ef4b85ec69cf4b3f638ef2d06e739bba448d33d

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 724da4283d7636b9f8c54385be00fea613d20b113110650b4b789efe7f014b15
MD5 b5c3ef065459d7e6cf02e837fd94ef11
BLAKE2b-256 f14111e4057e269b0cd6c844452bbe2f4bcb0b669af07499fbfaece8b6dce5df

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6e94201004f36af75fde3a13188be11de15bc11c9431e1e69fd2df18c9f6b206
MD5 c4f2a5b0c5611597b0fe39b46cb48ae3
BLAKE2b-256 6dcc4241ede277f4d5215adaf0405214f8e5e483c16fbee47cdcf87094ab8ed2

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf1b68c738baaf9b2c21ee63cc415c1cff2e6ac64968b248e6eaeff6c4856b69
MD5 e8eaca3f5fe8162340e7d5399a7d89d8
BLAKE2b-256 bda95df87d92022ab5ffa156cbf2ae4e957078efcc1df68277bd389c49d5bd32

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf00c0567cf597083a51fcfdfb38f0343cf1168dc268512b31fd64dd737d67fd
MD5 9220212fb6945db5ee0cefdad51ae523
BLAKE2b-256 ef94ce3c89fed721e80c42f9a85a43518dff68a2f68e688092506b9d8b7d3e4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46452cca987fcd9b6b91e801b1533972c511267d4ea926870b1066900ace3641
MD5 22b732ec008563699fd1beb67dd00d97
BLAKE2b-256 2f7ae1fcc8d0fabb36760ccd040ec69ac23a0aa4c7adec30b571fcd051577c55

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e79c9b8fa5b11d9779da8aed17714e302c5c287bec6a802ef829befc628a99f0
MD5 f7bca76f6c2b0812cbe3e2f2b25e206d
BLAKE2b-256 585e5ef946287af826910e5fde9c8a3b15d5141762f57426587cd81b2c40494a

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: flay-0.1.0a2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for flay-0.1.0a2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e9c95376f8a63557135d7301443238b9fbf341c3fdac1197c05fa5bf0cf6c753
MD5 ac7643df0433cfcfe02f7d3a0284b4d6
BLAKE2b-256 d7dcb81bec887c2b4104b843460779a30e48be31e5788fdb8dbb5847f4c79d8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp39-cp39-win_amd64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3dd488e67ef29765c8e530e7bc4c55f9a2c4e1ce6379ee0eb393377b6d50ac6
MD5 94632ffcaae8039d3ac2e1d21553219d
BLAKE2b-256 9115fd107451c6a3073abc05096d78ded9c8c2ed8deefe5de5ccffc9baa5cec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: flay-0.1.0a2-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for flay-0.1.0a2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d29098f96570fb9e8208cdf58d939ea4bdd66f747d18c63ff1f3943783f83bf4
MD5 0815042a23a3883d37717b4f00e4502b
BLAKE2b-256 2c5a40a86cedd2550998fc11aeb1ffca60c046ce7e0e3789838cc1a92fe57fcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7fe6b27ff4023399435f8311214c70ec1897d336e55a003f1113d7b8512a2aab
MD5 172061a073f83e3551a34880fcaa6e1e
BLAKE2b-256 3b6bd4c658f425015102765b2ee8287c08cb451d8945a1a4bd0b9ca6de044986

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9c323ce3928f0210a5002531214caa03704ef6af581f125bee195e5a160a8c6
MD5 5e73d1836ca87acdd7c0e9c2b0289131
BLAKE2b-256 cf2c1d76dcf4270155496d3b445de05fde056f085109a506db328d0813567d88

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e23768f10b16d9cda11c3512c901924e89bd85d874938067529d07b472876ab3
MD5 980cae4753bc725a00d513328d4874df
BLAKE2b-256 879c0e122789a5b7ddbd824471b674e50582e63b81ef3a1cf8428b4f11ee2db8

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b98324fb220a8e5181a2b2925829558b1bbbe2d60c723888db0cc6e9b26389cb
MD5 a1191c4eb793c711d52aad0fa1ef6662
BLAKE2b-256 a25df4db311e8dcfe2d1947941ce0809df825e009407d4fe7a15a866c2852127

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e53a866386c6f23b5e8c37bbc49511ca322d24cedeb6939ef734a23000fcdfdf
MD5 dadd7911276a59dcf2a1fe10ca023c54
BLAKE2b-256 53f147387da7710bd663712965f6fc1448e93d1d65f08171d88cdb5473744c33

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 311bdbaac65a0643eb91b7fdace47a031802b3e0a6dd02bf68f18e411f6441e1
MD5 ccbc12efb142c2b584554c1a6757da28
BLAKE2b-256 ba48ad710d16259eb6c118dd353c5e8ebddfb1ad02326f978ae2545d604f39f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9972340efc3aa61b338d6b76a6a080046380ad583a9f0cc378e9bf4857935c3a
MD5 4b65cd97a6a127a60790742b391ac843
BLAKE2b-256 07dae7f6951bf4cb29bffc0ab2e991ab3459ead7abed93029d9870d287bf6fbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flay-0.1.0a2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for flay-0.1.0a2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1824ba38850ff65e53bab57a3423e59a0032867afc688e0a8cc47f6d390754f
MD5 2a1865477b39eb97d1c79b21ebe133c5
BLAKE2b-256 3ca354c5aa1e419939cf3c9b4cdb91a25784d08e5eacc1213f470eaafa5a5d35

See more details on using hashes here.

Provenance

The following attestation bundles were made for flay-0.1.0a2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-publish.yml on jvllmr/flay

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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