Skip to main content

Linear Assignment Problem solver (LAPJV/LAPMOD).

Project description

Test Simple Test Full Benchmark Test PyPI Build Publish to PyPI

lap: Linear Assignment Problem Solver

lap is a linear assignment problem solver using Jonker-Volgenant algorithm for dense LAPJV¹ or sparse LAPMOD² matrices. Both algorithms are implemented from scratch based solely on the papers¹˒² and the public domain Pascal implementation provided by A. Volgenant³. The LAPMOD implementation seems to be faster than the LAPJV implementation for matrices with a side of more than ~5000 and with less than 50% finite coefficients.

¹ R. Jonker and A. Volgenant, "A Shortest Augmenting Path Algorithm for Dense and Sparse Linear Assignment Problems", Computing 38, 325-340 (1987)
² A. Volgenant, "Linear and Semi-Assignment Problems: A Core Oriented Approach", Computer Ops Res. 23, 917-932 (1996)
³ http://www.assignmentproblems.com/LAPJV.htm | [archive.org]

💽 Installation

Install from PyPI:

PyPI version Downloads Downloads

pip install lap
PyPI Wheels 🛞 Windows Linux macOS
Python 3.7 AMD64 x86_64/aarch64 x86_64
Python 3.8 AMD64 x86_64/aarch64 x86_64/arm64
Python 3.9-3.14 ¹ AMD64/ARM64 ² x86_64/aarch64 x86_64/arm64

¹ v0.5.13 supports both numpy 1.x and 2.x for Python 3.8-3.14. 🆕
² Windows ARM64 is experimental.

Other options

Install from GitHub repo (requires C++ compiler):

pip install git+https://github.com/gatagat/lap.git

Build and install (requires C++ compiler):

git clone https://github.com/gatagat/lap.git
cd lap
pip install "setuptools>=67.8.0"
pip install wheel build
python -m build --wheel
cd dist

🧪 Usage

import lap
import numpy as np
print(lap.lapjv(np.random.rand(4, 5), extend_cost=True))
More details

cost, x, y = lap.lapjv(C)

The function lapjv(C) returns the assignment cost cost and two arrays x and y. If cost matrix C has shape NxM, then x is a size-N array specifying to which column each row is assigned, and y is a size-M array specifying to which row each column is assigned. For example, an output of x = [1, 0] indicates that row 0 is assigned to column 1 and row 1 is assigned to column 0. Similarly, an output of x = [2, 1, 0] indicates that row 0 is assigned to column 2, row 1 is assigned to column 1, and row 2 is assigned to column 0.

Note that this function does not return the assignment matrix (as done by scipy's linear_sum_assignment and lapsolver's solve dense). The assignment matrix can be constructed from x as follows: A = np.zeros((N, M)) for i in range(N): A[i, x[i]] = 1

Equivalently, we could construct the assignment matrix from y:

A = np.zeros((N, M))
for j in range(M):
    A[y[j], j] = 1

Finally, note that the outputs are redundant: we can construct x from y, and vise versa:

x = [np.where(y == i)[0][0] for i in range(N)]
y = [np.where(x == j)[0][0] for j in range(M)]

License

Released under the 2-clause BSD license, see LICENSE.

Copyright (C) 2012-2025, Tomas Kazmar

Contributors (in alphabetic order):

  • Benjamin Eysenbach
  • Léo Duret
  • Pieter Lenaerts
  • Raphael Reme
  • Ratha Siv
  • Robert Wen
  • Steven
  • Tom White
  • Tomas Kazmar
  • Wok

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

lap-0.5.13.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

lap-0.5.13-cp314-cp314-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows ARM64

lap-0.5.13-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

lap-0.5.13-cp314-cp314-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

lap-0.5.13-cp314-cp314-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

lap-0.5.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lap-0.5.13-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

lap-0.5.13-cp314-cp314-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lap-0.5.13-cp314-cp314-macosx_10_15_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

