Skip to main content

Linear Assignment Problem solver (LAPJV/LAPMOD).

Project description

Test Simple 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
Pre-built 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.13 ¹ AMD64/ARM64 ² x86_64/aarch64 x86_64/arm64

¹ v0.5.10 supports numpy v2.x for Python 3.9-3.13. 🆕
² 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-2024, Tomas Kazmar

Contributors (in alphabetic order):

  • Benjamin Eysenbach
  • Léo Duret
  • 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.12.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

lap-0.5.12-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.12-cp313-cp313-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lap-0.5.12-cp313-cp313-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.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

lap-0.5.12-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.12-cp312-cp312-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lap-0.5.12-cp312-cp312-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.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

lap-0.5.12-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.12-cp311-cp311-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lap-0.5.12-cp311-cp311-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.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

lap-0.5.12-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.12-cp310-cp310-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lap-0.5.12-cp310-cp310-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.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

lap-0.5.12-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.12-cp39-cp39-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

lap-0.5.12-cp39-cp39-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.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

lap-0.5.12-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.12-cp38-cp38-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

lap-0.5.12-cp38-cp38-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.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

lap-0.5.12-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.12-cp37-cp37m-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

lap-0.5.12-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.12-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.12-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.12.tar.gz.

File metadata

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

File hashes

