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.

Citation

If you use this software, please cite:

Król J, Bochenek M, Jopa S, Kazimierczuk K, Gambin A, Startek MP (2026). WNetAlign: fast and accurate spectra alignment using truncated Wasserstein distance and network simplex. Briefings in Bioinformatics, 27(3), bbag247. https://doi.org/10.1093/bib/bbag247

@article{krol2026wnetalign,
  title   = {WNetAlign: fast and accurate spectra alignment using truncated Wasserstein distance and network simplex},
  author  = {Kr{\'o}l, Justyna and Bochenek, Maria and Jopa, Sylwia and Kazimierczuk, Krzysztof and Gambin, Anna and Startek, Micha{\l} Piotr},
  journal = {Briefings in Bioinformatics},
  volume  = {27},
  number  = {3},
  pages   = {bbag247},
  year    = {2026},
  doi     = {10.1093/bib/bbag247}
}

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.14.tar.gz (239.6 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.14-pp311-pypy311_pp73-win_amd64.whl (641.3 kB view details)

Uploaded PyPyWindows x86-64

pylmcf-0.9.14-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (536.1 kB view details)

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

pylmcf-0.9.14-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (514.2 kB view details)

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

pylmcf-0.9.14-pp311-pypy311_pp73-macosx_11_0_arm64.whl (496.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pylmcf-0.9.14-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (533.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pylmcf-0.9.14-cp314-cp314t-win_arm64.whl (811.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

pylmcf-0.9.14-cp314-cp314t-win_amd64.whl (639.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

pylmcf-0.9.14-cp314-cp314t-win32.whl (638.6 kB view details)

Uploaded CPython 3.14tWindows x86

pylmcf-0.9.14-cp314-cp314t-musllinux_1_2_x86_64.whl (992.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pylmcf-0.9.14-cp314-cp314t-musllinux_1_2_aarch64.whl (945.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pylmcf-0.9.14-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (543.0 kB view details)

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

pylmcf-0.9.14-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (512.2 kB view details)

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

pylmcf-0.9.14-cp314-cp314t-macosx_11_0_arm64.whl (501.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pylmcf-0.9.14-cp314-cp314t-macosx_10_15_x86_64.whl (538.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pylmcf-0.9.14-cp314-cp314-win_arm64.whl (808.8 kB view details)

Uploaded CPython 3.14Windows ARM64

pylmcf-0.9.14-cp314-cp314-win_amd64.whl (637.6 kB view details)

Uploaded CPython 3.14Windows x86-64

pylmcf-0.9.14-cp314-cp314-win32.whl (637.0 kB view details)

Uploaded CPython 3.14Windows x86

pylmcf-0.9.14-cp314-cp314-musllinux_1_2_x86_64.whl (990.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pylmcf-0.9.14-cp314-cp314-musllinux_1_2_aarch64.whl (943.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pylmcf-0.9.14-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (539.3 kB view details)

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

pylmcf-0.9.14-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (509.6 kB view details)

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

pylmcf-0.9.14-cp314-cp314-macosx_11_0_arm64.whl (499.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pylmcf-0.9.14-cp314-cp314-macosx_10_15_x86_64.whl (536.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pylmcf-0.9.14-cp313-cp313-win_arm64.whl (790.2 kB view details)

Uploaded CPython 3.13Windows ARM64

pylmcf-0.9.14-cp313-cp313-win_amd64.whl (626.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pylmcf-0.9.14-cp313-cp313-win32.whl (627.8 kB view details)

Uploaded CPython 3.13Windows x86

pylmcf-0.9.14-cp313-cp313-musllinux_1_2_x86_64.whl (990.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pylmcf-0.9.14-cp313-cp313-musllinux_1_2_aarch64.whl (943.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pylmcf-0.9.14-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (539.4 kB view details)

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

pylmcf-0.9.14-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (509.1 kB view details)

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

pylmcf-0.9.14-cp313-cp313-macosx_11_0_arm64.whl (499.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylmcf-0.9.14-cp313-cp313-macosx_10_13_x86_64.whl (536.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pylmcf-0.9.14-cp312-cp312-win_arm64.whl (790.3 kB view details)

Uploaded CPython 3.12Windows ARM64

pylmcf-0.9.14-cp312-cp312-win_amd64.whl (626.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pylmcf-0.9.14-cp312-cp312-win32.whl (627.9 kB view details)

Uploaded CPython 3.12Windows x86

pylmcf-0.9.14-cp312-cp312-musllinux_1_2_x86_64.whl (990.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pylmcf-0.9.14-cp312-cp312-musllinux_1_2_aarch64.whl (943.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pylmcf-0.9.14-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (539.5 kB view details)

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

pylmcf-0.9.14-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (509.5 kB view details)

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

pylmcf-0.9.14-cp312-cp312-macosx_11_0_arm64.whl (499.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pylmcf-0.9.14-cp312-cp312-macosx_10_13_x86_64.whl (536.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pylmcf-0.9.14-cp311-cp311-win_arm64.whl (791.3 kB view details)

Uploaded CPython 3.11Windows ARM64

pylmcf-0.9.14-cp311-cp311-win_amd64.whl (627.0 kB view details)

Uploaded CPython 3.11Windows x86-64

pylmcf-0.9.14-cp311-cp311-win32.whl (628.6 kB view details)

Uploaded CPython 3.11Windows x86

pylmcf-0.9.14-cp311-cp311-musllinux_1_2_x86_64.whl (991.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pylmcf-0.9.14-cp311-cp311-musllinux_1_2_aarch64.whl (944.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pylmcf-0.9.14-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (539.6 kB view details)

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

pylmcf-0.9.14-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (516.9 kB view details)

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

pylmcf-0.9.14-cp311-cp311-macosx_11_0_arm64.whl (500.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pylmcf-0.9.14-cp311-cp311-macosx_10_13_x86_64.whl (537.4 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

pylmcf-0.9.14-cp310-cp310-win_amd64.whl (627.2 kB view details)

Uploaded CPython 3.10Windows x86-64

pylmcf-0.9.14-cp310-cp310-win32.whl (628.7 kB view details)

Uploaded CPython 3.10Windows x86

pylmcf-0.9.14-cp310-cp310-musllinux_1_2_x86_64.whl (991.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pylmcf-0.9.14-cp310-cp310-musllinux_1_2_aarch64.whl (944.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pylmcf-0.9.14-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (539.8 kB view details)

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

pylmcf-0.9.14-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (517.1 kB view details)

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

pylmcf-0.9.14-cp310-cp310-macosx_11_0_arm64.whl (500.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pylmcf-0.9.14-cp310-cp310-macosx_10_13_x86_64.whl (537.6 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

pylmcf-0.9.14-cp39-cp39-win_amd64.whl (628.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pylmcf-0.9.14-cp39-cp39-win32.whl (629.6 kB view details)

Uploaded CPython 3.9Windows x86

pylmcf-0.9.14-cp39-cp39-musllinux_1_2_x86_64.whl (991.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pylmcf-0.9.14-cp39-cp39-musllinux_1_2_aarch64.whl (944.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pylmcf-0.9.14-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (540.1 kB view details)

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

pylmcf-0.9.14-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (517.2 kB view details)

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

pylmcf-0.9.14-cp39-cp39-macosx_11_0_arm64.whl (500.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pylmcf-0.9.14-cp39-cp39-macosx_10_13_x86_64.whl (537.9 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: pylmcf-0.9.14.tar.gz
  • Upload date:
  • Size: 239.6 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.14.tar.gz
Algorithm Hash digest
SHA256 2824a1f0502e33c1b5f7e902125c6b169a1f41fef6973b4ffaebfc0e7238d34b
MD5 a088b000d77f10fe440feb5ce7dd0f8c
BLAKE2b-256 140e64f7474c6d68abc625324506eb80309b9b4eea542f222069cbd8648bd6c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14.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.14-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7d354b529049424e59ca4006886c19fc47a2d6884631d1be88682f54d8c3e08b
MD5 c1f0d7b3fd34bfc0bf3d5a5dd642e96c
BLAKE2b-256 12d9bf0e4a9db9c3ef8480264abc9add32ea33d2d9cb7348f06519fd32f26f37

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c842e7cf0614dd59542155fcfe125c4cbfca1d1b95ba91d312163196d190627
MD5 ae7b86c1ff90c24b2f6982ee49e9f2dc
BLAKE2b-256 7357f36837b23a6fe12a1f639a14177d7de96c2a497d96fa75377764e08d062f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af75d60fd7dbbe26140bb82c09b8c6682c7fe570fca4d49ac05e3ba5c3249127
MD5 d52bf43ff81642ffb79786506895c5ed
BLAKE2b-256 2c24ef78cc7d769cdaf9cbd745b231dfc52065b2d09b5aebe190358019c36cec

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1657eef12e8325eb8f1f8208f150ee8ed81b794a9042fd22aba8e362a4d36dcb
MD5 55d24d07526afde956a4d1ff6f18016a
BLAKE2b-256 cb57fcb446f32b2b294e493d58eed33aea997eef610e3f72a2e4192b0bd48c85

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5b0032bff991d44efa56257a37f54e295e366151c61070dc2f6736591cecca92
MD5 9cee2b74a328404d55d8b3c786447d82
BLAKE2b-256 f6652fb0b50a6add872acfb35a3f97f4ab520fff1212b442ff1da0c0c15dc7ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 811.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.14-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7c5ebc056ec3d1065c8e4b587f2c65e539d81da08a45d9f287899e4920741349
MD5 f495cf4925dc4f9ac47d4bbd92f62cee
BLAKE2b-256 9f0c431cdccb6f48be29474487b725daefb4c901311b50b5bb65c753eb9fe822

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 639.3 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.14-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1a52661ea70bccce8232204a038e07614ce471ae0a93c66b1836278fecb8585a
MD5 e444296d47cf8e34148fd9420042f0ac
BLAKE2b-256 ee78d148d7c7d61f778ea3c435367b2c69109cf80dfa33a08ce5ddbeba41bcd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 638.6 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.14-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2bc49e4f89b8751fa2daeb7ce1fc03a765cd67b3faad2b91e0f254e4e31a36a2
MD5 62a212fdb3dc50a3e3ca8f0ed809480e
BLAKE2b-256 84b66c4908862099adb2a7f6ce439448fecb4bc34dc450b5a5fc14037240265d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54041a4fc267612c88cdd02bc33f250d5a63fdbf1a227029e620b7be2360fe17
MD5 010542164270d45a1d6639e00a3c051e
BLAKE2b-256 678d16541a2c26d0ef9d9e1e6609483d1b6e3706ca64372ffd623b91610b953e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8caf4c1239daaa48b9962f4538a8b92e5000f6f7860107074a7b0bcb44a4f01c
MD5 f497f7c3ed6d768cbe1993c74825e479
BLAKE2b-256 03951c201fe706e3ab737fb9fc2f09a3d7e15dca62d3d61e0b5e9bdcd5625370

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1419e1ffc927451e2a646326dd4d91cb37af968a510787c5a84cbf028807e039
MD5 44d3d0471dd83db9bb561520740723e7
BLAKE2b-256 674d72e709d974f2e1cbecf1c2903178ee717be41a0c7be43ef7f828fbf6ff79

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd4d0b8cf89f1be940aca4352fcd93e5b08db2be9dd02dcb63111d90c5eac30c
MD5 854ae2c3f067ef9a8344d6f2c93e40f9
BLAKE2b-256 8047e25e13bdb6df01b5da9f00e13f4c53f836e5385fab53d9b2fa9387558025

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1f760a8f96455cf496a4d6ca7a8eec456c267a8c0dbbb52726147bba011e845
MD5 0b1112741d418264da4d0f6182f1e582
BLAKE2b-256 fe50e502f20316d5d500e432e96e35c577d618ba913f292592bf3e1123d23802

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 967a59363a82ad30b5346a55980d3ea6b04213a89283c7bc13575fed398b32a2
MD5 12f75aad2aceccdabe6b4075d24677c4
BLAKE2b-256 87fc63a3696f9bff69718fd6b2a4eec2b34415a10b01cf7630329ddaa9cc6ae3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 808.8 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.14-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ad21fad1c6e02b216af318a323d4c0a0656ed0c77cc8fbd03bc59068e3cb24f1
MD5 b7c3c370b37ebf632986c9ab87488e2e
BLAKE2b-256 abbb9a5218e7e447de231136c0fe20057c0f097467576704702e77b361db72cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 637.6 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.14-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7d555c4ea1f1d3788a4274272430db954595861ce5f072479ebe2b527356f8c3
MD5 12cfd38ebc6b98cb06dbc6e67f220cdf
BLAKE2b-256 2a68574f12a52c86a27559f2bde9da89e0c161e321205af55963f170fff464a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp314-cp314-win32.whl
  • Upload date:
  • Size: 637.0 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.14-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b347de75e4d3f699efcd784e31034a4dce6d64b4b1a5e85026ab1c7928f7e9fc
MD5 7bed631c1fbafa356c18d26c6f7f26ae
BLAKE2b-256 23b7001a4700c66e7c0c89f8ca2c8547f0e99b1cad2d2f9e7d528bdccd934532

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6eada24bc93b1162c039cb991220805ce37a012cb3b0273d1c38e028dfb0146
MD5 83f98f9414299080be28c6e0cc560936
BLAKE2b-256 909a4afa8150061afdcde04c39324b8068889f1382c09974a8bc7d26f6c31fd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd8b35af460de7497e00bc008ec6023a91ede8ed449526f990fd1ebcc942ce32
MD5 0103c0b5f768e68d617860cceea41cab
BLAKE2b-256 e4a1bc3910242ac959b64c6e8043b19c4891a2646e950dc3df046116a1c063f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1a118ab02c9cf1e76e32e86b0a46ac82c84954ef9ca94c47e6b5ed9a8e9afe5e
MD5 6762940557ae2d81806857301653a030
BLAKE2b-256 ffe3c8e3cf5db1acad54a9c38bf5d642f898cbd23a2f360b788c932e2e0eb405

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0efd433f722bd3a69f92e9ce4ef0c654117e8d432fb311a4e7ff3052cf87600a
MD5 e6b226d2cbb690f094d898cc110f0d56
BLAKE2b-256 b4c12174c8bd3500e2fee9644ed45b09e1a345c834268f9d4f49d7dcd3df2515

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf9a297b9bc55d2ed219a2011e3d91b4d961246ef875137aea62c5edce8fb3da
MD5 b36c8d69afd4e5a78ef6185e5ddbaaff
BLAKE2b-256 79058b4983b2333ece5353a57b16434e200f96fa5a7211c823d741f527ac7d0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8a73123f8f36969c9828339e072a8db5cc361b1d7d92bdae7937ea23b309d530
MD5 6ecd505a7d4382c0ab723618ac95cf80
BLAKE2b-256 bd27b22c4ce3283a64429a97f257759406467b9a9cd81ffbb310bfa1c778b8b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 790.2 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.14-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0be139ef6224b5f5d172a5ffde957bfd0b7bf87c5162d2a88a88e1cc5150c31d
MD5 cf8768b7321124edb63a0a4cf99e02c4
BLAKE2b-256 6282f19ecf8402c416e5e434144616705c7df23c3bec90df8921f249dcfbaa2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 626.1 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.14-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6f83c02cab20d3b864e83a0c3525f0d857e906bb98702ef6c6e013ca9a8967fe
MD5 97a422d35c848635d9f26d9060e85dd1
BLAKE2b-256 378e00a8fc102c7d5c865991b96b3c878a67c9d5d11c4c0603d50245d8c5bb25

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp313-cp313-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp313-cp313-win32.whl
  • Upload date:
  • Size: 627.8 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.14-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1c654c12e1b280b948b92b31443e9530ce6fe04259973639a1d64961864722b9
MD5 6c1723900e21f2f6595a9aa14a0b7df4
BLAKE2b-256 95f80f2b90946ca9eb73fbb0a2b777fe6370ba602f8bc0e665ad0520d504b566

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7124c2ce84b9932c0c72b195441cd2c0fb48d04086bd0d4016b768bfb420d31
MD5 0753d1a8ba74f378a4b380d18724a73d
BLAKE2b-256 b22b49c6909bbd2668f917e7a9aeaa0904f62be94b342ba4fd52f739d20650fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b93b8e8a3d68e96e27374a14f2fc1a41e1c3a4b1d2c88e78ae6a9562c89df062
MD5 2ee98f45b4f17e973ab105bb90674174
BLAKE2b-256 570d2141742cad67777c062526e885903aa7bb41b442db6162984795e4e733ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce8b24214c7b5008cd3e8e1e3b28ff59819485cfa4c1cff745d86ad4cebb3df6
MD5 9efd91483ca1f264ed968e9138e544eb
BLAKE2b-256 390366e1c5ad90abdeae570a16e6a7a2fc143ed4a539122f5e628459c4c82a9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4350a63a05c45e4d5165c8d61f61f2a08e4230cc6a7d47cd285cbd3a25c85e47
MD5 34a35c466c5c433458a48db52d457118
BLAKE2b-256 0118fe0c8d94a2790695d25d26da9963c6392989efc169f281961adbbf642e42

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32d504c5623c873a0f4e7b3f29babc34452e7a630a036aae6dbaa34fe50d9d96
MD5 b1fa18be864bb6e7b8363f6389ba6d26
BLAKE2b-256 480c931348e2339907c2c36920c0b69f7fc08f81a7bee16922cbad90bc6c15ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 252272f0170d4749073e20cf34524127dcfb6494e1c3b21e74ae3b371aa1a554
MD5 8c0bbbac98ef02443749dba307cf7120
BLAKE2b-256 ed34c205f821efa9536501c21995c56ed42eebf15037b3d0578fae355233fcdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 790.3 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.14-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 54e07e610dafb92976552cd5b97619d93d5902a68339eb47c282d9e109fa3531
MD5 33e2089b618d250aa78e91f14aa8e1e3
BLAKE2b-256 d54dfcf7d483bfc19c2f7154cbe7b3f7a7088e5ebe248992e8e5e31ad53234ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 626.1 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.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cc8b88435699e233d2a1b736a6cfb7070d5f6e006372ee6d56f90a110eb74240
MD5 b8dca781337bffa972253405136bed53
BLAKE2b-256 02adb861261c7d837fc92d1d2c5ac8d69919b7ca63d21bbf32c68878a868807e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp312-cp312-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp312-cp312-win32.whl
  • Upload date:
  • Size: 627.9 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.14-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b0d6b6951027cb51d4148cc5694b3894f95800e8e7b4376b97b4dc46fe6ef04a
MD5 8595438b1d3c04e416543550439f43a1
BLAKE2b-256 dfe49dc9efa71f48c08092b0217dacfb662aaf133e2c64b944c5cb9ccdc52f95

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7a5af94c5f42f23eff0e1a7b10bfc436f7a8bc02f386c67a537046f2533305d
MD5 a55ed126e1d70448c3c3e84d10e3764a
BLAKE2b-256 0f55c5190bc0926fc539bc30dbaa2a7d241ddf0cf326e98a2e382adccb94d479

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ec181462433182d7d6e32dc35fac606f279dfc78c5a449a497955a8cc970fa3
MD5 e66ceab0fba709d4ea588a13a24dff88
BLAKE2b-256 7efc985ff81677989bbc91a176bcdaf40a8a03658a35c0a98769253db3bf9058

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb2d13532a36e44a2d20c76163a50a7112c8260189b58f772f9e48618107cffa
MD5 3cd6c6585717bab40fcfb62a813b2c9e
BLAKE2b-256 4f1fd7ef3a9bde2e92f23741f3c000dc6e112de690510d41eb697351d8dbc8ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 562462f051fde4baa9cef12efe0f5ed462a9940f83dea95690299bdbbab29c38
MD5 0478d8cd493f7a8017ec08f203b2e42c
BLAKE2b-256 f35b6f57ee699d7c2b11325f47ab45b9537be441b3b768b0e57ae228efe4e7e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bae53429f9beeeee045acce8dbb6b295b96c9b6d60cfd20fd363cee55f2df0e
MD5 d9c28cd0eeca8e33c4cb2631ae5760ee
BLAKE2b-256 51975fbde0b691bb52ec88784193ddc957c524a629c351a360b580f2b2c2f38b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ef990e0fc25434e3ebd97c2df22874d4b4b55a779e57eb3efac8590c1d324f3e
MD5 78ed5bf1d392c9425e10c1772b852b4f
BLAKE2b-256 8645fee8762f480b1fbe5390304675fb0082d6bf09e0eb8627574c33da039e98

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 791.3 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.14-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e87597c7892d93e58d39fd3432622cf938450fb2f995b9279fb034ae385328c7
MD5 de62d12e5249ccc107cc863fb37200c4
BLAKE2b-256 eb6908985534e6f19e73ceedf1b81b7811afcc3b7d2ab2c45857c69114b878ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 627.0 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.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a36226a3f3c8d92e2f8044732c61608df3900212282d760f939c9f51160009db
MD5 fc35ba4386a53c8c184c9f37c1c88e6f
BLAKE2b-256 3ecb469c8bb6bd1b328873b17eca9800437a1854a5b37836be9623f40e449e65

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp311-cp311-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp311-cp311-win32.whl
  • Upload date:
  • Size: 628.6 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.14-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 392f73bbc6e3aa3143c670bfb0e166504bc8f5d0dbc71bd1b230894747275a81
MD5 3a403b316e89dcfe12fc786677cad74f
BLAKE2b-256 d37f82d9d4b1b20b58d7de2d49f4b6e504409b60f16ec41d1f3acda400f40b6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8cc5ee2eaf659bc8462441ced86e80766ea1340c6214c8c533367ea9d6240885
MD5 b25903167376f23d1bbecfc3113cfacf
BLAKE2b-256 837cd2018083c34f86d0401c9fcf51f866a758a1a63ac72ef19c869afb2809a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a11d0acea52cdb200259fcc3a42543f3b4a8fc0ce1162d1976d62eed96a4b43e
MD5 662d9e8394924bd058c495b6615595d4
BLAKE2b-256 1df7e0b43d26338f1d671f4b0bcac4e48dcaccb27e5fd6a7a0f305e00af23eb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2a4dccc3cc40d63745ad0e9793be0aa86da682194403d282ee59b8d5dac2e4d
MD5 2b36b5411ee3db3ba791a911cc713b3a
BLAKE2b-256 44bda56be6631b354fceda85000ae3b0ca9fbd5f4f63d37cc41371c4a95cd765

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9fe1071e2278610013f0945763c1aeb6c04490c4e491f448ca5ef1681dedc3cc
MD5 750bb989e6fdd8398ebe62a7ded43cbc
BLAKE2b-256 23c5eb9fa4385e4ad3b683d074aa45434c1cb472898a49e7ac34805927a13fdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b26cef136ea1cf316e2361b64124c038f239055248c9ad44418ab277fa06da54
MD5 36a6b94c082b70ae18c7ece47c8451a1
BLAKE2b-256 e48cc3f2b82aba85514d6afd4d10d9894a911ca148be3742daaf2929e3d98cba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fc3dfc39e083cc2b4bedfc753df44dd87e1fcfc8bc7d3a67a37a51bf507e6c72
MD5 c4b2c5ec2fec83b0653911fff5831729
BLAKE2b-256 841093a63a84d3482d8855283a8fb726559ae4ba5a9a9b941264fb6512ec377b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 627.2 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.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 53265c63012efbc35fd5aa68c975f0fb130b4cdfa1b1b163b3f70e0a02b17fee
MD5 1655cdd727054fc0f1a4ae692bea9a6e
BLAKE2b-256 0f0bace91fe6fb40dc3d936ca6d515d4b878d23753d9a78c3392ede6654da63d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp310-cp310-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp310-cp310-win32.whl
  • Upload date:
  • Size: 628.7 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.14-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 96b63ea2d09663285b6e4c99ab5128c1c526620496e0f91fe071c6d06068d598
MD5 346de43e09bbd6a83c31ac40334a13c4
BLAKE2b-256 0c4f610d7485d6ba5484fc76a0ac664296a6840e6e8c197800441d1700c37d7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63fae3cd044c22cfeeefe7cd6ae4ea201bffb36e095328557730b730dbc173f4
MD5 f88103f55932543b674b7903325666ca
BLAKE2b-256 222cc361e4b0aaba47f7d94d935e4cd4e3d442b1940b153b172aa7d1af9773fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c7fdf2fd2b9716b2371a8ba89130646346228a5ba6a63376f916e950ea12a9c
MD5 089df7fb6e69a83d71aec8fac3671b9f
BLAKE2b-256 5b749a300711295fa132b7beff2194e0c5d12a3698679b0a0f22e62d3bfa0f02

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8cd5444ba303b8754d0fdb2e3f2004443ddb0088a4c2244f594d26fab92dd71
MD5 55da5fadde4c8f9c55cc26b1d8c094cd
BLAKE2b-256 e020c4846b00011b7800bb50a888e7362a46f458a994f804090495dc694c0bc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 107db3ff65bb39d849096ab9023f585d30dd0df230fe2b42b44a6d0a8f11a409
MD5 c14b346ab5f35209051507a54576db63
BLAKE2b-256 8d0a161ee20981dbc11593a1e36e96535232f32f8c2d9830ae348a6bbcd5bff6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64b7d0d55e3c1b2757eeb3ffc6996f591e4b4b90bce7a3edf0802a75835d52f0
MD5 14dd6e1f7333f8ddd20dec48b5a4430b
BLAKE2b-256 d1775ac133db388ae4fdb8d3e36e8bc9b8c15aaeace1cffbe4755cf4572f6f44

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9a1ca1460f428ae7a892f52f5fe75d4299b2aaf095a5f30785d722b297d7cc95
MD5 aaf7932b6ab8b0bd98fa7c33fbd61326
BLAKE2b-256 7afb7995f3c8f1e3aa69d0ac747ba6cc4979b134a9b1c6bacf5216495e7664ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 628.2 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.14-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2afade93aa71b17c30b893c8d26ce9c50a88b334d16d9d850025c61969bd5e94
MD5 17b34981e21173692e5217511a731669
BLAKE2b-256 20b48c50fbd3ac5cfb0470de58f8e8f731b22e9fea40df4258b82eb04d05a649

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp39-cp39-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.14-cp39-cp39-win32.whl
  • Upload date:
  • Size: 629.6 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.14-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0d9e2fc1bfe52f5de2b4f07459642b74159260bac2879729b6d0b7cce47f46fd
MD5 73ea571cfca0bb1da03cdbe249b0707b
BLAKE2b-256 fe8bc9c965282a5732adfb14afa8937ac3ebac89b0ddb60e4aed637a56cae053

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 600f1f9403bf43727a045d8ade5bd4c044775534738f482ac1a6a29da7500983
MD5 3f9f9728b5795bae0deb9b2249b8ebe8
BLAKE2b-256 70e867e864942ca73883f8535ba0ddddc6cb82b0ab5db94bbbac6c2d66e87a4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce135462f90d2bbe2d7a12747c66e1e19d827fc12062fb32c15435ae67e4cd43
MD5 091569304989a0c6ad9508ac98aa3698
BLAKE2b-256 5995facc426b00a5c17526ca14ae5356c80bb4713d711ff5d3c116a6b3e27c66

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f2f4dd84897958bda1a186b6228c6bf96b5f210f3b7a8a67de67ff3ee1deb1a
MD5 37dfd6deff726a49ea42d7f333275268
BLAKE2b-256 cc02ecc95c9a782742d262251cce0abdf85e4cced6b932b3ecd176656e7f1c10

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c748b5724c570140d3f08b76afda58929907dceb07e84ec8575cc30fd66f28f8
MD5 08e957575cf85335b220452147ffffdc
BLAKE2b-256 87a16c3c4b8c5efcc58c570351285557aa7a9a2f9afdf9b8c680633a86e6af80

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3eea3ff142e028d1e6e3b3e53723cfee533b74783d926f82be81b6d9b1ec030
MD5 60fb2c4e1869734c48002dba153d5052
BLAKE2b-256 ce74b8c8915fdec0d99836117eb0e964b5d51a6ceb31a870d104d62b708d2a25

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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.14-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.14-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6385207aa797d3ed710fde9f546bb9c29845227d2f84a604248f4ec9c51d6557
MD5 497335f4af3a599d48eaef348a368a41
BLAKE2b-256 d0b20d9fb707c0cc6e62fdaa8317c92841da0c0bd9c2266a1ff98bd368e26268

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-0.9.14-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