lap-0.5.13-cp313-cp313-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows ARM64

lap-0.5.13-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

lap-0.5.13-cp313-cp313-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

lap-0.5.13-cp313-cp313-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

lap-0.5.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lap-0.5.13-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

lap-0.5.13-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lap-0.5.13-cp313-cp313-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

lap-0.5.13-cp312-cp312-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows ARM64

lap-0.5.13-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

lap-0.5.13-cp312-cp312-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

lap-0.5.13-cp312-cp312-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

lap-0.5.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lap-0.5.13-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

lap-0.5.13-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lap-0.5.13-cp312-cp312-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

lap-0.5.13-cp311-cp311-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows ARM64

lap-0.5.13-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

lap-0.5.13-cp311-cp311-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

lap-0.5.13-cp311-cp311-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

lap-0.5.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lap-0.5.13-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

lap-0.5.13-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lap-0.5.13-cp311-cp311-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

lap-0.5.13-cp310-cp310-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows ARM64

lap-0.5.13-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

lap-0.5.13-cp310-cp310-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

lap-0.5.13-cp310-cp310-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

lap-0.5.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lap-0.5.13-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

lap-0.5.13-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lap-0.5.13-cp310-cp310-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

lap-0.5.13-cp39-cp39-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows ARM64

lap-0.5.13-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

lap-0.5.13-cp39-cp39-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

lap-0.5.13-cp39-cp39-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

lap-0.5.13-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lap-0.5.13-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

lap-0.5.13-cp39-cp39-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

lap-0.5.13-cp39-cp39-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

lap-0.5.13-cp38-cp38-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8Windows x86-64

lap-0.5.13-cp38-cp38-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

lap-0.5.13-cp38-cp38-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

lap-0.5.13-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lap-0.5.13-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

lap-0.5.13-cp38-cp38-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

lap-0.5.13-cp38-cp38-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

lap-0.5.13-cp37-cp37m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

lap-0.5.13-cp37-cp37m-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

lap-0.5.13-cp37-cp37m-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

lap-0.5.13-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

lap-0.5.13-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

lap-0.5.13-cp37-cp37m-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file lap-0.5.13.tar.gz.

File metadata

  • Download URL: lap-0.5.13.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lap-0.5.13.tar.gz