Hashes for lap-0.5.12.tar.gz
Algorithm Hash digest
SHA256 570b414ea7ae6c04bd49d0ec8cdac1dc5634737755784d44e37f9f668bab44fd
MD5 68c9d71a49d5e22b67f374f489e82e56
BLAKE2b-256 6ccfef745c8977cbb26fba5f8433fd4bfd6bf009a90802c0a1cc7139e11f478b

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12.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.12-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 30309f6aff8e4d616856ec8c6eec7ad5b48d2687887b931302b5c8e6dfac347a
MD5 5d77aaca7aa6b40647af6035be419ea0
BLAKE2b-256 9f4b2db5ddb766cda2bdbf4012771d067d2b1c91e0e2d2c5ca0573efcd7ad321

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 59dba008db14f640a20f4385916def4b343fa59efb4e82066df81db5a9444d5e
MD5 dc596d9c05bea8572c7cb2838ebb6739
BLAKE2b-256 4c3b62181a81af89a6e7cefca2390d1f0822f7f6b73b40393ea04000c1ac0435

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 517b8bd02e56b8466244fc4c0988aece04e6f8b11f43406ae195b4ce308733fb
MD5 07a6948d2748f6bc4bb738291b422c48
BLAKE2b-256 7760ac8702518e4d7c7a284b40b1aae7b4e264a029a8476cb674067a26c17f3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9db0e048cfb561f21671a3603dc2761f108b3111da66a7b7d2f035974dcf966e
MD5 b024e0004074749a7f253a4e36656118
BLAKE2b-256 3e485dcfd7f97a5ac696ad1fe750528784694c374ee64312bfbf96d14284f74a

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a6e8ed53cb4d85fa0875092bc17436d7eeab2c7fb3574e551c611c352fea8c8
MD5 d7f55947e1f2c81994924300a283407b
BLAKE2b-256 7ec39f6829a20e18c6ca3a3e97fcab815f0d888b552e3e37b892d908334d0f22

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-cp313-cp313-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.12-cp313-cp313-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.12-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6dd54bf8bb48c87f6276555e8014d4ea27742d84ddbb0e7b68be575f4ca438d7
MD5 ec0e811106ac6cb3d6abb7be0e002bc5
BLAKE2b-256 f9bb0f3a44d7220bd48f9a313a64f4c228a02cbb0fb1f55fd449de7a0659a5e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-cp313-cp313-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.12-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2d01113eec42174e051ee5cebb5d33ec95d37bd2c422b7a3c09bbebaf30b635
MD5 1a26b755b5ba831ad3045654972913f7
BLAKE2b-256 b10146ba9ab4b9d95b43058591094e49ef21bd7e6fe2eb5202ece0b23240b2dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0c4fdbd8d94ad5da913ade49635bad3fc4352ee5621a9f785494c11df5412d6d
MD5 cf6ced05da1d891d823588a251d4c8fc
BLAKE2b-256 e10785a389eb4c6a9bf342f79811dd868ed3b6e56402f1dfa71474cec3c5ac30

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 83e507f6def40244da3e03c71f1b1f54ceab3978cde72a84b84caadd8728977e
MD5 f77d0ce9e47bfd72cd343c6f4d24eaa2
BLAKE2b-256 d98d00df0c44b728119fe770e0526f850b0a9201f23bf4276568aef5b372982e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 753ef9bd12805adbf0d09d916e6f0d271aebe3d2284a1f639bd3401329e436e5
MD5 7c25dd2bce295f99071faf00c9099f9f
BLAKE2b-256 468973bad73b005e7f681f8cfa2c8748e9d766b91da781d07f300f86a9eb4f03

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c34c3d8aefbf7d0cb709801ccf78c6ac31f4b1dc26c169ed1496ed3cb6f4556
MD5 d3e9017fde0c00b41cf2eb2aa4a4aafe
BLAKE2b-256 ef4ae2d0925e5ead474709eb89c6bbb9cd188396c9e3384a1f5d2491a38aeab6

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a2424daf7c7afec9b93ed02af921813ab4330826948ce780a25d94ca42df605
MD5 307dad7b500f472dba98da1c1950caf1
BLAKE2b-256 fee1badf139f34ff7c7c07ba55e6f39de9ea443d9b75fd97cc4ed0ce67eeb36b

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f721ed3fd2b4f6f614870d12aec48bc44c089587930512c3187c51583c811b1c
MD5 727a2c4b384ac39e74226d21c522d2bf
BLAKE2b-256 3a6ed7644b2b2675e2c29cc473c3dde136f02f4ed30ecbc8ef89b51cbb4f7ad1

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-cp312-cp312-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.12-cp312-cp312-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.12-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 797d9e14e517ac06337b6dca875bdf9f0d88ec4c3214ebb6d0676fed197dc13f
MD5 ad41cdc6bcba08ab4e97c00b5aadecb4
BLAKE2b-256 c63c8d3f80135022a2db3eb7212fa9c735b7111dcb149d53deb62357ff2386f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-cp312-cp312-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.12-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8dcafbf8363308fb289d7cd3ae9df375ad090dbc2b70f5d7d038832e87d2b1a1
MD5 357981e011689d306d9fa268d4ae5184
BLAKE2b-256 c52b41acf93603d3db57e512c77c98f4f71545602efa0574ca685608078cc0f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1211fca9d16c0b1383c7a93be2045096ca5e4c306e794fcf777ac52b30f98829
MD5 8e0a66682ecae2633a6437fea2e7edf5
BLAKE2b-256 242950a77fa27ed19b75b7599defedafd5f4a64a66bdb6255f733fdb8c9fafcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 49e14fdbf4d55e7eda6dfd3aba433a91b00d87c7be4dd25059952b871b1e3399
MD5 cd560003e1ea259c37c07df25c726f94
BLAKE2b-256 ccd2dcde0db492eb7a2c228e8839e831c6c5fc68f85bea586206405abd2eb44e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 851b9bcc898fa763d6e7c307d681dde199ca969ab00e8292fc13cff34107ea38
MD5 8f5270b94130bda2a5504fa9aa1327af
BLAKE2b-256 cd4d18c0c4edadbf9744a02131901c8a856303a901367881e44796a94190b560

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 560ec8b9100f78d6111b0acd9ff8805e4315372f23c2dcad2f5f9f8d9c681261
MD5 f737d979a5f941c711357d190559bbe5
BLAKE2b-256 869cc1be3d9ebe479beff3d6ee4453908a343c7a388386de28037ff2767debf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04dc4b44c633051a9942ad60c9ad3da28d7c5f09de93d6054b763c57cbc4ac90
MD5 252bccfc0dfeb9428beca9ef330af754
BLAKE2b-256 3e7d73a51aeec1e22257589dad46c724d4d736aa56fdf4c0eff29c06102e21ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87c0e736c31af0a827dc642132d09c5d4f77d30f5b3f0743b9cd31ef12adb96c
MD5 51e3c0697f788b32f43ac5b9f260b31b
BLAKE2b-256 3d90bd6cff1b6a0c30594a7a2bf94c5f184105e8eb26fa250ce22efdeef58a3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-cp311-cp311-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.12-cp311-cp311-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.12-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5270141f97027776ced4b6540d51899ff151d8833b5f93f2428de36c2270a9ed
MD5 4c889a2187e57c438f4995f3f2b8bb3f
BLAKE2b-256 7dd697564ef3571cc2a60a6e3ee2f452514b2e549637247cb7de7004e0769864

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-cp311-cp311-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.12-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4a0ea039fcb2fd388b5e7c1be3402c483d32d3ef8c70261c69ab969ec25cd83
MD5 8cee4017a7909da744b2614b1aad42d6
BLAKE2b-256 ab810d3b31d18bbdcdaab678b461d99688ec3e6a2d2cda2aa9af2ae8ed6910e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d928652e77bec5a71dc4eb4fb8e15d455253b2a391ca8478ceab7d171cbaec2e
MD5 acc63d05eb07bdf8c26c00a1cf104fdd
BLAKE2b-256 62efbc8bbc34585bcbed2b277d734008480d9ed08a6e3f2de3842ad482484e9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 a40d52c5511421497ae3f82a5ca85a5442d8776ba2991c6fca146afceea7608f
MD5 9d0064bc6f945a2840156b2c5ca642f3
BLAKE2b-256 eead9bb92211ea5b5b43d98f5a57b3e98ccff125ea9bc397f185d5eff1a04260

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2d6e137e1beb779fcd6a42968feb6a122fdddf72e5b58d865191c31a01ba6804
MD5 633bc1b918cefa988ac9240231bd26cf
BLAKE2b-256 e7a29af5372d383310174f1a9e429da024ae2eaa762e6ee3fc59bdc936a1f6db

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0416780dbdca2769231a53fb5491bce52775299b014041296a8b5be2d00689df
MD5 f2ffa786cbce8b7039a2e5acc853d550
BLAKE2b-256 a91cfaf992abd15b643bd7d70aabcf13ef7544f11ac1167436049a3a0090ce17

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9836f034c25b1dfeabd812b7359816911ed05fe55f53e70c30ef849adf07df02
MD5 4a1d9876c5c40499588fb9d5e276ddc6
BLAKE2b-256 dd1d66f32e54bbf005fe8483065b3afec4b427f2583df6ae53a2dd540c0f7227

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f0c1b9ab32c9ba9a94e3f139a0c30141a15fb9e71d69570a6851bbae254c299
MD5 3e1558b7b96961c1e05305e671cbd11f
BLAKE2b-256 e8d6679d73d2552d0e36c5a2751b6509a62f1fa69d6a2976dac07568498eefde

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-cp310-cp310-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.12-cp310-cp310-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.12-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f702e9fbbe3aa265708817ba9d4efb44d52f7013b792c9795f7501ecf269311a
MD5 43cf8d36f2445e3b92864bebd699c0cf
BLAKE2b-256 fa93dcfdcd73848c72a0aec5ff587840812764844cdb0b58dd9394e689b8bc09

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-cp310-cp310-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.12-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a301dc9b8a30e41e4121635a0e3d0f6374a08bb9509f618d900e18d209b815c4
MD5 10e8f838975942e801129f5d83b0a134
BLAKE2b-256 308aa0e54a284828edc049a1d005fad835e7c8b2d2a563641ec0d3c6fb5ee6d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c3a38070b24531949e30d7ebc83ca533fcbef6b1d6562f035cae3b44dfbd5ec
MD5 ed4704603b9890df90142a9666a1debb
BLAKE2b-256 5ba7d66e91ea92628f1e1572db6eb5cd0baa549ef523308f1ce469ea2b380b37

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 4019cce8c9e10b6c0aab8d23fddeb01efd251010605ea9d4e69f93111380b06e
MD5 7d25198b7a9fc2b8f2f4ed4af2563f2e
BLAKE2b-256 d921e96150afcb24822846e302a58dac2e0a5c2b73aa73fcaa36284ba18fffe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2e2b7015bd1bab150688c950738fda76b70388793bd539e0e63888ece57af1e7
MD5 c4467a1164cae26356ba44a8fa696eb3
BLAKE2b-256 ad37cc52ffac605518e5aafe2899c70fb250e373762076f1bff4a642e867a2c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f80e7d5b2d7b9b2e799978b2febca6b2f25044496ff94e9c043123eb495bd1a
MD5 2a010c7496a7bf64536c8969a2d7f3af
BLAKE2b-256 e1c41e8ef6efcb95fc5be79765d573e157f295cb6c43fb89351ff28cfb8709bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4182642094cb10377551372c4994505b2b7c82113b210448b87f7f4652cc208
MD5 f9e994702c2c8e8412e1f417e09790bf
BLAKE2b-256 9d25a4b6289e3eb8cf87923535e9421074ab879e49a0d792008a922224408b17

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7eac1ba8ffd3a2cd892f03ab7507d294b5f24ea6511ce6dd28b3edc2fc4f4da9
MD5 a64828e003ce9a0da3d05845ca22af51
BLAKE2b-256 a6c2e18a17618a1e19ee8c8a93cbe4d267d1058ca89e0ee103e73a06f420ff8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-cp39-cp39-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.12-cp39-cp39-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.12-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2f20aca4f5546b07ef71112b76a0f6e2d07399b84c791bb91e7700a6f799dc7
MD5 163acc45d90ed454e21a4e14a3d9e29d
BLAKE2b-256 2fab070be2dc9e56b368031168710c848be203523c7c83d9d22ce7fde6a167fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-cp39-cp39-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.12-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b097b065ec14a91619914dbd6ec311273963d37d77cb1cf873906a28661d974
MD5 51f6c6bcd0741f840a3f5f45df62fd73
BLAKE2b-256 4ef5444f12c8337188c336a43904937ec67f0ee73d0a22dc1a3fdbbc982fa47e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3b6fb7837f57fba552621ce63d2fe23f17ccf77899bcb04d1909a7362ff9692
MD5 4176b18a4bb87bfbf4c7979bea5b00b4
BLAKE2b-256 6dc85bced03d5ade3bfd5c91426d60695d62f91333b059cdf3851f82fc7eb42e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c40d24d52a7fd70eff15f18626a69a1b0fd014e41fb899a9a9b6984f6753e94b
MD5 4e7b90a1ac36c5c8ebba87f71e2e80ac
BLAKE2b-256 027ca2e70fa9473010de6f35c335e7e6f606cd85d73163547521ac7b4bf75c79

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee454ab4b9fa7f600b8ea2f53952e4b60826d45c2ef72eb5694e7dda70e6d525
MD5 2d2d266db98f050b64f9117c1546063e
BLAKE2b-256 6e5ea3eebd1dad5857ce79104e20ebb490e1edf493de4211a9f0c06872d1c46e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bde8fcd01ac29a9d734e659916cada9a7992e8a9b585cd21062aafa0cef66cbe
MD5 140b9a8b1b4690bbb6ae9cf9f8f76d99
BLAKE2b-256 0f7090b9a9486e9cbf9ffbff5ee82826716343e6e8f8f6fef2d28887eb1ce441

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ffc274987108e53d2da6c3a013d2a99c07ebd8ef6e7609951675dcd13642c17
MD5 422dc36c912f3cee2594ebd194eef796
BLAKE2b-256 be223eed7ff0d4cdcfc8c47731577f9dea0b10827b34696256d2a6caf3ef1ce2

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-cp38-cp38-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.12-cp38-cp38-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.12-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72237a267e0245512a58a23a604f1a2590a52cfe43695e1ad84d69d1f51b1a0e
MD5 ade706707710af54932049f6d9d922fb
BLAKE2b-256 683891230ebc320f10f0fd25a5b2d6e06947f16cda0e06f6b7c1b8a722a87578

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-cp38-cp38-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.12-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29e72adc2da0ec5eedea151b8dd6e75ea01803fdcbd67d1b4b80f4146cb5de2d
MD5 f43cf06afdd1cbef9560eb73b8310e04
BLAKE2b-256 3909fff1405b5e24016ec2d70cae379c7c0df527581a48d5986fcffb6a9040d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 64282f9c8c3ecba0400e3beb587441c294f592e404375336172173382205f1d7
MD5 9e4467ebc25359833d5225e66453dea9
BLAKE2b-256 2de74c2a8b6e985f6206e849a133b588618eb48dcdefbd6bd208d2dcca9f4951

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: lap-0.5.12-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/5.1.1 CPython/3.12.7

