Skip to main content

Linear Assignment Problem solver (LAPJV/LAPMOD).

Project description

Test Simple Benchmark Test PyPI Build Publish to PyPI

Linear Assignment Problem Solver

lapx basically is Tomas Kazmar's gatagat/lap with support for all Windows/Linux/macOS and Python 3.7-3.13.

About lap

Tomas Kazmar's 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 lapx
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 (Require C++ compiler):

pip install git+https://github.com/rathaROG/lapx.git

Build and install (Require C++ compiler):

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

🧪 Usage

lapx is just the name for package distribution. The same as lap, use import lap to import; for example:

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)]

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

lapx-0.5.11.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

lapx-0.5.11-cp313-cp313-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13 Windows ARM64

lapx-0.5.11-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13 Windows x86-64

lapx-0.5.11-cp313-cp313-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

lapx-0.5.11-cp313-cp313-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

lapx-0.5.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

lapx-0.5.11-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.13 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

lapx-0.5.11-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

lapx-0.5.11-cp313-cp313-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

lapx-0.5.11-cp312-cp312-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12 Windows ARM64

lapx-0.5.11-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12 Windows x86-64

lapx-0.5.11-cp312-cp312-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

lapx-0.5.11-cp312-cp312-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

lapx-0.5.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

lapx-0.5.11-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.12 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

lapx-0.5.11-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

lapx-0.5.11-cp312-cp312-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

lapx-0.5.11-cp311-cp311-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11 Windows ARM64

lapx-0.5.11-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11 Windows x86-64

lapx-0.5.11-cp311-cp311-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

lapx-0.5.11-cp311-cp311-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

lapx-0.5.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

lapx-0.5.11-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.11 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

lapx-0.5.11-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

lapx-0.5.11-cp311-cp311-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

lapx-0.5.11-cp310-cp310-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10 Windows ARM64

lapx-0.5.11-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

lapx-0.5.11-cp310-cp310-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

lapx-0.5.11-cp310-cp310-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

lapx-0.5.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

lapx-0.5.11-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.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

lapx-0.5.11-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

lapx-0.5.11-cp310-cp310-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

lapx-0.5.11-cp39-cp39-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows ARM64

lapx-0.5.11-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

lapx-0.5.11-cp39-cp39-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

lapx-0.5.11-cp39-cp39-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

lapx-0.5.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

lapx-0.5.11-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.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

lapx-0.5.11-cp39-cp39-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

lapx-0.5.11-cp39-cp39-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

lapx-0.5.11-cp38-cp38-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

lapx-0.5.11-cp38-cp38-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

lapx-0.5.11-cp38-cp38-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

lapx-0.5.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

lapx-0.5.11-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.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

lapx-0.5.11-cp38-cp38-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

lapx-0.5.11-cp38-cp38-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

lapx-0.5.11-cp37-cp37m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

lapx-0.5.11-cp37-cp37m-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

lapx-0.5.11-cp37-cp37m-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

lapx-0.5.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

lapx-0.5.11-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.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

lapx-0.5.11-cp37-cp37m-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file lapx-0.5.11.tar.gz.

File metadata

  • Download URL: lapx-0.5.11.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 lapx-0.5.11.tar.gz
