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 is 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.10.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13 Windows ARM64

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

Uploaded CPython 3.13 Windows x86-64

lapx-0.5.10-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.10-cp313-cp313-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

lapx-0.5.10-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.10-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.10-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

lapx-0.5.10-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.10-cp312-cp312-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12 Windows ARM64

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

Uploaded CPython 3.12 Windows x86-64

lapx-0.5.10-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.10-cp312-cp312-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

lapx-0.5.10-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.10-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.10-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

lapx-0.5.10-cp312-cp312-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

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

Uploaded CPython 3.11 Windows ARM64

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

Uploaded CPython 3.11 Windows x86-64

lapx-0.5.10-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.10-cp311-cp311-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

lapx-0.5.10-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.10-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.10-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

lapx-0.5.10-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.10-cp310-cp310-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10 Windows ARM64

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

Uploaded CPython 3.10 Windows x86-64

lapx-0.5.10-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.10-cp310-cp310-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

lapx-0.5.10-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.10-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.10-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

lapx-0.5.10-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.10-cp39-cp39-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows ARM64

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

Uploaded CPython 3.9 Windows x86-64

lapx-0.5.10-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.10-cp39-cp39-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

lapx-0.5.10-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.10-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.10-cp39-cp39-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

lapx-0.5.10-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.10-cp38-cp38-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

lapx-0.5.10-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.10-cp38-cp38-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

lapx-0.5.10-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.10-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.10-cp38-cp38-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

lapx-0.5.10-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.10-cp37-cp37m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

lapx-0.5.10-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.10-cp37-cp37m-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

lapx-0.5.10-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.10-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.10-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.10.tar.gz.

File metadata

  • Download URL: lapx-0.5.10.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for lapx-0.5.10.tar.gz
Algorithm Hash digest
SHA256 98cb2c7e2ca3dbbbd2e6aa223be5c6953cb9970f932cd86186c4c2b57e1b9bb5
MD5 cad87392dc11ead065596308959c57b3
BLAKE2b-256 f072b477934bb093a1866ef2c34db8a7ed976758ccd8833da56ab64bb040a01e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lapx-0.5.10-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.0 CPython/3.12.5

File hashes

Hashes for lapx-0.5.10-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 2278e102f54afeab8472735182ba619f74b075b0114d5e630d12f3004d54d155
MD5 089eab931119cf3daa63f751e390fae1
BLAKE2b-256 bd5b53f1e98a4d3c7129dba7bf220255febdbb140ae9ee6e00f84df61a322918

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lapx-0.5.10-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.0 CPython/3.12.5

File hashes

Hashes for lapx-0.5.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a5f77918363b3e2ae34f897107bc1378abb70dbd62f3ef947f88e7ba7fd217b4
MD5 3fa276b3e4a59b0d64c18bbd9a40b4a8
BLAKE2b-256 03af2526de14c2b2dd3cb6d2bad4e5a43b407c7a5601edc82e2ed3a7a6b99398

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a59a8f62dfaef3030a092650ad8db7fcd09035a3322df39086da6d33780f1f8
MD5 7d75cb98f9048f6dde558e193e0b246f
BLAKE2b-256 9649b2438c9a82677adc706f6c3fabf26a007c4c11bc7ce5d365580c3595b32f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6855ce19be0e25eb6fafffe9bdbb2e8a72e361b1f6fc4385bfc857a3c2aca175
MD5 46495587fac04a13dcce6215a02be732
BLAKE2b-256 2055ddd60bf7d70cdda70b80054b0964efe95d20bc9e8862c1bbe45724d48b7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e5015e9f619c6d7e5c65e239cad0f29f5ec0fe0223b43d8e3b1aa9dbf27258a
MD5 710c5959f1cf42410e3fa81679756e67
BLAKE2b-256 1a424d8b260935bfacfd270e14d802ea531af4b4fb652cb1ee6217682b822f74

See more details on using hashes here.

File details