File hashes

Hashes for lap-0.5.12-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b5dd6fa3f7a00746573a345865b35296b3b718ba706be9b58a197b11a5717b70
MD5 df76c1e662533eb57f0ba35eb36642d5
BLAKE2b-256 b9281cbfb0ad73a91fa6ef1e118488f1654b9fd8b14b943f0763c4d911a50d9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 026191d639a317366c884bcf7576caa1d88c21f439af153d3d74861fe39d6d68
MD5 b9df67cf32e5fe56a591d2e2de31ca25
BLAKE2b-256 2768af3c666b8ba907d4d1941c8b59f77ab14ce7aba9e7b44d6f2a677cfdef61

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59d8afdc349a9dc178742b138c1d703f49a38d7a63df6f048de0122ce1584fb9
MD5 64400c73d128a479be46a97ee4a9423d
BLAKE2b-256 6149d8c3d5c2e1615d2706ca2807ed4418eff102c4e6b61eca245e2fc403d28c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e736814170a8f3483cf6fa9c99136ee58afb071113712291a759dea03701598c
MD5 65450de8f92d537a97c4cf54c9de0de8
BLAKE2b-256 adeabb50a260cff4ad55845d01dda1eafb18bacb7a81f67abb76e9dcbbbc9365

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-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.12-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb6ccb09cf0dbae0daf4129cf13de3518eea8fd4959067bf0fe1c2b97d128039
MD5 063bb9257d574c41445d1ea855369003
BLAKE2b-256 0b0d6f3425d2af963e2bdaddfcb43fec96335fd72b2b151b971be9c0caa53eb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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.12-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lap-0.5.12-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec648065b28d6cdda1c754ab578c989e228094dc2ee74a16ff4e2ba27b53444e
MD5 c987cb0db834f588c94bb648325efa59
BLAKE2b-256 2bd5d441bb2d04f47731fbd2235ded32ee73bbad7a50e4b8ef24185dddd7b37b

See more details on using hashes here.

Provenance

The following attestation bundles were made for lap-0.5.12-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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page