Skip to main content

Python bindings for Network Simplex algorithm from LEMON library

Project description

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

Overview

pylmcf provides Python bindings for the min-cost flow solvers 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 Wasserstein 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 (LEMON's Network Simplex by default)
  • Multiple solver variants: Network Simplex, Cycle Canceling, Cost Scaling, Capacity Scaling
  • Supports capacities, costs, supplies/demands, and per-edge lower bounds (minimum flow)
  • NetworkX integration: construct from nx.DiGraph or convert results back for visualization
  • C++ headers exposed for downstream packages that want to call the solver directly

Installation

pip install pylmcf

Optional extras for NetworkX support and visualization:

pip install pylmcf[extras]

Usage

Basic usage

import numpy as np
import pylmcf

# 3-node graph with edges 0→1, 0→2, 1→2
# Edges must be sorted by (start, end)
G = pylmcf.Graph(3,
    edge_starts=np.array([0, 0, 1]),
    edge_ends=np.array([1, 2, 2]))

G.set_node_supply(np.array([5, 0, -5]))   # node 0 supplies 5, node 2 demands 5
G.set_edge_costs(np.array([1, 3, 5]))
G.set_edge_capacities(np.array([3, 3, 5]))

G.solve()

G.result()      # np.array([2, 3, 2])  — flow on each edge
G.total_cost()  # 21

Per-edge lower bounds (minimum flow)

G.set_edge_minimums(np.array([3, 0, 0]))  # edge 0→1 must carry at least 3 units
G.solve()
G.result()      # np.array([3, 2, 3])
G.total_cost()  # 24

Constructing from a NetworkX graph

Note: Graph.FromNX() iterates over graph elements in Python and is significantly slower than constructing Graph directly from numpy arrays. Prefer the direct API for performance-sensitive code.

import networkx as nx

G_nx = nx.DiGraph()
G_nx.add_edge(0, 1, weight=1, capacity=3)
G_nx.add_edge(0, 2, weight=3, capacity=3)
G_nx.add_edge(1, 2, weight=5, capacity=5)
G_nx.nodes[0]["demand"] = -5
G_nx.nodes[2]["demand"] = 5

G = pylmcf.Graph.FromNX(G_nx)
G.solve()
G.result()      # np.array([2, 3, 2])

Alternative solvers

The default solver is LEMON's Network Simplex. Three alternatives are available via the low-level functional API:

from pylmcf import pylmcf_cpp
import numpy as np

a = lambda x: np.array(x, dtype=np.int64)
supply = a([5, 0, -5])
starts = a([0, 0, 1])
ends   = a([1, 2, 2])
caps   = a([3, 3, 5])
costs  = a([1, 3, 5])

flows = pylmcf_cpp.lmcf(supply, starts, ends, caps, costs)               # Network Simplex (default)
flows = pylmcf_cpp.lmcf_cycle_canceling(supply, starts, ends, caps, costs)
flows = pylmcf_cpp.lmcf_cost_scaling(supply, starts, ends, caps, costs)   # int32/int64 only
flows = pylmcf_cpp.lmcf_capacity_scaling(supply, starts, ends, caps, costs)  # int32/int64 only

Visualization

G.show()               # display with matplotlib
G.show("graph.png")    # save to file

C++ include path

If you want to call the LEMON solver from your own C++ extension:

python -m pylmcf --include

Requirements

  • Python 3.9+

Licence

pylmcf is published under the Boost Software Licence. LEMON (which resides in src/pylmcf/cpp/lemon) is also covered by the Boost Software 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.13.tar.gz (237.2 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.13-pp311-pypy311_pp73-win_amd64.whl (451.1 kB view details)

Uploaded PyPyWindows x86-64

pylmcf-0.9.13-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (549.4 kB view details)

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

pylmcf-0.9.13-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (523.8 kB view details)

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

pylmcf-0.9.13-pp311-pypy311_pp73-macosx_11_0_arm64.whl (492.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pylmcf-0.9.13-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (527.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pylmcf-0.9.13-cp314-cp314t-win_arm64.whl (440.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

pylmcf-0.9.13-cp314-cp314t-win_amd64.whl (460.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

pylmcf-0.9.13-cp314-cp314t-win32.whl (448.3 kB view details)

Uploaded CPython 3.14tWindows x86

pylmcf-0.9.13-cp314-cp314t-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pylmcf-0.9.13-cp314-cp314t-musllinux_1_2_aarch64.whl (961.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pylmcf-0.9.13-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (554.0 kB view details)

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

pylmcf-0.9.13-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (527.4 kB view details)

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

pylmcf-0.9.13-cp314-cp314t-macosx_11_0_arm64.whl (497.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pylmcf-0.9.13-cp314-cp314t-macosx_10_15_x86_64.whl (532.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pylmcf-0.9.13-cp314-cp314-win_arm64.whl (437.6 kB view details)

Uploaded CPython 3.14Windows ARM64

pylmcf-0.9.13-cp314-cp314-win_amd64.whl (457.0 kB view details)

Uploaded CPython 3.14Windows x86-64

pylmcf-0.9.13-cp314-cp314-win32.whl (444.9 kB view details)

Uploaded CPython 3.14Windows x86

pylmcf-0.9.13-cp314-cp314-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pylmcf-0.9.13-cp314-cp314-musllinux_1_2_aarch64.whl (959.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pylmcf-0.9.13-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (551.4 kB view details)

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

pylmcf-0.9.13-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (525.6 kB view details)

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

pylmcf-0.9.13-cp314-cp314-macosx_11_0_arm64.whl (494.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pylmcf-0.9.13-cp314-cp314-macosx_10_15_x86_64.whl (530.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pylmcf-0.9.13-cp313-cp313-win_arm64.whl (432.4 kB view details)

Uploaded CPython 3.13Windows ARM64

pylmcf-0.9.13-cp313-cp313-win_amd64.whl (452.7 kB view details)

Uploaded CPython 3.13Windows x86-64

pylmcf-0.9.13-cp313-cp313-win32.whl (441.9 kB view details)

Uploaded CPython 3.13Windows x86

pylmcf-0.9.13-cp313-cp313-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pylmcf-0.9.13-cp313-cp313-musllinux_1_2_aarch64.whl (958.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pylmcf-0.9.13-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (551.4 kB view details)

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

pylmcf-0.9.13-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (525.2 kB view details)

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

pylmcf-0.9.13-cp313-cp313-macosx_11_0_arm64.whl (494.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylmcf-0.9.13-cp313-cp313-macosx_10_13_x86_64.whl (530.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pylmcf-0.9.13-cp312-cp312-win_arm64.whl (432.4 kB view details)

Uploaded CPython 3.12Windows ARM64

pylmcf-0.9.13-cp312-cp312-win_amd64.whl (452.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pylmcf-0.9.13-cp312-cp312-win32.whl (442.0 kB view details)

Uploaded CPython 3.12Windows x86

pylmcf-0.9.13-cp312-cp312-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pylmcf-0.9.13-cp312-cp312-musllinux_1_2_aarch64.whl (958.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pylmcf-0.9.13-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (551.5 kB view details)

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

pylmcf-0.9.13-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (525.5 kB view details)

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

pylmcf-0.9.13-cp312-cp312-macosx_11_0_arm64.whl (494.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pylmcf-0.9.13-cp312-cp312-macosx_10_13_x86_64.whl (530.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pylmcf-0.9.13-cp311-cp311-win_arm64.whl (433.5 kB view details)

Uploaded CPython 3.11Windows ARM64

pylmcf-0.9.13-cp311-cp311-win_amd64.whl (453.5 kB view details)

Uploaded CPython 3.11Windows x86-64

pylmcf-0.9.13-cp311-cp311-win32.whl (442.7 kB view details)

Uploaded CPython 3.11Windows x86

pylmcf-0.9.13-cp311-cp311-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pylmcf-0.9.13-cp311-cp311-musllinux_1_2_aarch64.whl (960.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pylmcf-0.9.13-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (552.7 kB view details)

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

pylmcf-0.9.13-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (526.6 kB view details)

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

pylmcf-0.9.13-cp311-cp311-macosx_11_0_arm64.whl (495.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pylmcf-0.9.13-cp311-cp311-macosx_10_13_x86_64.whl (531.2 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

pylmcf-0.9.13-cp310-cp310-win_amd64.whl (453.7 kB view details)

Uploaded CPython 3.10Windows x86-64

pylmcf-0.9.13-cp310-cp310-win32.whl (442.9 kB view details)

Uploaded CPython 3.10Windows x86

pylmcf-0.9.13-cp310-cp310-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pylmcf-0.9.13-cp310-cp310-musllinux_1_2_aarch64.whl (960.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pylmcf-0.9.13-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (552.9 kB view details)

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

pylmcf-0.9.13-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (526.7 kB view details)

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

pylmcf-0.9.13-cp310-cp310-macosx_11_0_arm64.whl (496.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pylmcf-0.9.13-cp310-cp310-macosx_10_13_x86_64.whl (531.5 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

pylmcf-0.9.13-cp39-cp39-win_amd64.whl (454.0 kB view details)

Uploaded CPython 3.9Windows x86-64

pylmcf-0.9.13-cp39-cp39-win32.whl (443.4 kB view details)

Uploaded CPython 3.9Windows x86

pylmcf-0.9.13-cp39-cp39-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pylmcf-0.9.13-cp39-cp39-musllinux_1_2_aarch64.whl (960.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pylmcf-0.9.13-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (553.1 kB view details)

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

pylmcf-0.9.13-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (526.9 kB view details)

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

pylmcf-0.9.13-cp39-cp39-macosx_11_0_arm64.whl (496.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pylmcf-0.9.13-cp39-cp39-macosx_10_13_x86_64.whl (531.6 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.13.tar.gz
Algorithm Hash digest
SHA256 f3bd9950a7fe1678236f6723048fcde7bc102486fe8ab68e8f6d055006f3cca3
MD5 2e6c82256b26c8f4d0aa0ea60f8b09fe
BLAKE2b-256 d114a28314eb79c1798473d6d897fba30b6889cc2eaf563335e1cf674d8218e6

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5891a70f4c90e71a5c748457e5858e0143f56d72a8bf482a0a4d481f555e27d3
MD5 b930c178c8dc0dfe3990427688264ab5
BLAKE2b-256 de75d074de9725d661c8e2d7af367bb75b318b7ab69d75beb4926e2e0a769851

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8870d4a9cfd5cb85aeb18abb9be281d869edf9cacacf5306e32748aabbe515d0
MD5 2bcac0d93516f7465e73b5be19c93280
BLAKE2b-256 fe9b090550b2db01d84e1330800ec8865e7fd26f7a47a99ae428bcdec2c181b3

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f7622fcbf118614e3eef8f37538c4696852a783e126a9f82345af26ace7443b
MD5 b4f8d5514011fdba4835642bb3c4e033
BLAKE2b-256 4967cecdcffb8a248790072712782bdf972761a4abb0b4b7f435d0ab7b7702fa

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb989a3af1028902a4c6d55cbd59b9988275996635faba08681856912bf200f0
MD5 932ef5d33ecd06feace45d27d771fcb9
BLAKE2b-256 d2547303c82d13687c9ba52ddcd45dd345d9ebb6e47185dd2df395f4812561cc

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 445232a3b4d0b61f38caf49fd8d0843971a9de615f729292315d40eb98080a55
MD5 86cc1b71342c2a945377c851bd4e4158
BLAKE2b-256 f57c4dc8fb7e96bafe6bdd1ea7ed4111bea3771a215a3e20574c9302553b6536

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp314-cp314t-win_arm64.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 5fc364f035d8e19410c253318269d1ac0e8196caca99af7c8fda0d3a68e198a4
MD5 d87ebf66ad56441034418484f20db049
BLAKE2b-256 98d5c2613a44ee6bcc44f864685aeaac7a7360ae82aa49a24c10e52c3af2fb8f

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.13-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 460.9 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 926a51e41d2cff602c5c0cdc9bb2296a27ece11b31f3652b54938b9e4c6bb711
MD5 84edc121a5d1966b225687ec46c33d77
BLAKE2b-256 250239254e5a030a1aa75e1dfc906efd190b313fb17ee5e1b123cc8e7246e5b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.13-cp314-cp314t-win_amd64.whl:

Publisher: publish.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.13-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.13-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 448.3 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 96c837ee7a6d63ba620ff48c0cf381522d5943ec0edd9f23b896bff1b0151c80
MD5 1a0bb9602e527c861f70613d749ca6b4
BLAKE2b-256 cb4466ffb150f42f4b41d58b95b299502a4c50b4ea4f5fd108d6ec955d73601b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.13-cp314-cp314t-win32.whl:

Publisher: publish.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.13-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc02e40d28dde7111519b4cde12bd6a12e2cdf59bc9c5636f9578ce7da5b1b35
MD5 d98886b16dbf0d0f86d6b3486c9831bb
BLAKE2b-256 81ba70be53faf7374e16998ad0b1db97cf6c5280f0571a8d5f6eed9829b42b87

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f06a6db386b2af0e1755afcebc993d642e168b40c2dfc303f0ca7f599cfa4367
MD5 dd2e1056949a639852d957351bb0bf92
BLAKE2b-256 de249c51adc2de7b722e56b4d4df0e8ddb5398f20157017352a1624d3b124c26

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a006cd50dff239772c56ed7e7b31571dfd527b358b03a31369098b2ef9932eb0
MD5 c3bfc3801ab95e452724ffd4ab631a2e
BLAKE2b-256 b08f74c6fd6ee0e6a122f260793242c66a0fd85840f633857f508031c1a479c4

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88e164af82523f58b43f37fa6abcf34f7562189e004a5e1f3cfca50889996542
MD5 3e4a9e860283b7e07239e6e7ee15f6cb
BLAKE2b-256 6ccc324e1006e9c6a51ae4e08b27ed957739a23a475ea0b41bea0a112330845d

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3354b53b4e22a8b2fe87bde3d82f9a127eb5af3a5b504a974fee0cf3187fa531
MD5 e6ef0565ca9f049237972ab259155ed2
BLAKE2b-256 a85454bb0eb07cdfd8d3bfeff3432546f91f2bd658d6567fe0efd1bcc631cab6

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5ca3a2af385b0d91f93c957c8a4c323b4bcc516147de2372157e21d62e2fc7e6
MD5 e9587f4678f715a5b5875963e08f6764
BLAKE2b-256 0e74ce0dad32841f80ec4a96afc3470a704a0988d4e0962a5dfd8e28123a0730

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 dc2f01a9300b4d6cdc61f4cc9657e9fd22f8479030e2beff7daeb0faf2a9752c
MD5 2b405a104f5153e1022f317bc138b72a
BLAKE2b-256 96878b629d213e712eb949827e25d6322e07acd4d87d825cd32c408708e41c34

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.13-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 457.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a65bbfc156dfd10f54f52c3a2199c699b2917aa451f0e53bf2f11b183fc0cdfa
MD5 077c67abc3225bd8a2c341b65cf438bd
BLAKE2b-256 d1ffa6fb37922e054e5808e5cd4d10225244db84ebbfbfb717a7a4fe5ca56e3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.13-cp314-cp314-win_amd64.whl:

Publisher: publish.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.13-cp314-cp314-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.13-cp314-cp314-win32.whl
  • Upload date:
  • Size: 444.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1da0f9698ac7747e0b6b6eecb8cb83b56a57f65306809aabfb96fb054f332e84
MD5 41dbdf676903915cd6f62b05edd0b4f2
BLAKE2b-256 6f1d14c09c38d6c01d80c7ac04ee4fed552890645265e7d24c41344f1460e1bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.13-cp314-cp314-win32.whl:

Publisher: publish.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.13-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e740b8f2d06e472a7f4732311798c91005aa1d76323e7bbe6482c430e2e10b33
MD5 fb3638a353381f64fac014e3d84e0a77
BLAKE2b-256 692966d4bd86bed593be9a2b9422c2a435ed2d40522ab4e4c6fff0380e87bd18

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23c339367ebdc6c96a4fcc9d827845a9d0ed28fc3d593ae6248c6f03315207b2
MD5 69b7ea56b495ead326e4cb73b8cf7671
BLAKE2b-256 6812634e6b3c3d80675dd2278012afc5aeba22c4ecd67bddbe086744a26b7599

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c04d44b81ddf1b0277f9c4a78b2bd7c2b8a025a2b630e748545277c598ca3e7
MD5 f8327f366652eeddc14dacfeba465650
BLAKE2b-256 1a9656f5037904e04ac46b7abcfdfb392c4a339a3e45b822c40da5f59eff252e

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 223b83933eb7fe7b16fd468c425e1ba07f2398af0c5ef4e0414560a911a52517
MD5 83d25b95ed0af1563d11349a315bc1ff
BLAKE2b-256 e89f33fe30f1cb8249c80cffb84bb9faf6689361698d763cc501597e23c9ae1a

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05a392ef9ca983991177c2cf130953b483ee1dc8b79b7e624eb5b746179b0bfd
MD5 6180d305f188897b9dfd15f1f86dca05
BLAKE2b-256 cff2a3c7baf0a3707054d2951756ffcd969160ef3795d5e6cd381b83bf49f552

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3aaa6f6991be992d25841faa1aad4f4bb501e1c8c929697cea73cee1a4abfe33
MD5 13feede65fded8192d90838f151ec4d3
BLAKE2b-256 59b2525c4a313d2c494025b87bac051f945e1a85774de60a2350e86c7f85132f

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.13-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b55e06bfbe19aee98e95a8bcf568f101bdfbfa7725ebcc49603fbe5e0ecd8eba
MD5 de69029c4c3bb5a966f2ee8aa0c13832
BLAKE2b-256 a9ed8746f5b702497ef28e9b0dffeb98b47ff35fdd0fc97fb94e5d5641e2f210

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fdc7560f404372524675d2e30964f54a82b0540e9fd8da6fd4ac2a35c2216d98
MD5 8aef5105177524e3498dba4de73fdedc
BLAKE2b-256 c30571be3a774251a58a46158792e9e4d9b01fb84f48f653a3128538ebba6c0d

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.13-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 19c2e8281b00af66fb0d0947c4604146de3c9a1e179c06c30cf0df9198414b22
MD5 bf04335903926b8a185187b6a1a9535d
BLAKE2b-256 7e7f8f7621366ef603a2027168f124aa110de0023f0ecd5ec73f9f9728cc5391

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 618a25b0f2a530bfef68d2e6277df369d1da00839b29d0dcc74d9f706c9c463b
MD5 4478438fba85876957878a3fbdeeacd3
BLAKE2b-256 53a3ebf0ed03976481765af441f6c00188c8776594b9c6683da092b0abcddecb

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af2a580d990ddb7e7a32c85a84f6296a0c9510cf9a8f98e5b3da59dc4b77e2d0
MD5 b6d1bafeb1022284bda021af727555ec
BLAKE2b-256 0c70543d1f55025278e96912c937b2de0693609b59d9c2c932d9f0199f0dab87

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b64aa568eb6b62f4ed4ef325669719f61fe3434130c2c0420ceca0323349153
MD5 4757ac7616cdaeb49d40bea80cb27640
BLAKE2b-256 f91af20d52bf8e62a168ec627b1bd9d3a1ccc04808ea9c3bbb83ea0783a7e74a

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 70de8fd4c413b765c1403ba3dd43f780cdbdf9bf71a047841ea7b081e92b3d28
MD5 5e1f8f0ed6f414a97b19ab61b7d78e10
BLAKE2b-256 6bfd492b25b3cd00987be4824f534ddb1bf7526a5b63611aca1c04ff7400742c

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 774cb51dbacd93ed650d89c5b7d18ad977f41a2ebbe989542b428548ccae6701
MD5 acede59f2814756082dcf2aa68f7f847
BLAKE2b-256 c549235300caac7ff5731ca8c8308c15ad753fbd61a7997ec868bb3d7ff6d356

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 98b1531bf5a717bf80498b5d1053e27a9f474dffb66ef3c5a35a7c49fd621bdb
MD5 00944ca36c763c524ee330f4fdf75da5
BLAKE2b-256 b7d1c9ad11abf5f7cfabeee278b38ae7e76d54fa0feca2b3435fd0ffb7250aaf

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.13-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 91796803a0a1bd2e093575cff53724ef91b3afad6b0b768f839ba49471338cc7
MD5 72a184ef1939865f97b16534078b91ae
BLAKE2b-256 2688289526cae67a0b59f42b020ecc002fbf2a74bdc309c4e2cd5cc3941b1d99

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ad5a55095debb482c0a46f09dfed0e3f9432775a53e4b7c0335f4030fbb8447a
MD5 0b11d55606c4dcc3d5d5c8debc828c73
BLAKE2b-256 112639de7f468f3bb57569c3b8bfdcaea95d52aaff7d8ba7d6c467f7f0c6585a

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.13-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c27c21fd586cf2bff64c22aaae5719e7e49eabf6fdc0829f37538931d6214273
MD5 c7298d2a633408b041c598b3b4188318
BLAKE2b-256 b6b8c3f15c079657b567e41ebc8be38200d141077c957522b2fd31332fadbec1

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8edd15c22f29a5e0de9795eeed08338469ec5b6189f40b399516cc0b152a9377
MD5 cee85adc1373de671ca0a90ee48c921f
BLAKE2b-256 24b9684885bb55c46b9fd4ac62637df2cfea1f0d1243ad937745a8d85a53500d

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40bea3b52a7351f1322085728fd2b9239a25be736bd653c71e972de578e3e8a8
MD5 86b96fc334ad8d551b3e6f00c4dd2d55
BLAKE2b-256 18f6bb78cc44870c182c73d85f1b9fcfa3147f7cba24ec8e1b7226b373b64d5c

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 601a2fa37e7b3356597faaf81cf7f1f87f3fd6f5c9e43d0bc9d91257ddf7587a
MD5 0d0e4a74777f321cc3e68992c6b10260
BLAKE2b-256 9ca744639450c3d59b2a52fa925f8834ef83c74fef1f326a9a07394d610735b9

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c17d89c3f2bf5d4ce290e2e676f78c17725fc9bdaec17db3911f860e4463abf5
MD5 47492d0686fb3ae77feb3bca9a7325a6
BLAKE2b-256 8d8352be54498f43a7de7c3b5fce1ea47891eb3fc87397820adc1f8686d50fda

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab59c1fb1acd6363d190b8ba7e160b837c33015327170a9fdce42ed4c9c1c4e7
MD5 19b3852b7207edc7e04207488779f297
BLAKE2b-256 7db0715f36f2aa9f5db41e8c5a02928edabcfd3706c606fc687f04126c8d2d30

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f8dd0910bc35b65dd0abffe259055e8a4a56c559ee70e1bb8098fc6c9f6b5d62
MD5 5176cd96598ce1a3aec35a43ce5d428c
BLAKE2b-256 e423e14d6ebdfd49a446e056f55cf86bc7abdce1f9797c8ec061ea81c1cffb92

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.13-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d9df4bfae0c0e1cb9dcd52bc6054ce3abbca2c818f8ec145d2c8601b924545dc
MD5 897e98f338188c3eef1fbef9d144a7bc
BLAKE2b-256 395e30dc678f3dc2f8454b433a298fe8f7ebd5304d51b026136b25f4a68321f4

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3a470e8a81b488a943efc2fb60702a49e4c396ea1b8ccf6f26a1b1e7daa2a256
MD5 6cb6d29058b936cffb7c917c166d25d9
BLAKE2b-256 aa95868b3b000b4f07f9e896af054012bc2be57ee4d7168fd68625768a705ce1

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.13-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 80c158e689921a3b3ea06721128be50589d08eae84872a5c6560d1da8267642b
MD5 a54108a581edc50916d8f0749cd2b55d
BLAKE2b-256 ba251a15f0bb46a71140029ed601d8d9ae36eb9d4623a665425842c91ce4f712

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82bcc17824397ef9ac0f1bb6a84a4a4b900453e76d13a4eea7ef4a32a05493e9
MD5 d31f4f44fd2c5cea0a98daf1943de931
BLAKE2b-256 279a3e7ebf6b47b7c8ebd1abefd12c5e6b531b935b322ed0b457e675ebaee5b5

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf847a1131e9be910d71f0f3ff602b57d2b36a84b5dcea472acab504c99a317c
MD5 cf6d4977397d6f58073584f3bf5877d1
BLAKE2b-256 6c82635b1fad61d16ecb1ae30715c3e21f6d150a6ea0962e05703ed29a9c61df

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 676bd14b30bb832d6aab73d64a7884fe0235ab13c71e5555b7168b58cc525e78
MD5 a40ee502981418cd354bf7350f87ab10
BLAKE2b-256 e915e551a7834005d1710c7b5a39334ffd894b3594c95b6f6015ecfa069c3022

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9d28cb8cc4e5173fe9c68c2e9bf913973461254c71e85ebba20d6a3305ae86c
MD5 145d74001486d24c60a9e0791c8752bc
BLAKE2b-256 e67423abbc0ce058848aac2c68e2ab8adc8bfab79c625f1eb6d93e1fb28ef94c

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66d68930df61cab430347316ea42e0315e9527bae3b4036c95f011b12e102beb
MD5 bcf563590953aded694c850806827d5a
BLAKE2b-256 d6a7207596a11f77920d101c3f268ca0f644ecf6da84355bd920760d8c1e0408

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5fdf819581c31adf7ab7eab4eb72cab78cb1bde478bb723cc32c867a195950a1
MD5 595e4b9894061f84fcfc17d89a9668e6
BLAKE2b-256 2c191dbdbe8af0ea3be206f815a4b768f1834a65ce37befa9a05399dabe4dff8

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6465b9284ea3fe9acc5a9ea167db7031c3824b084baf0bee38f3b2c40ae65099
MD5 991686c6bedcf84c6494431c688656df
BLAKE2b-256 61bb972873783498817dc9470a0cd9b86feb4b1719db1907511f3767266b78a5

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.13-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ee2b3abfd2478a9b6849597a312616e875a05659ba6c458bd74ed320e330a7c9
MD5 e65b93eacbf4366ebb446aed4aabafd7
BLAKE2b-256 dd6edcc4bf272b48d9456be3a013cec52b1b5cea0d1a7c0e0f278e3962f94b82

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50abbb0ff8cb9a08f7bb0f3b1df2d75bea4c61446b7534e65fc6d869f903c636
MD5 044231fa05c609834b8b5b7d00780fee
BLAKE2b-256 af399f651ed565e8ddfede9fc0a51222078a3da9189258984be70d6c43cf1457

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c42dff262bc9273021f35c9b76e8aeca88dd1f54deb006b99b4b61653345804
MD5 a8d32508b7155ed51345d0ef0909fb24
BLAKE2b-256 404032a84c581e926959212537f3585bc6a8c08cfe2caf373226baa108bc8730

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0ed6a9ef3881bf0eaadaace50cddc8e8f3656b36ce611511c521a5c52d7e892
MD5 7cd3f1db96c5b971e3e1d57f8a0000fb
BLAKE2b-256 9cc6ee4515f60d9db1c4f1ae9e308249303ca85d73a99a20d088f668bd3d1960

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2b179d1fa8cd01aa6aba82af15d52121c326d6e5d71b69454a81d029fbaf6e2
MD5 889efe48f03f3056148486c98464d9ce
BLAKE2b-256 e416362803e1ab7d6233eafa7b2fd7f57f30f2c59c0910a429404a703d7a86d4

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c32c22e6007e6d069ef76aca28c5cdd710a3cc42630eb8e57846832db3661920
MD5 c6eae22d40d8bf957d365329fd660942
BLAKE2b-256 901de099e5111c05a1c6c04f6f33cfa01ec36ec7919cfe484f1b84244737f130

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c88177ff20f8eec0f1f6e164045f3e86df1ae41bf0d96ad4274403da57dd8cae
MD5 19d379008405072c6df230d3942d7d50
BLAKE2b-256 36b5c92d681c79ceff16d9ec3ccca878055083dc6d2c4a6c4998cc73e4ae4610

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 458042fc1f27625b0ad6e15c63e9dc2d7725b4933e4fe1783e879be61ecf7f02
MD5 d43d55aa9dd2e0b7722574b04d725ece
BLAKE2b-256 98536af0a353acab12ae206ceb1afa4cb207c4fabe94e39c3d03a3959caab405

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.13-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 da78890230057d01ce0bb86c1d27903457526811d60013957156ae45e733ce94
MD5 a8a4d31492e3731ac2f37516b7a8e705
BLAKE2b-256 318e3fed25fde40a046210d031d4ef85f75681c481a715070c3638f756865987

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2aa8bbd6ded727aabbd443b3e9d8bfb8ffa653ecee6d52511152b1b49c1fd5d5
MD5 142c5867e3e40042c7252f9fdc2ea917
BLAKE2b-256 ab967ce749ee17ec55b69d6b4e003ba2d6ac3b881bd7a0fba9e245da8856dab7

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a6b83a9ae3601000a367b8e761e7633c974bd4372900b716ce18c4bbb09fd67
MD5 80776170ae626e6800f5ad83cbeb037e
BLAKE2b-256 c02abc49400677a0039af1a2a4eb26c904b11d651e2d568b5b8fb421f7892cd5

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00da455a0d33724bee3930cd1e0d55b33fd864c0b82d46badb4d0deae79ad0a8
MD5 4344ccf982130bcde5b65a5501a71124
BLAKE2b-256 a9b41acd0a67461eb4caf3d0640520ba8b458727810d37471bd2dfcb475d2b13

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db2bbe471094b4fea533898f355e1b71835c08fd67e2501f3650a2857825d98b
MD5 3dfee603da7113fe52ae4003db508a8d
BLAKE2b-256 837780355b17089f4ea4688a7d8118baf62712f218a83a12a2ad7e67f6d6c282

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62397ce08edeeebe17bf55b19694aa604d176daab2d27e6211883ff04c6cf637
MD5 e9869e7f33faa562403ddefc05079ed0
BLAKE2b-256 d6c11fecaa0c967059503be547d522925cf270d96c1465a0c41a8c9f958628ff

See more details on using hashes here.

Provenance

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

Publisher: publish.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.13-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.13-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5b0113a781135aa19b855ee8005d1d5a7c8cb75cdb91327753985ece0526130e
MD5 3cfc8dd687abf289ba5e554a8c91da7c
BLAKE2b-256 0a3be3f26e53f1ca80dcf4985f84a9353ca9548eeb458b8bee4cc9da0e3a3c0e

See more details on using hashes here.

Provenance

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

Publisher: publish.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