Details for the file lapx-0.5.10-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.10-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a28f4e6754cb596a48b7344b8810cd625953ba1d734ec261442e3335af617a9
MD5 fee7ef0fc24204848e813c9e92bcac2b
BLAKE2b-256 4cd4134452342d08e53f517d9bf44dbfa1d8aa20eae9861cc0ca154c3adbf7f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 308ec1cd5e434c747eaff559cdf45c2dc5546e472f1693e4a2d225e85efe22d3
MD5 065b3c3c8427df03c18700d7481b5ad3
BLAKE2b-256 2ea16f6996be8f17fadd8ba88221966c7b7f2d3e913281b16de939dcd2a70659

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 78e110fba3439ebddf420f75cbe069707e0033ee3e02a4afbd26a36efba7aa4b
MD5 bbd8ddfece974a011b797b1b637ae4ed
BLAKE2b-256 6f2c592aa0962fb726d4bf9ab6809a83013b3f0488560eac7f0df8fbc0169f82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lapx-0.5.10-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.0 CPython/3.12.5

File hashes

Hashes for lapx-0.5.10-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 42ad262b7fac523c4aae3fd3d28632fefd27cc38924d9a64fdb9597551e7c61d
MD5 0b5926c7d72716dac2dc1ea01aaf3457
BLAKE2b-256 68ceea7859e99461f4e1629a33f40c63893b3fb612cde14c8d3df061af7796c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lapx-0.5.10-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.0 CPython/3.12.5

File hashes

Hashes for lapx-0.5.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f5a17fc5b8b4ebb0f4c412c166741c304c227a6b025717b22dfb141d1bf33f9a
MD5 d9d48531753c0fd872c7e5de7f6068ff
BLAKE2b-256 0471a8ed1891f7694588392f7aca4e82f547521de4f998246f01896384c35b63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a76d6e5d22c5f3f6d0850308c28f2a1d211f26b862d2f2a89899be2e06cf35ed
MD5 e0f792064286f8811acec265d2ed6b30
BLAKE2b-256 6902571de253be81d1ecdbfc6fe64222426651647720c6b9a4bdfb2bc8894342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a8b0b9f9547d7dd62f7474aa8cac504b115585eb4a955b6b376cd38b358d99b
MD5 dd6e03e0cc10c89a36992b0066c3716e
BLAKE2b-256 5d3261fcb842541e18fe4cdb4a424870d6a93521c4a495c8eef8062c1457f9c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e44166ac28e0c38bfeec7812ff57cc6286cf88601b119c13c66b8035482043a2
MD5 3d82aeae280d01cd4aa035f41c4c3a03
BLAKE2b-256 1cca7d38118d466abbe47eabf22b39b4824403161827f251fc97b491ab056359

See more details on using hashes here.

File details

Details for the file lapx-0.5.10-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.10-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6c7bc8c6e11545ad630b9499510f98cd89fe2f5109d5c83891717cbfc1fe721
MD5 644ded47e99b52113c1adfec71e8c489
BLAKE2b-256 973dffadd8125c3b11bee2903cbbfe6c1c5876bdbcb41d34406681e12ef75714

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03f16d51cd7f82ae9895d04c29dbc648d2c71e42a3b0c5eb364b6f8af973f63b
MD5 518226528a4a3f70e0d24e4b97c3743b
BLAKE2b-256 6bae88078566d22c8bf6858281c9dfe1af789e56dda2dff050c256eb3ecc589d

See more details on using hashes here.

File details

Details for the file lapx-0.5.10-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lapx-0.5.10-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6e8e5d13d441799efdfc1479f54f9e3ddd15b1082b06d81760ee43ce8aee59d
MD5 e08b78b208eb56b65a4431a4403d2333
BLAKE2b-256 9e8c212dd85632758c7c6a2b47b27d0e6a6480a400e83c001b621cb61d276614

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lapx-0.5.10-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.0 CPython/3.12.5

File hashes

Hashes for lapx-0.5.10-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 73e25fb7af1645eab5775d83b563e2a74c0c6c74d10d0ee6097fcfdc9c17bc29
MD5 e5f23351dd059119222e5f6d6db44c89
BLAKE2b-256 6286fc440e7e608d533ce695016fb203d90dc8c90378065026e2868e1f4a6060

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lapx-0.5.10-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.0 CPython/3.12.5

