Skip to main content

Python bindings for Network Simplex algorithm from LEMON library

Project description

pylmcf: Python bindings for Min Cost Flow algorithm from LEMON graph library

Overview

pylmcf provides Python bindings for the Min Cost Flow algorithm implemented in the LEMON graph library. It enables efficient network flow optimization in Python applications. It is used by wnet (a Python package enabling the efficient computation of Wasserstein and Truncated Wassersten distance between multidimensional distributions) and wnetalign (A Python package enabling efficient alignment of MS or NMR spectra)

Features

  • Fast min cost flow computation using C++ backend
  • Easy-to-use Python API
  • Supports directed graphs, capacities, costs, and supplies/demands

Installation

pip install pylmcf

Usage

import numpy as np
import pylmcf

# Create a graph with 3 nodes, labelled 0, 1, 2, and edges 0->1, 0->2, 1->2
no_nodes = 3
node_supply = np.array([5, 0, -5])

edge_starts     = np.array([0, 0, 1])
edge_ends       = np.array([1, 2, 2])
edge_costs      = np.array([1, 3, 5])
edge_capacities = np.array([1, 2, 3])

G = pylmcf.Graph(3, edge_starts, edge_ends)
G.set_node_supply(node_supply)
G.set_edge_costs(edge_costs)
G.set_edge_capacities(edge_capacities)

G.show()

# Run the Min Cost Flow algorithm
G.solve()

# Retrieve the flow values
G.result()
# returns: np.array([1, 2, 1]))

# Retrieve the total cost of the flow
G.total_cost()
# == 12

Requirements

  • Python 3.7+

Licence

pylmcf is published under Boost licence. LEMON (which resides in src/pylmcf/cpp/lemon subdirectory) is also covered by Boost licence.

References

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

pylmcf-0.9.3.tar.gz (62.8 kB view details)

Uploaded Source

Built Distributions

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

pylmcf-0.9.3-pp311-pypy311_pp73-win_amd64.whl (170.4 kB view details)

Uploaded PyPyWindows x86-64

pylmcf-0.9.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (206.6 kB view details)

Uploaded PyPymanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pylmcf-0.9.3-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (197.3 kB view details)