Algorithm Hash digest
SHA256 9eff7169e3ca452995af0493cc20d35452c4bfd06122c36c06457119ffbd411b
MD5 448b1acc796ac0a4591b3355200a19b2
BLAKE2b-256 f1ae5cc637c2e5158b7dcf1a9744d33b11dfc21d9309931169402f573e4d1ee3

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13.tar.gz:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: lap-0.5.13-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lap-0.5.13-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b5ef3928303c37661f887e1f8b28a381b07bcb0b9868fe911b5ef4e205f31495
MD5 43d9fbb664961f97018c475008a18304
BLAKE2b-256 c137a23772ed1ced8d58e089f23d835857b9ae759a9f5733edc4b0c52fb393db

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp314-cp314-win_arm64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: lap-0.5.13-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.5 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 lap-0.5.13-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 40ef084ff5cd10fffbac76f56de4f5c2da039af57412e19a496c263397c8ffb4
MD5 9d79a9e5bfa02adac8b29832995385c8
BLAKE2b-256 3257a6b18ec8dbb0145debfa3c8dfa9f35c3e5a28e96340cd8138370d1605657

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp314-cp314-win_amd64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 398db6cb10287e97c2f54c9f333adbee4a2e502f00744b402173a95749ee35c0
MD5 83bdb0a5118283d5e465b7666412bbf5
BLAKE2b-256 cd043ba6fd224fe1994bb7fa6f0131cc73f54f5487df69a2dacd4dc02df66f78

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1ab768edaa10ee9ad32bd651ed904104c5ca12c7333bad8cd43cb62bdb62fd9
MD5 2e43a88f508e49cca5029a1998751210
BLAKE2b-256 d88e5fcedfaf18c2db03410e7b6bda191cb81ec1e452b1f38e27f668ad87a33e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b4f5a7a5f309fa55588eb21ec1bb347356800d4007b0547bb25b5d98552cfaa1
MD5 d488c9fc1563e629bb7ba3c6ab041166
BLAKE2b-256 a03e7ebfdbd52f818074c6517779c6da1f25a8e5eced38cb1518e7c2a618d04d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8a29fcacbd1d94c68e0b36513558213940943d62ae8fd65f55350f7b8be073c0
MD5 842bcc9fadde17b51570c059eaca21a9
BLAKE2b-256 ee0dda2d6d3c87e09e3d89b83fb4b35717d6608e514b37a299f8f23d4eccafa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2bb48c8fd21bb9f69099760cfc90233467e52c62e1528b271f961b4d3b59308
MD5 b8fbad658b56748ba636a33dd82ea135
BLAKE2b-256 0d492d78d0d9cad96b15e37e7195854e32bfc61c9674dea1c5b62092880e89af

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c0dfa1df4a6b30d250b9b304add985feb156d62ca3df79cfe1a40e6c80b9d304
MD5 5046c1b0f704e97759d645ec86ac2839
BLAKE2b-256 ebec0b16230748a32fb7d4b8374b8680e5c453735b88e662f6ea54626ad5bef4

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: lap-0.5.13-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lap-0.5.13-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5a94c154fdc3b38c3f0b3ee89ee14b96781f0660aaeababa33d67d2667b4c27e
MD5 87c383bf86b5705861aad09af6413771
BLAKE2b-256 d52b21503a02c513eb6ae496f65c46ec66a83a87711f7abe7d2c28a431bd099a

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp313-cp313-win_arm64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: lap-0.5.13-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.5 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 lap-0.5.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1170bd45958733e3ce00ba116fe5e5f1b49b744310d32eca8bf84f71121b7811
MD5 334da1138a934f951b3029968922ad02
BLAKE2b-256 ccd7613db6729e31c945f31d3875d9b00e4b43aff7aa4c53557054bdec29bc95

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp313-cp313-win_amd64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab5c634733dd0cdb3ef32f607644d238894df8781bbd91cfbf46435872ad4c92
MD5 eaf9ea78e7540bcbd93d9d2333271bd6
BLAKE2b-256 d0ccc9f3c1e82a070d4f64d13a50e326fcc719714f3fe576792dcf3afce625ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b145a738c55d26556a233d1bc597f96e0e00c0d11a1bfca07cf5907c00969126
MD5 d0ecc919ad7f247fbdc3126de9b0fee4
BLAKE2b-256 6dc3341bdec28a1aaf99ed874fc48793d154ea9985bb498c8a4fd459cf9424e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bdd55fb97879ba924821f8386a51bbbe8f1088fc4f4d9cd1afa40635c1b17036
MD5 b2e41728502f8d1315b1bdb78c1cc45e
BLAKE2b-256 fa16b9316bee1776229baad3dca301daca5acd0cde0523227a4fb8e223b85bf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 508f6360c7bf2c59d89adff7dba8fd39166573d23f002f54a678c2e026b614cc
MD5 4cae64a46677983a075d73494efb95b6
BLAKE2b-256 c85aef374f285dbab0673071503688e869354f6c2374be57880b1b997baba161

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a806e4af277199c4161164a4ea9311f217ed0c084ca5fde010743d2ac8ac9ba
MD5 5a56c9cc5928ee3930a815e92eb38f75
BLAKE2b-256 ddeac2b401643c1c0a4e404bc15335302ccd7cddf0f095dbf4b04e911a84ce31

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d5e4b4d3b5b7530f28181c7e5dde892d808c19a08a8a8406c505095a272b9849
MD5 666445a6cd12cc3e3c0386949398a16b
BLAKE2b-256 845b329c1cdb1fd3a7c9d971310351a1bdfb4264110f9101e2ead942c852a7a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: lap-0.5.13-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lap-0.5.13-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0f96f70d093896f0c61c48ad0b31b88225d310e7f6ab50401ca8fe9f5d5268d4
MD5 4ac93ce59228e115894a8b8adb2d9429
BLAKE2b-256 9ebc9101b3837c3aad5b0ca84f7fcdb8a75ecc666d8f060e7592a97e55f6da57

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp312-cp312-win_arm64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: lap-0.5.13-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.5 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 lap-0.5.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eb9fc5d7977cb73cc6e69ee704b5329d18d0b1e1da27f4a6c848259b8148f39a
MD5 0e8439d05d75f96c989087e4d8796c4c
BLAKE2b-256 b8c7cfd1b2274c00aba8513c0fa385c7e71790a9f44d7d23f5cdbcd94a895c06

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp312-cp312-win_amd64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8687037b179a4a5014f69d26ab917fd2129bbe5894b0768e0a18a60e242794da
MD5 0c0ad4f816e015ac5cf9cbba6298a9d1
BLAKE2b-256 89f9e1b61bd002ed6d37e71c355e102ca626f5c50218e769d3105215733b6c0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a099030000709e5acfc85b1f3a464a2b7a61abc50e51ab0235f3058d9f26abb
MD5 c5547fd7214070af621d5921c5e8ed36
BLAKE2b-256 4cd382678703ab1b5a8773905e982244624b14ad004d8d3068d466c56bde0a31

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 355600a369281c830f900a9a215f8a8729c89ce3f2bf75e1943386fe3d8d1c88
MD5 00e8dd1ed0925dd474f12348f3d20010
BLAKE2b-256 8e8263fd09e866677f4263372785b23908efcce8da39bcc72fcced51e606bbe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 226c24acbc1acd22c76bac54525174577571d7e71e70845d0c43dd664332e867
MD5 3603348810d917a05785e9585b7c67fd
BLAKE2b-256 920a8d8395c8ea22a665ab4150fb2bcb97cc1f987843a1d316aaabc2d71044dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a793935e238f5430f764c38a1757331e86487738e5c7e8b82c374860e5a1074
MD5 6d8bfe4a553c4c76271f256a0803177c
BLAKE2b-256 6cc8c16081ffcc8bf9f123940af8b74bfc8a1fac4f36b3cd7e9b440fdecd9fbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 77bbb235de0a416c77aae07aa2bebed4846ed741002da7721059279bd130ed4d
MD5 66c606955ff807c35804308e2dd646e0
BLAKE2b-256 e19596bd702a260ddcdeef35a1d99a510b1f0cd51eab40f749daa728a2f66728

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: lap-0.5.13-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lap-0.5.13-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 fe0debc9a5e1e6cccdb00127b1c03eade14b8d3cd2a56c96c8ae445276767d7c
MD5 ff69db8bdfe71a8e38b2a722b1393580
BLAKE2b-256 0bfc7b6e9c6b4f04c0f1f10884902584968a6ebc89e000aa37986c8bda2977c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp311-cp311-win_arm64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: lap-0.5.13-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.5 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 lap-0.5.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 df8dd3689004711c07b0d5fb7507644b01d578ef03b3328fa4bfd43f941be508
MD5 8599d5f75c76755bbac4762f2022a4b3
BLAKE2b-256 00d1052da79a000b09dd0f9c659dd2cbc5b46931e3804799fe2f8b3ef2a37599

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp311-cp311-win_amd64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2037d9a30b3f9a9fe185af419ca0d53f6ba3941d9677620522b1f1a62c3dd861
MD5 86afa9b7642a73f192ec7f5c1c587eb3
BLAKE2b-256 12cea089226a167b46d9e16b7e300ef9c9a8c2229e19da9e671aa5e3f90265fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c974c51b2be1c4db696b953fbcf3657bf84c418304fac33064b86ed99194d25c
MD5 4e5bc94bbc9395b5d4da21cae0476c85
BLAKE2b-256 02c619d5e6896e496616573cfbd78f87c9508201304904e2cac4c27abca3364d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dadc17c83b429c27274de67474edbe407721e467e9c166611743b8871097edeb
MD5 458dee0c22273e7ffe9ceac25451a7ac
BLAKE2b-256 3d908b5d5b308dc899d54ae8cb4292f035f0ea530d3fddd5d35e8e533de5256b

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f67f2bae5c95d2eb252dca6262a4038a41d52f76f4e4407e0f7bac22847c0e76
MD5 cb81c8bb8a67ce1dedba8fc9e569dcd2
BLAKE2b-256 837ed6cfdda3b96559065c2a205debd4104d2064ecd936ed3ac3180e572f6555

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ed754fd43eef62e0e98038506bac04d8dfdc27b5812b93a91fcfcbf21d1a61f
MD5 a54430fbc0a6e1bb10af0b76e9301d0a
BLAKE2b-256 4e9b21d52da69d084908bf33733cd51170f429987af3f96162deff7f5f60114d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c00af0eb19ba2b4a6ae6886061449318e3b917670b6fd17c99bffbdc88bf9038
MD5 b41fd25df470584e3e7fefe7b25fe535
BLAKE2b-256 d5fc4114078e67010a48bbe0c581f04c46a5e2da158cfc3e080d0232ef99de3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: lap-0.5.13-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lap-0.5.13-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 7538f7dbe0fac37dba7c5e9dc0a8bff34ce397eea9406f2126f49c3a9884e86d
MD5 3fe504923d32013a3abed413ae5ce05a
BLAKE2b-256 261a37a9fb2d9f8affea98a7260e160767897366f17922d027ed865a128b2e28

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp310-cp310-win_arm64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: lap-0.5.13-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.5 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 lap-0.5.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f36bc604ae05cb80541a544a8d594c6b07c927a320495fbbaa91f92e2a80b70c
MD5 dc37567de93ae9167d441da4e580752d
BLAKE2b-256 27639448f9a7275fe108acb5858d3d13f4d7eb2732ec239aad76088bacb58558

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp310-cp310-win_amd64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba28e9350ec93ddc94c0a44ae55a8802bc5f19bb7d5e6df5df3f9aa7f7a0e3f1
MD5 53cd3b5b7f9c1c3c89eaf17b31b195f4
BLAKE2b-256 36c00de7f82521247242cca8506f7d4d13801d549d74337313545c1499e0d831

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65d88ca30e30805d57a45bee6dfa40893c0f3ee8c32120ddf660c625ad24d52a
MD5 ca6de1fc3c7186fa2e1cc37ea60c7aa9
BLAKE2b-256 e77f4bf5cc303b42c9a1c4f99b3f7398559167611aa786aee670fec5a6d81939

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 10169f0401cf0ecd12f34d701abebbe2233c9fc5b9b5b46794157f5662646cb5
MD5 59b82a2f6f64393d277d4acd624d1f92
BLAKE2b-256 bdeb6a6b6c53738e06af8be5fca3dd3839cd65c35cf0cc6640ec7505374e413c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 33c53173abbd8da0ba8c4eef0a7f2dc72230c7c9bc0b634fe5c98873b4999ab8
MD5 457bbe241b4319ec2d9b72dda6d6496c
BLAKE2b-256 e851f046eb06c8a18b8c4a1121981b7c513e882216a000d47a5ecb317b247891

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32cd1d38500da8e1ef51398121f1408ce23890cbc133647a0f665576b127eca7
MD5 5bf504a813afb1de8d50f70ab77f0b93
BLAKE2b-256 371b1911550ed035c26aa54d1fc6bfafdd97f02e3cc2284904d0de410f17a681

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2cc08c4ff49626ba6c1b707f0b02e92cf57a44359e65d9e769acdff1b510eebf
MD5 fa45c18be43fa7ccc0bb7b4412388338
BLAKE2b-256 26d691e97e538c9916ac6a3a12b700a13891704be8ea9b7b4e39dff21be9db69

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: lap-0.5.13-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lap-0.5.13-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 67c6937c4dd9710d8ed0731f8dff407599a6c65822b4ad82b31f89b9ebc667cf
MD5 d133002599b38212b7de48b6e13e5eb5
BLAKE2b-256 c4a99324132f37c2ce0a74d9de7be527f58eff61c2dc991bc7337784d9698c02

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp39-cp39-win_arm64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: lap-0.5.13-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.5 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 lap-0.5.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ce5f1e56ebd28907670b4a8bb89ae6842bcfdc0b6360d2b4bb8d950834a19db3
MD5 861ec1793a635d2f351b8cfe097d0e25
BLAKE2b-256 a584c646bd910fc8e70c4b9f657ff4539b7c4884c6f6e0585c46b0282345cdb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp39-cp39-win_amd64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: lap-0.5.13-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lap-0.5.13-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ab290a1500089dbe3d4bac5bcc7fe46b9594413393f212b4d1d3fa315a5ef6c
MD5 0debce16602d66bac9894057d993a756
BLAKE2b-256 74fc73050dd275505045c01e79c4d4ec033ea4afa4336d94d27e432b94b4f326

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c6bdace3e2d12c791e4c8d878ceda50fc7b84e1998b17e1b8b41aceff2192e8
MD5 e0487bd64db7ef7457e466abd123512f
BLAKE2b-256 870bc47c2563394be425bcd8896519c610f80ea7eab57c31f90985835307a486

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d61bf2a3d9ecc3ac85d7053f11396ca6e1bd0de049f0bce32986bd58f9d1ec1d
MD5 3c71359b3f4d7d8cd2c1e58dc95bbe77
BLAKE2b-256 7f4b0ce2a8ba234725161091c30cf0addc2f3aed1d133613c6b14843a9770ebc

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 001ba5488a080dff80ba327e50dad05e450198828f82b0c85240d557cd424133
MD5 6aca3edbe847ae01375a25537ef11e82
BLAKE2b-256 e41cedc9f68b31c8802eaed8a715425cdd2f51228a291a16e45352735fcd9f88

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lap-0.5.13-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lap-0.5.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0efd8fe0bf17b74bd97d5958bdb154df84118962cdeff4119497093c325a6bd3
MD5 717ce1c6d44b46f33d2bd33ad705ac09
BLAKE2b-256 b484e112a14c7cad9825a938fae22bcacd63addd7a04afa808fef1ce59ff86b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: lap-0.5.13-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lap-0.5.13-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d39921f69b726101d7443be6c1920fc3ae13ff857796223177f76625103c4390
MD5 69c154a12f31319defd85c3353046bce
BLAKE2b-256 39411cacb2735b4c1d702f8eb7d2725df893cddfa0eb407ede70de6c046780d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: lap-0.5.13-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lap-0.5.13-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1ce8aa8dacc4e66a1d9ad3f8ed5f91164a80027bb81f3b4f7775819e21f1aadc
MD5 88bda11ef6aabcde159f9098979ef33d
BLAKE2b-256 2980bd8a6679645d9667e0c0911adf6c76ecb5bdd893d8d4f3850ce3cc1085e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp38-cp38-win_amd64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: lap-0.5.13-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lap-0.5.13-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d52533636eb6969c59e1ee722c2aac3a76676e2ff79d492d6fee7c709975d56d
MD5 9ed8a4985aeedca603fc0526c7371e8d
BLAKE2b-256 67582ceb9c5c41206fc76a4224c4d59ab5a04ecf4c906224c82280c06feed7e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fff827a6a9bf91709639b5dde9725b874d8139f2b0d226bde48c55d8c0245c42
MD5 4b9f1cc727f757a798d7cece08eba00a
BLAKE2b-256 3f51a7a0b7fb004a7ad0ccc3b80ac6bf5cdb33608bcde4bf3c015d6570ffaafe

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8744d8607bf5f94fddc0223b8336080379258c5a26e7da5c670f02ea7f11ae36
MD5 d8dadfa73d28d072fe063ba3afaa01f2
BLAKE2b-256 97138f8d6815ff3d820d9fb8f13e7ff9f8cdc1b20b2e4553bb8cfa85a4b490ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9d4d7b0bbb190ba8de00e88e3489d81bfe832f206fe7ff32d46cdd16998ee3a3
MD5 7734e74ed67e6a10ee0e86b4c9a348e3
BLAKE2b-256 e24c715a878ea80e5610cafe924d35e38f3c6a43695279144e88565934ed2a5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lap-0.5.13-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lap-0.5.13-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2a6ad50cb027ace78a58b3ffaed865fc002b478a921072338dcab4675c9e1dd
MD5 4b8a621c636bf4b90b61a84b0d6b9337
BLAKE2b-256 642a217993fd8bac977b48a3503f5f0749ac881d77d3bd670f4004589cc602cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: lap-0.5.13-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lap-0.5.13-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9dca9781e6a86c3fe60dab6ba0e4c1f4f7e98be6d49214693a4f349e4b8d3a6e
MD5 578b13885bd475e91f89bd802a10ac16
BLAKE2b-256 890e4772fe6d2592a919edba4946bf2a6a6dead2cf0db042319dc3e196193f43

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: lap-0.5.13-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lap-0.5.13-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 de20455074a270266e6012d5ac2c3691453065ae7083c1475dc4d21a4b04696c
MD5 98a4884c4be8463233e23a594b7c65d0
BLAKE2b-256 a11921b9c4d548ebf868b885a3015d773630e95e740147a3b60a52b2cf26229c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp37-cp37m-win_amd64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 207b60419a1cbae0f11ef948d6d4e8c394f3f07ae6f0ddca0811ce801b2940fa
MD5 78484deccca458f7bc65501b6e4b9c08
BLAKE2b-256 4ffbe9f375b15db4d7f5f7dc3015ddf2472d8e6d95c17101654549dd9d06874c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp37-cp37m-musllinux_1_2_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cea6d54f0f674869bde8606c9f003a9da902956749747541fc3f6a5da7b32a41
MD5 426939725bedbe130ec5c1fdbc816f38
BLAKE2b-256 dbbe4f16c68dedf35d11028c584917f6cef45e8a89662e7ea4cacd3c9262e9b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp37-cp37m-musllinux_1_2_aarch64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c4cbd7a33bb1d4f73736a8cb51b6f642da930caf79585da28bcfa4dd56a9f81
MD5 c9411806aa370c541d5cae7e315af96e
BLAKE2b-256 ee154e9d71142ba0c0447cd4c19e2dc0e69497da8bbd425b04f4ce58b59cc3ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36028645f520cb0ef4e464510462dfdd5e21be1bd7e6f14b50cc9ac053c8c413
MD5 3021d6972915a115bea528cf8d01a0ee
BLAKE2b-256 db3f8692b077ae121f317ced9eaef6b8c258398477fb86c33d20351d223dfe6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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

File details

Details for the file lap-0.5.13-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.13-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 30fc264c0a35bbb4cb7afcb060646b5cc94c48ce0f58189119cb69679265c741
MD5 2c8c6b81d4ce1a709dcc851f9bf84bf0
BLAKE2b-256 d8227d8bcff83bf00a13b5865021ad96d88310a02c4cbba236b8c9d5f2765fcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.13-cp37-cp37m-macosx_10_9_x86_64.whl:

Publisher: publish.yaml on gatagat/lap

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