File hashes

Hashes for lapx-0.5.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 46e1a2655aff35c8f63d794d688e77de0785e16903f5e4c7eafe4bb105884c0f
MD5 fe4002d2d2693f9f6312106d81a6e1d9
BLAKE2b-256 ff4a49e5f2021f83a456cd36dc979d329a2ce995683e92e6d7ef07d0ca27057e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9086505d63c246567d3e6f0cf7e1e026b0c6825cc04f61bd9111e3ba1b61b52
MD5 6c87b5fb6d21e2ef29d52b861de624b1
BLAKE2b-256 450d5644310c5a30b470861bfaf9553acc10001e1765bc8aa82bc78f25c2ddab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e04ef2b68d52bc56f43f30e1fd3ad880c01b17b89c0dab7d7dd191585885ef2d
MD5 642ad2d956ab25703d30fffc0513df26
BLAKE2b-256 6b540279e74b8f7059ae9e17ce0f1368fe1bdf27b2b1e7d97e7903bc082c5b21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1431a4fe53c163444bea197242dddf2a85c2f6cde46e1887f537455f4423094f
MD5 09d5e370d16c256fa62ee47e2729be20
BLAKE2b-256 0824c2e9cb7180cd6ecc9837884475e00ea70b143b4577c16e1bc563e99f6cc1

See more details on using hashes here.

File details

Details for the file lapx-0.5.10-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.10-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e17f2f6de1496c2831e8aa5f367d373db4aff727df91ad9aa79fd26b5d68f8b7
MD5 e2c199cf59c3c40781c9725e151cfd63
BLAKE2b-256 4d65bfc8deaadc918e9b5421902a4d83a1dff2762ba9ab34980e697d1206fb97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77b2d56bc7fb15c0f82212f7310c988f051e59644a44bfd55e83eff148f68e35
MD5 cfdae20d87bc9d74ccc2511e08ab0c3c
BLAKE2b-256 5e3082bd6a943aed049928466d11a8b46e69974e1917a51d08f7951fc7c9b1bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f721935fd17f065747df67dd4c57e81088bbd6a9b60b6e67c33e2fe19316c41
MD5 b4b4cda07899c8b1f8bc01fe22dae571
BLAKE2b-256 8bdb584d2fa4d64397916176f4344025f7b5e97c8dc9a1fae6da8f13c699edc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lapx-0.5.10-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.0 CPython/3.12.5

File hashes

Hashes for lapx-0.5.10-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f110d2a6960b501f59431e0b44a68980218970fd39da236983b655abdb1b7f56
MD5 618d9461dbd38968c82d78a4d510db9f
BLAKE2b-256 2b08ab0cfa910b4e68d6afe9346ed92b3dbd2adc846cb7021133673041183288

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lapx-0.5.10-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.0 CPython/3.12.5

File hashes

Hashes for lapx-0.5.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 07058559962be8fc51537398330aab739c0d735b5059cb5fa74f5242522e22be
MD5 3aa2d304c9f9ad0f939ff28d25f7aa6b
BLAKE2b-256 5a4a7055f091ac63b504a23169a30c68420ed8d9f8f8785a80c2922141f3ccb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad0342e89fbf0116d891cb967390c16b86cb264d3d056b9bfc2bfd0f2e5a8813
MD5 2a7cd3bacc19419bd278303512bc36f8
BLAKE2b-256 346870e8bccfd7a20cbf9cfaf726d5cc529c10a506860a9eacfad9193dbcc255

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac2b90e22268cc2b5e1df82d3a8a2f9c81ad4b15de3d343c2eedb9201428a216
MD5 30b6a9a1fb461ce9fae5f0f467395257
BLAKE2b-256 10c1ee97f27062cfe4bf4b26ca5a4102dd316d2486b71981447855807ece227b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d09a90d1b695c1ffe91beaef76b55c594948deac523993d9d5203ecd6e7a24ca
MD5 f430acdbb61a60524d6b0174a033117e
BLAKE2b-256 5fffe3054b09e6789dfe0ef0b82a9e3bbc65ff52432d8033d6d7782fb3b1d027