Uploaded PyPymanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pylmcf-0.9.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (161.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pylmcf-0.9.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (195.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pylmcf-0.9.3-pp310-pypy310_pp73-win_amd64.whl (170.4 kB view details)

Uploaded PyPyWindows x86-64

pylmcf-0.9.3-pp39-pypy39_pp73-win_amd64.whl (170.4 kB view details)

Uploaded PyPyWindows x86-64

pylmcf-0.9.3-pp38-pypy38_pp73-win_amd64.whl (170.1 kB view details)

Uploaded PyPyWindows x86-64

pylmcf-0.9.3-cp314-cp314t-win_arm64.whl (163.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

pylmcf-0.9.3-cp314-cp314t-musllinux_1_2_x86_64.whl (661.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pylmcf-0.9.3-cp314-cp314t-musllinux_1_2_aarch64.whl (635.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pylmcf-0.9.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (211.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pylmcf-0.9.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (201.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pylmcf-0.9.3-cp314-cp314t-macosx_11_0_arm64.whl (165.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pylmcf-0.9.3-cp314-cp314t-macosx_10_15_x86_64.whl (200.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pylmcf-0.9.3-cp314-cp314-win_arm64.whl (161.3 kB view details)

Uploaded CPython 3.14Windows ARM64

pylmcf-0.9.3-cp314-cp314-musllinux_1_2_x86_64.whl (659.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pylmcf-0.9.3-cp314-cp314-musllinux_1_2_aarch64.whl (633.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pylmcf-0.9.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (209.3 kB view details)

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

pylmcf-0.9.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (199.0 kB view details)

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

pylmcf-0.9.3-cp314-cp314-macosx_11_0_arm64.whl (163.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pylmcf-0.9.3-cp314-cp314-macosx_10_15_x86_64.whl (198.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pylmcf-0.9.3-cp313-cp313-win_arm64.whl (158.9 kB view details)

Uploaded CPython 3.13Windows ARM64

pylmcf-0.9.3-cp313-cp313-win_amd64.whl (172.0 kB view details)

Uploaded CPython 3.13Windows x86-64

pylmcf-0.9.3-cp313-cp313-win32.whl (166.5 kB view details)

Uploaded CPython 3.13Windows x86

pylmcf-0.9.3-cp313-cp313-musllinux_1_2_x86_64.whl (659.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pylmcf-0.9.3-cp313-cp313-musllinux_1_2_aarch64.whl (633.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pylmcf-0.9.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (209.3 kB view details)

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

pylmcf-0.9.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (198.8 kB view details)

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

pylmcf-0.9.3-cp313-cp313-macosx_11_0_arm64.whl (163.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylmcf-0.9.3-cp313-cp313-macosx_10_13_x86_64.whl (198.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pylmcf-0.9.3-cp312-cp312-win_arm64.whl (159.0 kB view details)

Uploaded CPython 3.12Windows ARM64

pylmcf-0.9.3-cp312-cp312-win_amd64.whl (172.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pylmcf-0.9.3-cp312-cp312-win32.whl (166.5 kB view details)

Uploaded CPython 3.12Windows x86

pylmcf-0.9.3-cp312-cp312-musllinux_1_2_x86_64.whl (659.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pylmcf-0.9.3-cp312-cp312-musllinux_1_2_aarch64.whl (633.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pylmcf-0.9.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (209.4 kB view details)

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

pylmcf-0.9.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (198.9 kB view details)

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

pylmcf-0.9.3-cp312-cp312-macosx_11_0_arm64.whl (163.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pylmcf-0.9.3-cp312-cp312-macosx_10_13_x86_64.whl (198.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pylmcf-0.9.3-cp311-cp311-win_arm64.whl (159.8 kB view details)

Uploaded CPython 3.11Windows ARM64

pylmcf-0.9.3-cp311-cp311-win_amd64.whl (172.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pylmcf-0.9.3-cp311-cp311-win32.whl (167.0 kB view details)

Uploaded CPython 3.11Windows x86

pylmcf-0.9.3-cp311-cp311-musllinux_1_2_x86_64.whl (660.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pylmcf-0.9.3-cp311-cp311-musllinux_1_2_aarch64.whl (634.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pylmcf-0.9.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (210.0 kB view details)

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

pylmcf-0.9.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (200.3 kB view details)

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

pylmcf-0.9.3-cp311-cp311-macosx_11_0_arm64.whl (164.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pylmcf-0.9.3-cp311-cp311-macosx_10_13_x86_64.whl (198.8 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

pylmcf-0.9.3-cp310-cp310-win_amd64.whl (173.0 kB view details)

Uploaded CPython 3.10Windows x86-64

pylmcf-0.9.3-cp310-cp310-win32.whl (167.2 kB view details)

Uploaded CPython 3.10Windows x86

pylmcf-0.9.3-cp310-cp310-musllinux_1_2_x86_64.whl (660.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pylmcf-0.9.3-cp310-cp310-musllinux_1_2_aarch64.whl (634.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pylmcf-0.9.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (210.2 kB view details)

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

pylmcf-0.9.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (200.6 kB view details)

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

pylmcf-0.9.3-cp310-cp310-macosx_11_0_arm64.whl (164.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pylmcf-0.9.3-cp310-cp310-macosx_10_13_x86_64.whl (199.0 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

pylmcf-0.9.3-cp39-cp39-win_amd64.whl (173.3 kB view details)

Uploaded CPython 3.9Windows x86-64

pylmcf-0.9.3-cp39-cp39-win32.whl (167.7 kB view details)

Uploaded CPython 3.9Windows x86

pylmcf-0.9.3-cp39-cp39-musllinux_1_2_x86_64.whl (660.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pylmcf-0.9.3-cp39-cp39-musllinux_1_2_aarch64.whl (634.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pylmcf-0.9.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (210.4 kB view details)

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

pylmcf-0.9.3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (200.9 kB view details)

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

pylmcf-0.9.3-cp39-cp39-macosx_11_0_arm64.whl (165.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pylmcf-0.9.3-cp39-cp39-macosx_10_13_x86_64.whl (199.2 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

pylmcf-0.9.3-cp38-cp38-win_amd64.whl (172.7 kB view details)

Uploaded CPython 3.8Windows x86-64

pylmcf-0.9.3-cp38-cp38-win32.whl (166.9 kB view details)

Uploaded CPython 3.8Windows x86

pylmcf-0.9.3-cp38-cp38-musllinux_1_2_x86_64.whl (659.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pylmcf-0.9.3-cp38-cp38-musllinux_1_2_aarch64.whl (633.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pylmcf-0.9.3-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (209.5 kB view details)

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

pylmcf-0.9.3-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (199.2 kB view details)

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

pylmcf-0.9.3-cp38-cp38-macosx_11_0_arm64.whl (164.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pylmcf-0.9.3-cp38-cp38-macosx_10_13_x86_64.whl (198.4 kB view details)

Uploaded CPython 3.8macOS 10.13+ x86-64

File details

Details for the file pylmcf-0.9.3.tar.gz.

File metadata

  • Download URL: pylmcf-0.9.3.tar.gz
  • Upload date:
  • Size: 62.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3.tar.gz
Algorithm Hash digest
SHA256 6c99e4a49bf026551c75ed9b714bcf3ba60717dd657d2755e09a9969f6d52a0d
MD5 327a09dbfe8b997f9b7c0d6917744c22
BLAKE2b-256 01dea9f7d58d41a1533effc385ec5e47ebb19e5ba216d87f57d65b4f3b5e7b8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3.tar.gz:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d72582535d2afd33de73ac142312f46a2c8df6a22a60c65e13ef051556c2f798
MD5 b80c064f270fc2f755bdf919350fbaf9
BLAKE2b-256 f5a11788c401bd3885bade340e4e684684e47b8b4022383bff0321de99603fd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-pp311-pypy311_pp73-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66daeed09eb90b9dce4b893169d7b6c62eb1752530d4fa63fee195f2c8793f8c
MD5 983216020b1ff6f423cdbe5de6b155e1
BLAKE2b-256 4afbc31009d3eb7a5de25d8220963d059acba62e369b64cfa29370fee997762c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e2516768907e3b74a540675d42c18748fab290d24e49d918e555b17085162b4
MD5 ca078ae4635fc0359fc1cc37acfc1a17
BLAKE2b-256 296b08f6a7b04140a71f9b608a29857d7e1cbd95b9936144bdcd2b1d07335d43

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f05547fd42f74187ad51a0a94dacc0f6119299639b566caaf1358c8afc41f16
MD5 b11fd977b021c92907d092b899e57a6e
BLAKE2b-256 ef3df3f2ef668555df819f29875bcfd32b5f8e4954c7485af756b1fbd663d0b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4b835c1e5e2bd458b38eb39e139f7271764a4d3640a4487eb2de8ee770dc5885
MD5 51fe2382b0fdf369b374c1213e3e251d
BLAKE2b-256 14aaf893d238e0abc6a5b32b5e8fc40d366facac621bf4ebbe21535d0983c2e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 377bb23bfa485f347bdd2a6943c0939a220e214bccfa98e56ebc4093f1de2aea
MD5 4ddf61cad08dc111b4d45bfad3708f7c
BLAKE2b-256 8ea9dd20021540458fbc3ba4e71692ac0dce8aa9c792eac2b25ee22beea499cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-pp310-pypy310_pp73-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 09c43140d65f6ed3ea4dc39e12218bddf766304dd5b5312af1a7f40b9566e337
MD5 974c2cebce0d3e26ac120c7558da6f44
BLAKE2b-256 eda2fdfb3049d211554f63d9b60dcd43316bd5c091f02c8310f8fd03b6067a60

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-pp39-pypy39_pp73-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 68b37fdaa469af9e26ca1db386c5375862b0d3a8776f45ecd81889ac985e1e25
MD5 a5266900006c37a79d9aea8cfa962d66
BLAKE2b-256 15527adb445926b6b3fcee903a0b5239091bdedab4799af987776399550b7736

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-pp38-pypy38_pp73-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: pylmcf-0.9.3-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 163.4 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 cdc86aaa7c6626a6d98caffd753138bae1d33e405b520f0e4500320bc90c038a
MD5 883cb3ba189bbeee72e1bb698969cf80
BLAKE2b-256 eb47a0f0f35ffc02d22113be10607ffb3bb8a90579931b05835d5b492b8ae1d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp314-cp314t-win_arm64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5927d7c52c58e2bc75072b4095543f7fc563d7f4593c63931a4526deb237b627
MD5 5c0e607138f8c51d29aa27169831f5af
BLAKE2b-256 1ec2c3e461f65876bc59f455b15d6f899e0e39d6cbc694c893d03191f283686d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8bc5855c8768d2aa9a156ced8218c5e692a5caf279b2b31baa7671dd601915f
MD5 e6349488d786d352a7476fa0905eb2b1
BLAKE2b-256 ace4d052840f7a019f78c81fd91ffb6af49118b6beedb8ba470244b2174f91d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e26f108aa368609f826da88aa2e520f4de16a25a660ca221c07b019579382d3c
MD5 dfa0d2537d05b45497596e9a962e32e9
BLAKE2b-256 312e50c47585654374c8e58fac8ca6752d983490e7b3725cec44965624576eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff1728726821ea38de12c2d94326c22dd7e9f9ec416be427948ebee30a71582f
MD5 edb65fbb22481a3be4bdfe9010df57d7
BLAKE2b-256 2d931f24c0a5cdee13f908cd33644b57306f228446f18417cfca599879def43e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec51b88a05caca7c61c76bb01ececbdb838ac72acfd3548a82ace79230d1af38
MD5 686e7c07f5bcfb441c0d03e7bff94ed4
BLAKE2b-256 12682606f34f68396718102a688309e040192ed39428b37e69fd58a568751249

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2514f12bef0b74cab8684f6fcfc616c65d0d4e7e61c0ba4d38228cf05a0e8308
MD5 094ec57e4f5fdc0719117fc087f0b8f6
BLAKE2b-256 4d9eb05faf1fb9bd75b67ae7a49c59f721328237853e1792b7c2f889f923b8f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pylmcf-0.9.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 161.3 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 bc75fabd63ccb33835dc09d19ee41471c285609ffef1d9688f7cb0ba234e338d
MD5 d2c056476830ecf09d2b91eaa081fd77
BLAKE2b-256 30a00ec50a86b2fa3ddc10c623c38767394fa795334a9df4828e7212568032b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp314-cp314-win_arm64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c550f443b6161f07ffb5d1aa4a44186f35c505d31c5a321b2383d587dbe8e5e6
MD5 26f5e8bce436651d79659e0df49e6697
BLAKE2b-256 cbc08af51c43092947a7728f523ade6b9605c341d6f8093e013f4851c8bacd5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c8f74940816455fe889553101ed6ca29454ffe5aa89b3f4221bc122716e2b89
MD5 806738ac2e51446f5c736bceb5104757
BLAKE2b-256 04f903a0a534680b2cd3d601858990a015aeb3d2601985b27d23f6a3821b8d13

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f37a3f07de8ad1ba0d1ed84335d04d644150ec967ab54f8e93f20c7fc6f14cab
MD5 30b368f719cbc46c2f0f1ad8defa9bcb
BLAKE2b-256 840a61309649902954098a715ee62de2a49d668b596f3e45c1be1d9a6596b2b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c2e71c9e770056088a5600bfe0a59f22ecb36cb84f068efabba7574dbea9a00
MD5 3211a11c0a2829f29d0852834fafdbd4
BLAKE2b-256 689b24b648ef707f5b1bb24e362501beba1715c917c6176110523807807ab302

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f09d2e1297924a7378acec3b3d7e1461ef44c9840a7baa78f6e85b387f9f37f
MD5 1a4cb7d9f3b5c8ac863c387f9669c806
BLAKE2b-256 b8eb02947f4a1397c24fa8d5bfe5199ae5eb0ab3a595944af682a91fa0305fb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8a2c6e8fe40ee4d8110459d03227605134962adcac0a174418a32902398e56f0
MD5 7451ba8ad8cfbdb5d7c15abee3cbb2a0
BLAKE2b-256 e366f530adef9641eb9a15889ec05d4ae1f00670d0555909a142107881a1c0ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pylmcf-0.9.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 158.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 15b0b8fd6795eb2fdbdff0d685962f3edf570483666b9be24c83d4b4b6ccc3b5
MD5 6f0c989db62c2b3e6aa130c22824ba21
BLAKE2b-256 49e7b141d3117632149e254ed36ad45c88eef8f0c23c0f42d7efc3fa0d3ad7db

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp313-cp313-win_arm64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 172.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 12b7fdeec95b56971811494d4b75c474f436a596ca67063f7379890cd9e60d92
MD5 82343bb6b33a2390fbf7f39906e5ad9b
BLAKE2b-256 013a88d8f72175a8785aa771e49744f66dd9d4ce180ecef8d6e734856ef77155

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 166.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1733ed4f3fa5c392975270d30af2652505948e9da0dd93301d3c6ced176b66ca
MD5 e74fbe1491debb07ca9a0ebffa91f0f5
BLAKE2b-256 cd78c24dc7e202f32a0e5a790aaea2c1b6b1a5031ab2da463e637a9702a46880

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp313-cp313-win32.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38a20c981b0a7387418c6655be90ae8b15045dc3c6a7ec6f38ec15d45e762a47
MD5 499f8733399a3869ae6723b534681f3b
BLAKE2b-256 d06cd121b579deed758cdd64da4657d38cd478bf3b5742f3de8c0f7047e08515

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a87f8ecb709cd9e1ed54a6d262eb992e1d96fa509c1effa4169a5953dd839ea1
MD5 62318ab9135b6a2adad234725c0d600e
BLAKE2b-256 3410dcf52e5b16eb948518a9639e04a2bdbb44d754a785a3eb1fd2bde7c43b7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e31a18e933d37ad04d4bff19ef9112fc464bbba56ad9e4e8503b86ab9f112dd
MD5 d2ba840b50af0173d26abd14795d458f
BLAKE2b-256 aaa6873f4c61a24375a0a21222f5e6ea1e9af78852b34d9bb30ef1ddaa4a394f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e8c6ea71a94cb11b5fbb43574ec4f1fd11d7d08f7897c2a7c75683d61eee409
MD5 3589b2c936cc4971ac72ede12a018e42
BLAKE2b-256 92a64eb2ce7ea6334083e15b7f01180614e6f52acc555b159b9d220677d06d64

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a30907c845ea3841e40226b1a5af84adf9f5c0300c918737a31a11af2b2ae365
MD5 b3377e4dd41327899511dd6db82ffa75
BLAKE2b-256 a8f7846821fe4f18c2a7728a41899ed4f77f150ceebc85df8ca81cdeb7668845

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a2a3c87cd65185413bce5a6b9ff9ba76df4180d0351ae5100005123076a907e5
MD5 b43ec01cc739adfc51dee53aa1216334
BLAKE2b-256 9d9a946f604fcd75fe329292b1464206625763bce2b52d7ea5fda335d2f33d9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pylmcf-0.9.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 159.0 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 97ee46cca24fdc5f27cfefa2469e9576c12151fd0263a8336e99e7bfb396056a
MD5 68cf5b81d731c6c488297bc27e8464a7
BLAKE2b-256 daa9d6da7e8fc9a60e3c83067c4382826bed87c0adffa40e39a95bf5a0646034

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp312-cp312-win_arm64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 172.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6b0bb547319fe009dfa4b3be4e7282af338c0144aa9fa0a8c009a7aeb4d4237c
MD5 8a78df3347c992799eb8d3d219ed8dbd
BLAKE2b-256 006c9341cc1ab648ad7da8c70dd0d3cde8ec88e2dd52bdfcee27784fe7db2d3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 166.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9f6708c5982deec6cc5e89113da142412df1a351db0ea03493081638f32d3ecd
MD5 3a205488dc70cbebfa6579a00c642474
BLAKE2b-256 dfe4d1a2b0bc3edda75dbc614cdc59dedfaebb0d8e6e3d9cbe725deb6d3c04e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp312-cp312-win32.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1cbed89193d121e040327d08d28e0f92c394c7a0326c4447b59bdb985a895663
MD5 0dccff1475343ed4fd9a81a0a551c9f3
BLAKE2b-256 303ac05f6962c49cc538b74dd04f4775d8f78c195c9271d4db01bb2a066e521c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc107140c0b6e2fb7e69354f92fab0dc9a7ade2d6219f4ab491e71cc0fc1ff0f
MD5 5f5e18c1e94b908e24eef294ff747b1f
BLAKE2b-256 124d5da42cdea75d7079ae21bc859fc1f43504ad45ad103b3d8017b1123f457e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f935765feb628948bbb415183bea48f1eb30ea1adc322dd0388f86e21e7b6dfc
MD5 0830ad83bddfcd7126b59eba97a97552
BLAKE2b-256 a526763ca0f57dd6240ec50027d4a86f0d3f34ec57a419ef7d82d898fa21e6e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00f93935eaad1d18e33991d4c07036bd83cefe6128a8b052bcf0c8f0d5baa04e
MD5 490a50156188dd1def45670fe4cc1e5d
BLAKE2b-256 5b7268f4c55c0bfb93df441ad9058ef362444f02cb14ccb85975c30c851d4ed6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8796e0c8b7f38dfe874c8873b2fb41b8ee3271ef323bd36b816add8be8f239dd
MD5 d73d70549bd1325e02c5357422bf09e5
BLAKE2b-256 51a26d2d903687159a610a4c6f5534649cb3af9ee2e4423ba39fd06c62c8a6a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 238010afd286b117831fdaa34b0214eba72075e44d8e4b447c5a3b28e9ffb9d6
MD5 5d4adf0331089d01afd6dca6660d05fd
BLAKE2b-256 2cb2e5f21b709086d78419d50ccd7bed9c78dff3c73e9b794dcc9b9d89091495

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pylmcf-0.9.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 159.8 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d256b522ecf6b7e9f26b3ac2142f1f8b348daa65c60f73c6c6975fb1123f8782
MD5 c1b06a20b24fefae482925e6498f328a
BLAKE2b-256 262fd9899a8d82279e13fe9b75b5f48bce39a3a924147f2da124349640caec0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp311-cp311-win_arm64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 172.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 afd5da6f180fafe001f054ee3e8ec89a4a523aa427114a0135dcaa41f61783a8
MD5 55ef91f639c34f1e2fe70953c4001d97
BLAKE2b-256 8817eab9e35c59b7295bb08e81763fc4d910533155d2cd058eabdda23d7d9bc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 167.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 210d57469946e91a3fb02427d28079c75987a1283df965cbd2372f82fcf610a6
MD5 05e04881555bf28766ca5c3c974ee7e1
BLAKE2b-256 525bd93a57512cb3ee53526f624cc8c014c913fb0e28ba97f45b0f2a1eb9dc01

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp311-cp311-win32.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16750ecd02242aa841848a6279971cff9cc9e3a7411f7744fcb7191cc4f85fdf
MD5 c5b77edd0ebb13b5146b518d5e97ce75
BLAKE2b-256 a4b57bfc3f6252ed617855d50e6f6a29be6091b1f6cb6bce0fafb9034fe00ea2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c33a9a85d631d30b5967bc9ff6b84e5d02cde589b219e3fb8e927f517a343ab
MD5 907469e2efdec8bb4de8446ca8269f8f
BLAKE2b-256 04c0b75ed03fdb73fd06f4391815ef78755a2ee46d715c84232d71ea59754562

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5f7a70ad516909ac94dd94d6225718e8450f4ab8ce5c745f72f3ff608bdb4665
MD5 cec2cac59deae4972ac88c6cc1740031
BLAKE2b-256 112a1214d392fae3b50e647ae29266859ff08d7a9ed3beabda389589727703d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b22ff67a19ded8efa014f6d78beb388a67c026c035215d0719409be5173fff88
MD5 2ecedd4c29df2f2d1061f738a602aceb
BLAKE2b-256 3427165cb22b751683ce1d5986c805b6cf571422f8db69833af4ba44b76e669e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 591b7d0ce66d7703307b8212220c3c728bbe95c612372066271b8b33baf87462
MD5 2b0028fc2561f1d60f49aebf47841563
BLAKE2b-256 ca5a8a11ef0827a2c9f7602a481a7743d06e111c67c860bac845fbf1e03674b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0503c2927708b55b2ed1b2238acd1ccd24d151aab82d1bce94afdf1b6ac6039b
MD5 3948168b2d836ee0d95b6d254fb4fde4
BLAKE2b-256 228950f0ad6f866b5688cb9189982c33e63e9f62f61afe5d052856526cee40b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp311-cp311-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 173.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2b47d9ef697d8d994eeb718bf4fe8dacd5e9ada2859a49f7486845ae6f6d42ed
MD5 92e63fc58ca358eaae2dc6bc284695d5
BLAKE2b-256 fc34f1209c2110fbc4ff33c0ebf35ee837825f095511314c783559462e41a4c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 167.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 12a8e513a028f2196e91e826ae345babfa14fa2d1c330def662ac4204a7de484
MD5 2093d605e9b09dea2e34f73e58be8269
BLAKE2b-256 089312c92c6ed52d4f36b2d3f095dde3d1fe1d8a5b69dd2071a2abfeea53064f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp310-cp310-win32.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fef11eb69d5f5ed4c16a9fad59143c9a94a7edce664363b5bfc77624f1e88f03
MD5 9886f2370075fad50d80e51b3f387895
BLAKE2b-256 687a16372a4be4f0372c8213a5aff13b97dc8be47f044d5a5fce3209327d2f7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e85cc53792529a5917521bf96e40aacf2cd552c60d4e1bb20fb0a7e2186714ac
MD5 1c19ccab0ef3fcfa1d74f632289d4035
BLAKE2b-256 4f068f8190abf33c8eb552351f2f0cd9d33baeacbdbff4200b049fa3259111b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 883ec34eea9967dc9694fa51e325df8b11285466265851ab9af96ad8aaeb71f5
MD5 ab877ac86e095a47aac80817cb3afb1e
BLAKE2b-256 abbc830d5b1da16ca9e0f06c23da8bf6ca7bc7aae38a2c5cdcbc70da84afadb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e1a568a2e9c47c2880cd8affd3076f0f9f7f4d1d77f967848fde8f4bf0a9b2c
MD5 b40d91a273544275a7f4a5dac9237613
BLAKE2b-256 29c46e46337f649646dae75fae121aabbdd39c7a1d4b25a27fbe06d380e5eeb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88ca9e1a4ea1b00dbed30dac1e248543709356629958e74176eb1ad287749d65
MD5 c2f0a68d00915a8bbb85f6932de3665b
BLAKE2b-256 db709a8a903b8253192dcfc0fb906e920e0f5bbaf9e06f98b5ef682adb091286

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fb223e05837102a5aa39fe60ee04e9d6ff83fc3e97946d028a1970555036f267
MD5 8bb5c8e15e38eea970d78b3e5b67e95c
BLAKE2b-256 bf696a7ad45bb068f0f35cb90ab4d19ea4434e4a54d02199fe7e897c040ff7c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp310-cp310-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 173.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6c3d9b6a694cf64c96b6b034d77312ceaef66a7c711be1bde1da6ca75395ce9e
MD5 0276c8ae6a0124b4edbedc7f30ff3a85
BLAKE2b-256 3fa5707fa351e462a416618ed9c60b3eb2697eba5b9be6bb1c3834f963803e9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 167.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3442dd7376d4610a39b8e57b1765017c85fdfdecf9547807874a2b87adc99378
MD5 1108739d343b8e4c8c248f7557720371
BLAKE2b-256 6fc4a14419ebfc540d5c2049a600e70cfc604b03e22c16ba90415e4d663a6642

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp39-cp39-win32.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8667fe09f37c9e615ee651a1e66e90fed96032e21b01af807a2d42d035854ad3
MD5 5a52de6afb33ad6db5ccc2a547837098
BLAKE2b-256 372118f8e21d875d58765952d7beb2aaf49a286439bbe40b189760f9c3f787ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a7ccef0c0f22bbb37631b81502683da44893ffe18d5285d696164fdc382b5d1
MD5 cd2ed3c5b8956623be40f195e86ecb91
BLAKE2b-256 326cc9513fb572934f66ff952ece0debfeeeca34e09d8661594430e4867b5f2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a5139cb856f1858218d4f377e0c2a3d1cb74207c0f23471d9f9ce83b72b331b
MD5 4455eb58b6e9e8de37a95792d0df2d31
BLAKE2b-256 0ac7d77910777f98ccabd03247bd550c4a5e8826f56e977aa25aa17074732895

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c43ae4b5c0b4846a753d8430223fd607f4a79f2c56119a027c83cc06185ff245
MD5 7161ce232443c4e78e27add782d4667b
BLAKE2b-256 c16c94b21aac82190f611de614a7f2cec9a751f0949f650cb262e3edd39aec65

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53865b4ca657f5f5506d5ea4e8f5c52b929c96d59e45c5855c4e0eda12cece47
MD5 dd011b1bebd26ba45b1648fc456b54b8
BLAKE2b-256 ef970dd87f2abce3f421c7c03b12ba77c1f0f8e805cb14b72ff28be449811a1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 845ae0b7f4d7f0111c122de6c4e1b5ce7f764c68d819081ba3e86c2eb61ab5bb
MD5 ddf6621d2c3e94ed736e51df8c20a9ce
BLAKE2b-256 e2e51c66a9c1a0aed8aba28e680edd735610b0defbbe9c458d10d06f60224ef3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp39-cp39-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 172.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 00392b471960a9fc3bf6f9eace8c9d26216fdaa8e102b795282431302d813ee7
MD5 2c6c901fbab3062f5ac18ffb61125cd0
BLAKE2b-256 83779acaa5bcbdbacdff4bbd84e376b6177d2187391a2d2f69bf97f78e0aecca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp38-cp38-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 166.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f8216833c8edb348d16a5bb8724cb5f2c0a452995f64f8bf948f02da24dfdd01
MD5 7382101e561d5f27051b968ca39cc54d
BLAKE2b-256 ebe1124bf9500b6d0eb010f5cac908e55c6efc8df05af3a886b0aa3fe1804818

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp38-cp38-win32.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb51ec417d61e04b566cd57f8890c672873cc92383acbb30cf10c814c2027ab8
MD5 e6db3efcd8f619d9b50f0963083d6958
BLAKE2b-256 e9a9f3e5ffb2cb01cd97baec8a30d492bd53354b9c46010829390da70300a398

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69c44fe2facd7aec65b253aa85a7df238fca28e13f8cb67382298461d4ab578e
MD5 e563831fa7daf9774d338cc4c3e4f46d
BLAKE2b-256 3608b407a50e38344757146de029df342d75b37eaa0b60f95b884975e456683d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a429852339e3b6801968deb839ce013ac297ce19f0fe2b14215282e05cd77dba
MD5 20e874fa60e507224084f7f16c6635db
BLAKE2b-256 defb03f83ac45660f3373517f93ea360d2339c4b7f586f19481c1118a95fe1e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19c4c04c25f3ba8ca9b6337037089e16ba9a804632eab290079cebfa5b42dca5
MD5 70bc8ad5e75fa46eb7ff69d9e054061f
BLAKE2b-256 cc84291e5aada6f0e94bee95a7ec2215c3957cc4c282f66e81a20dc71b09fc8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93e0d293c01b2554856179018e80c09483e3616ef97fcd4b632891d2ca186a8c
MD5 41b4a780b52bfc71e43a63da939b4a33
BLAKE2b-256 5efcfaa08485eeae721d8c00e9cd4f740ce6e99596a24011bc265d200ea30a4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.3-cp38-cp38-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.3-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 06eff7861cab94dc7cd4cd9a2ac1cb36f8fb0b10bc10a7da3148a416ab353074
MD5 ff326b027be457b19cc7bbe65d9b9abf
BLAKE2b-256 0639f022202160aafb7d24beb86240b0e558f3ca25da66f4fd766025b6f10f27

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.3-cp38-cp38-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on michalsta/pylmcf

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

Supported by

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