Algorithm Hash digest
SHA256 d925d4a11f436ef0f9e9684378a44e4375aa9c868b22e2f51e6ff15a3362685f
MD5 6f346a608664006feeee67c26f85f1a6
BLAKE2b-256 865cba00f5d2a8c753ec15e25bc0a01e68055cb8b0d0d973d95ef89d2eb3bc58

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: lapx-0.5.11-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 lapx-0.5.11-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c6c84a46f94829c6d992cce7fe747bacb971bca8cb9e77ea6ff80dfbc4fea6e2
MD5 6a8c8cffca5aefdb897c51b8e7ca753d
BLAKE2b-256 e1ddde28a9eaf8f5438315634a0b5f84b7dd53e263515e173f4a8438a52ee4c9

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: lapx-0.5.11-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 lapx-0.5.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 37b6e5f4f04c477a49f7d0780fbe76513c2d5e183bcf5005396c96bfd3de15d6
MD5 e9811817958f5a060b791acc0975b1c7
BLAKE2b-256 74863b61b2e220af94a56261e561136d8235d15eab9086d5f2a25b5f90979f4e

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dcd1a608c19e14d6d7fd47c885c5f3c68ce4e08f3e8ec2eecbe32fc026b0d1de
MD5 fb334023ffc03240b591cce569d714e7
BLAKE2b-256 4af538783175d61526f8e8b0c851da926471e5fad63c8e7dccb7cf02361f1a41

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 394555e2245cd6aa2ad79cea58c8a5cc73f6c6f79b85f497020e6a978c346329
MD5 ac5da761368deebd6d35be4940b5794b
BLAKE2b-256 dc209204bf21b1ec1145a140f219c2d847ca07147978a5bd761586cffe30f3fc

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 206382e2e942e1d968cb194149d0693a293052c16d0016505788b795818bab21
MD5 6446d57c6463dc2ec8a7839001b5a2a2
BLAKE2b-256 beba671443ac384387c83076a2a9c88d9b3f69b8bd54e1ab05ba4b2b79de976a

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-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 lapx-0.5.11-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 986f6eaa5a21d5b90869d54a0b7e11e9e532cd8938b3980cbd43d43154d96ac1
MD5 9b8371a350bcc7923e8ae7d73dbee51e
BLAKE2b-256 9b985e8842114309618458c43879d263e2a404e97e02af0e8446cd76a03bfd84

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6078aa84f768585c6121fc1d8767d6136d9af34ccd48525174ee488c86a59964
MD5 931ac90700b022bfb3d0c4f16350f5ee
BLAKE2b-256 966e7062c9051d2ea0429841badab3c98f068cf2ef0fa8d02def6dee96e53816

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d517ce6b0d17af31c71d9230b03f2c09cb7a701d20b3ffbe02c4366ed91c3b85
MD5 e6e9cbd3a5552e7a8e2b32e10a95895a
BLAKE2b-256 a07d588ca245fd6aa1e9640f4ebdd16b7b84c4ebc4d86c3ef10bc29a1a43da16

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: lapx-0.5.11-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 lapx-0.5.11-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 02343669611038ec2826c4110d953235397d25e5eff01a5d2cbd9986c3492691
MD5 fd6063e89df1d9a754ff88d6be481937
BLAKE2b-256 ca9829f871a91982e423dac68f31d3e9011be27a650f42fe7f9a011dca9151b5

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: lapx-0.5.11-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 lapx-0.5.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 905fb018952b7b6ea9ef5ac8f5600e525c2545a679d11951bfc0d7e861efbe31
MD5 a48cdbd9e22b8d2d65036d0efbf64dca
BLAKE2b-256 b449cc8d24fd262393f0d5307fc667f9e92b4e1aa52fd7a689b41fadbd1674e0

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70abdb835fcfad72856f3fa27d8233b9b267a9efe534a7fa8ede456b876a696d
MD5 1cd7b12dcd163c4dfc3b1fb1f4edf0cf
BLAKE2b-256 05a9c335374bc0fff564d21cb1f4e7a35680de92a31ed98006b00c815d7ec621

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28fb1d9f076aff6b98abbc1287aa453d6fd3be0b0a5039adb2a822e2246a2bdd
MD5 1242bcaa382e4259705fa8b2c995e21e
BLAKE2b-256 261c713440744ad71a31d261ed0677b38a15d8f33fc0964a811d3ad3636afef0

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 afc0233eaef80c04f88449f1bfbe059bfb5556458bc46de54d080e3236db6588
MD5 336831cdba7321ce254e4aeeb5d289d8
BLAKE2b-256 fddaee71083397d3bdb3e471d768d4dd61b35777b1475c31c0c2dd8e13a0d099

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-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 lapx-0.5.11-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d48adb34670c1c548cc39c40831e44dd57d7fe640320d86d61e3d2bf179f1f79
MD5 c7e2bf4248f844dadcc5d1bc04c6d66f
BLAKE2b-256 b840917790c47bd6e85ccfe469963b90b6bdf942d3e447b055f8d5a6b1da4bbe

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20ab21b4a45bf975b890ba0364bc354652e3ebb548fb69f23cca4c337ce0e72b
MD5 e7ff06bcb1330354cba23e13cf40dfa8
BLAKE2b-256 56d78200d65999dff523a061b1c12ec1f77656a77cf2e1fffda221df07c3f023

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 18c0c2e7f7ca76527468d98b99c54cf339ea040512392de6d20d8582235b43bc
MD5 4052962d0e4249468a3aefc8d0ae26dc
BLAKE2b-256 e23cb909636bc16c7b627efcf8a1188e79184fa6162a38fa72fa83d3ee5b0122

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: lapx-0.5.11-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 lapx-0.5.11-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2ea0c5dbf62de0612337c4c0a3f1b5ac8cc4fabfb9f68fd1c76612e2d873a28c
MD5 b79a77cf55c4e196a81904c035e1abe6
BLAKE2b-256 7cbf9e8bae1f42fec9c7245829eea6e2c100f3a0ace0a52501e3ecfcd0b1d76d

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: lapx-0.5.11-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 lapx-0.5.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2e21c0162b426034ff545cedb86713b642f1e7335fda43605b330ca28a107d13
MD5 14b30d9f7c88f70f3588b114fe0ca44e
BLAKE2b-256 f32b6c329de5ca45759d3c19d571fcd406b4af108e7c7aaa84e34ab052e31d8b

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44b3c36d52db1eea6eb0c46795440adddbdfe39c22ddb0f2a86db40ab963a798
MD5 ebc3ad77a17bed1379c1c75b40d9eaf0
BLAKE2b-256 2163afe5c4d739cc35c91fb2dcea4c36bd90fe586ea4a76be4bcf537825da352

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6a0b789023d80b0f5ba3f20d83c9601d02e03abe8ae209ada3a77f304d91fff
MD5 4f9b3f2aa0d1a5683ba0e446c63d74ee
BLAKE2b-256 783bc466729d53094451f384ea928d5a01684166808fe476115d5cd5b4c99c41

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8824a8c50e191343096d48164f2a0e9a5d466e8d20dd8e3eff1a3c1082b4d2b2
MD5 7d99dcf63b4981b9d2283195fbea2639
BLAKE2b-256 fa59ce468ce7b900b1524d76aa9e71e8e2292cd2b28fb0ee6db1948edfe9cde5

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-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 lapx-0.5.11-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d648b706b9a22255a028c72f4849c97ba0d754e03d74009ff447b26dbbd9bb59
MD5 cb9ea28cf1715d62b7103531a57217ad
BLAKE2b-256 069593ed99e40e34b7e3338f6272159ea1987ed54f72d8affbfd31a8435b7e3d

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5262a868f8802e368ecb470444c830e95b960a2a3763764dd3370680a466684e
MD5 2db07dbbfc45219e906029e4da0bffe7
BLAKE2b-256 b79956cd47adc7ab87bd81bd76392b5ef03edbe5d09370cba824c94f43df3df7

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1a665dbc34f04fe21cdb798be1c003fa0d07b0e27e9020487e7626714bad4b8a
MD5 376194e3ee0e613161b3e67bc7c9db59
BLAKE2b-256 33321b570cb119b1b555442f197978547596ec9a2926f85d2351e98b914ab3bd

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: lapx-0.5.11-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 lapx-0.5.11-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 995aea6268f0a519e536f009f44144c4f4066e0724d19239fbcc1c1ab082d7c0
MD5 374736828777c7ab1e3019c08fb981d2
BLAKE2b-256 c8918ea4307a2cd9f1f2c529b2087da9d69f3f52ebb799a5c197a2341121978f

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: lapx-0.5.11-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 lapx-0.5.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a3c1c20c7d80fa7b6eca0ea9e10966c93ccdaf4d5286e677b199bf021a889b18
MD5 ea1ef2ec29b30d9088235ea24b1cd0de
BLAKE2b-256 3f78a24fe7c4313079d3fc9410d9af85577fc536731dbe5d0eea6e5616c1a9c4

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71caffa000782ab265f76e47aa018368b3738a5be5d62581a870dd6e68417703
MD5 919a79f43b384fc6aa7cb316f8aa0eb5
BLAKE2b-256 1fdff306447eac1549afb7d36c40f96b246db56f7ee691f512de77503248d955

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29b1447d32e00a89afa90627c7e806bd7eb8e21e4d559749f4a0fc4e47989f64
MD5 7139cd20e66773d7bc529f8fcc478e51
BLAKE2b-256 ac8b846f0b45c26ac4215afb4c932cf35c34f5e8ac903f107391c70127a54d85

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6eba714681ea77c834a740eaa43640a3072341a7418e95fb6d5aa4380b6b2069
MD5 bae473d05f88884be60cd17eb4b091ef
BLAKE2b-256 deb0b48ee3913daa987d1cdb9d9aaa5a4ae235341f0ace5e5a92528da23c97cb

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-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 lapx-0.5.11-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 797cda3b06e835fa6ee3e245289c03ec29d110e6dd8e333db71483f5bbd32129
MD5 da6907005aea46c8f5cd0c1d717e81ee
BLAKE2b-256 544ec5a9e0d4f91c0312b479ccc5f45ef893d89fdb4ed75da09dae8c7de991fb

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 523baec5c6a554946c843877802fbefe2230179854134e6b0f281e0f47f5b342
MD5 d0e216456b8de053cd2983c1d536aefe
BLAKE2b-256 1779d2bcbaedcfabb2e12f943eab370a19a429cb54687dd581126463e0e8edc0

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad2e100a81387e958cbb2b25b09f5f4b4c7af1ba39313b4bbda9965ee85b43a2
MD5 3dc10752cae6abe2ca4a10f92b49763a
BLAKE2b-256 9a7099e48425b19a9b2219b1ae3f0e32df8209b23899d7d42114d66dcb03ab14

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: lapx-0.5.11-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 lapx-0.5.11-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 e12b3e0d9943e92a0cd3af7a6fa5fb8fab3aa018897beda6d02647d9ce708d5a
MD5 575d63114d9bb79de84b2f3be2dfd3fe
BLAKE2b-256 a444f5e6b16e77ff33d35568fe79e61ec3b071d6b40cc0cb2f876684d0aa0cac

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: lapx-0.5.11-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 lapx-0.5.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0eb81393d0edd089b61de1c3c25895b8ed39bc8d91c766a6e06b761194e79894
MD5 ae2b0d02f7b018cdc5c925a3df619860
BLAKE2b-256 2a00fba23ef5b854a3b0a97affdd57f280ee3cfeb717ed756e0065d72a6a4591

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 845ca48d0c313113f7ae53420d1e5af87c01355fe14e5624c2a934e1004ef43b
MD5 09b4f9e781487df314626ca680064462
BLAKE2b-256 3cd341837a3ced351187b192cbff3ec86157e1e97bfa1b5e577ea9fe4baadcb8

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d04e5bd530fb04a22004c3ba1a31033c4e3deffe18fb43778fc234a627a55397
MD5 21d72ac0f5296b2cfc8474d1efc3dd1f
BLAKE2b-256 ff0fd165a1a608cd985838c785a6e3f69e87604f3433f6443cf42f1912c6e49f

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6cbf42869528ac80d87e1d9019d594a619fd77c26fba0eb8e5242f6657197a57
MD5 ba7ce4acfa7af4b6cfe433ec5d26abd5
BLAKE2b-256 115ac53de7a6015a2b7a288f7724cd67167fb2d359b5ee091402154cbb9ccfee

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-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 lapx-0.5.11-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5f38aa911b4773b44d2da0046aad6ded8f08853cbc1ec60a2363b46371e16f8
MD5 dcbcfa5ccd39648ee5e30e29d111c748
BLAKE2b-256 a005d911845f88a82d609eb45465aeaef24731f1947fd46b6e602fdd82b03afb

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d07df31b37c92643b9fb6aceeafb53a13375d95dd9cbd2454d83f03941d7e137
MD5 b6afad727cec2a058a499d7930ac128a
BLAKE2b-256 04d15ab749a10324bd4a8f4a607110c8c1a632af345be0566a13fccbcbaa47a7

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3c88ff301e7cf9a22a7e276e13a9154f0813a2c3f9c3619f3785def851b5f4c
MD5 84f28117a594057506628d27356ac870
BLAKE2b-256 019b90f60f5aa38c33a3d614f9598992e557cbb81aa6e4314eefd40282cd7757

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: lapx-0.5.11-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 lapx-0.5.11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 46b8373f25c1ea85b236fc20183b077efd33112de57f57feccc61f3541f0d8f0
MD5 e0d4eaea6c9e0b786cb366275dd73bdb
BLAKE2b-256 983c9f0fde813590dcd7d3e427054e385a416945f614e10fb22e0232104a7f41

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8ee4578a898148110dd8ee877370ee99b6309d7b600bde60e204efd93858c0d
MD5 08a07332246575509f3ca4bfc12b0a1b
BLAKE2b-256 32b55ecb3922b7d9f014f49689f4e0e243dccab6fe569ba65005a2f75b55a87c

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e8bf4b68f45e378ce7fc68dd407ea210926881e8f25a08dc18beb4a4a7cced0
MD5 07fbee1bc71f2edbfdf64c0e77e32180
BLAKE2b-256 163211d2f41663826fc28ecdb7956ba2d5c3ad701afe72c4daf954f60a97aa72

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6583c3a5a47dbfb360d312e4bb3bde509d519886da74161a46ad77653fd18dcb
MD5 41c12f3d257db4a3738e8712ba8ca8e1
BLAKE2b-256 658da545bf880893a4f3fd6a53ac68e32ff8937e79cc05328c0292218986069a

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-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 lapx-0.5.11-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3963a87d44bc174eee423239dff952a922b3a8e30fbc514c00fab361f464c74
MD5 161f55403fffa247e0746c7e7f1b592f
BLAKE2b-256 db8bbf805a3134e33e81359a58fb95a1b93dfbd2a0c35de0872278ba149f187f

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c4e10ec35b539984684ef9bfdbd0f763a441225e8a9cff5d7081b24795dd419
MD5 912ce42a9d2b4c26a498bffb1bf0f34c
BLAKE2b-256 43377f1ad6b5d473bd6eccf419f1dfbe9bb6df50e4fc95dff1608669984ed771

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c381563bc713a6fc8a281698893a8115abb34363929105142d66e592252af196
MD5 3e1cdc38f3c7ceeba8b4bac808a551df
BLAKE2b-256 1b00dff17931c7e521445a3993f79ea74b60b5605ae2760e92e71b5c62bae4e0

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: lapx-0.5.11-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 lapx-0.5.11-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e6d98d31bdf7131a0ec9967068885c86357cc77cf7883d1a1335a48b24e537bb
MD5 8ce5e752e295e80177f20df078bf68eb
BLAKE2b-256 cd95e2083180b407bc943fc53fff420b7bb0a2f8a48b50ca6f571ec76ee7730b

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a64bc3da09c5925efaff59d20dcfbc3febac64fd1fcc263604f7d4ccdd0e2a75
MD5 a01470b49e52dbc73399c7f80b52518b
BLAKE2b-256 3f779797e2511fd14b53573377303965f3809b86ca80f35aff81274480a1ea54

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b322e6e0685340f5a10ada401065165fa73e84c2db93ba17945e8e119bd17f5
MD5 bfed71e7821e31c4635aae310d63f0f1
BLAKE2b-256 9fb6d7b5a2d79d0845f2fdf8b07aa4b14d1f53c93987c278de3a1b470c1f44df

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33769788e57b5a7fa0951a884c7e5f8a381792427357976041c1d4c3ae75ddcd
MD5 1b2d0c491fcaabd67520e15ad4507b0d
BLAKE2b-256 ebe7f11725ba82fb42da781bb7e5a525335887945fef30360666f2453e777275

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-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 lapx-0.5.11-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc015da5a657dbb8822fb47f4702f5bf0b67bafff6f5aed98dad3a6204572e40
MD5 503f8c05df7d07446bfa0dcb43522589
BLAKE2b-256 9e17bd3091340c68de571b7b5e7d089bfcb0fafa1f4afb9f2d7703720d7b21e2

See more details on using hashes here.

File details

Details for the file lapx-0.5.11-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lapx-0.5.11-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb7175a5527a46cd6b9212da766539f256790e93747ba5503bd0507e3fd19e3c
MD5 b2312876c4e8ca5c4cccf48cb479c7cb
BLAKE2b-256 b1c4a707980208e7356c70c80fb67cebe0182b422e3bb71a62e1ddf13eb9cbf0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page