See more details on using hashes here.

File details

Details for the file lapx-0.5.10-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.10-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6adcc9ab6bd8d1673d36c778519ea21db916867dc582d698479e3455f6c7c072
MD5 d8dc8102ddd34fcbd61acfc630edd031
BLAKE2b-256 727fe7f27950a9a21ff6528fce990150502e4c33e4fb493b1f5f0eb132ef84b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f78680bbc20e1890a6af75a5ced3d092eb900e2ed3b2f809e1bb91934075ca8
MD5 352ea7ed59e85e1123ddd9c90a625a58
BLAKE2b-256 55c031b349b7ba9d070e0070ce90d5b4ad4d4fd93b59f1ad8d9108f1e4726e22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f601b0379210245643cc80f1f49f04969d7346984ab9d1609452c50b69cd14bf
MD5 30981030cc375b1f59aae80f52f51324
BLAKE2b-256 6d089f01beefc45a56f1b8221eddb60bbc521859894a7307b446114bf9a3bfd1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lapx-0.5.10-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.0 CPython/3.12.5

File hashes

Hashes for lapx-0.5.10-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 84a3ebf4c33eb1a1fb9633c9f754c6a01300de18890fe7669d886bdfc08f082e
MD5 6737c1c7a02a2c1a47e404ebab714b64
BLAKE2b-256 4ad0f8993858e46082d74f5ac0372af25c0dbc52be79d575fae5961be8723747

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lapx-0.5.10-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.0 CPython/3.12.5

File hashes

Hashes for lapx-0.5.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e4bc0805fdc45f6472e1ba077a56214892be3faa0f4349f78205f92d58289da4
MD5 08fde6f7f194a6355a76b7e39075ed9e
BLAKE2b-256 9356ce1e067d94a6a95061954fb686023b6b7bc128fd32f7651191e802c2eca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f16ef409275f171239617660cffd0a847ec62782e3b1d6edbccf8edfb2308c09
MD5 b7a4ec5cb53a1705fc47ae874e541142
BLAKE2b-256 5322209f2123db4c5f344625406f90e72dd4dc8b951486e0e76fee3e65bb1113

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fae51d575df163329107f98497c36a043bfbc94dcba43433e8724e1f3c72b89
MD5 6b239f6aaa2130051a8a831486aece8d
BLAKE2b-256 e19512d4b1f9853dd6d0f9433ef858636f73cad318f33d3ad83e95c0784a70fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8cab953805af95ee50c0f8673573e01b55b8bb076df96b61925f25278da0f219
MD5 4b1f0dc369df85e9d29b16dd4fa43bad
BLAKE2b-256 32e583a89d59774d88416d45d2c35ca40cf537d9c00cbbcfc182003b7070da83

See more details on using hashes here.

File details

Details for the file lapx-0.5.10-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.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97841c7550651bb581a679258c88067503dff73381e3a458c2fa459011ea8d40
MD5 befd03b03d1384f862015ac2feaed884
BLAKE2b-256 8d4a11918e43e71b4b150a4819a321aec68aec9387281ddfdfcf269d9798525b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 078f2495d92b72a6fef0d5e928b21b82fd0b56945494c918ac1f7cf89d424e82
MD5 744a8e2e68eecbc25e178c0527f68cfa
BLAKE2b-256 4990f70746fb2b92173ea39a54ee3c9bc8abb3973cb511bcf36dd1716b45913d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ea6b500563cfc4f4893868a3d28558b96c57b109580c1bdac863cf48de37e1e
MD5 a8b071318e5bdc5d5dd3294f5676c824
BLAKE2b-256 6a541377c797f7bef0b4de814c24396ad67ecfc0eb65ac5a5c8331d8cc34a3f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lapx-0.5.10-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.0 CPython/3.12.5

File hashes

Hashes for lapx-0.5.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1ecb1f81660047ed0a8cde06ef8737169e7fe9e7ba3055c5288fbcf30b2d4493
MD5 7cd63c2ff266ad71b5b8d078ad7abc00
BLAKE2b-256 a63b3ab06ae61117c6d888b900f1b7465db073f46fff7c82c1ba92f997447803

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f6041b747efcc259ab8723dbeaa8e13e62bd8afbe196d07007e077291588247
MD5 b5c559864550107216c3df633ab7cc0c
BLAKE2b-256 5bdcefd729394201450bb977d8cef81528e8b01bd48f7d31f158fc1e2e1f1fb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a6b55fb3ba9facf75d8c2f45f1bab84248714211518c93c5fd03768d616dc33
MD5 15adbd5b2bac30bcbb3dcbc609071f23
BLAKE2b-256 fbdfa547e15bc7cfb48f618e014a647f9958f1355d88fd7102eda8e0c0f42ccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4c8c3ffa6f9d03c47572751d3d586ae618fa1ddb0fd8e82738d3136d7980355
MD5 c4c7f76a7ffbeff1c4448861635c39b8
BLAKE2b-256 3b8cf0213dcccff00d0ef0bd8101d1e9ad2b51a210659cc5ded085dc20cb5b37

See more details on using hashes here.

File details

Details for the file lapx-0.5.10-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.10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75d9b60589f23204bf9194801c4431f62587c1a153c62e0b14ae8efa571dc917
MD5 8fd02ea7dec71c28d85657c88dab8bf4
BLAKE2b-256 32be2a86a642cfc504625127b1b5becdfdd0cb1822b4e5bdf4827e742344c7bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc56f54be1b64df554e703fe1060064c0bc89e637f4ad5a6cf21b1e370ef9da4
MD5 0d952bb98767963d321c250057f4f50b
BLAKE2b-256 d522442127067aa77d463a083529c5ad8d239884823c64ea6aab11945c97a1b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d354e0607cd2d18d4c7c2cf702e8a1ffc62f053567ea072e47940f253fdeee34
MD5 492d1f776997fc8cd3b3131e8b047607
BLAKE2b-256 41ad594a256fee5b20b5c2fa14ea6a289732daabbf9321ac2b3762db844fd8ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lapx-0.5.10-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.0 CPython/3.12.5

File hashes

Hashes for lapx-0.5.10-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e8a593a96cb8a25f37f8d6c72c74712e14f56c9f737cd2229fb64943db49b30c
MD5 a4d0a8bca59e7338772da1c3928a1a88
BLAKE2b-256 4b42aa57b65bcb8c746a35a7ac87f449caaf98463b455bc758f093b7f0e21f56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80e4f4228cdf7b523d2a196b5be3c342095980e4749e5a257f3ee9e2d3b507b5
MD5 27ed08794b4f734ff1b33db52497c2e6
BLAKE2b-256 b8bfa5c8da6da86a30a8f36492ac622e530ae80c4c17504c64d2f057276ee1b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1971f89980fb3b0daac5f744f10219552cc6017f0dd81347664e50c3369c80ae
MD5 74b9c68dfc1a67aee34601169b8c77e8
BLAKE2b-256 30716f69a3032738577d1b373cb5842fea6208096c5842b47a5f22cf046c6329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2e7a8b45dd091320e588719517f3325444e4437def280b1f8c78cc4ee3cbd0a
MD5 5d9005bace721f01c244c59f957fe92f
BLAKE2b-256 7ca1bd7bf937f1cc3fc8caeba569d5692bc62bd283b65c750a3c8dd0e312ef2a

See more details on using hashes here.

File details

Details for the file lapx-0.5.10-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.10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f683d617a89c602c352a7c35714cf33b8aea31f359aa7596b35813d8127118bc
MD5 3cd3ba6895f305351c09b916e56925f5
BLAKE2b-256 d66bc992671a50e8cd21c9a133d39380e3340a9023b457cc71bc0573e41bf200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lapx-0.5.10-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f9639de4d4ec370c9d948861652185b20a582de7a548e9408d4dcd44c225100
MD5 b5473f50a458dcdff447ebe9ba1c653f
BLAKE2b-256 482e08115e1aef83b09cc8d4ccaa56106cdb658bdeef392c045d0d2ffd22bfb3

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