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-1.0.0.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-1.0.0-pp311-pypy311_pp73-win_amd64.whl (641.4 kB view details)

Uploaded PyPyWindows x86-64

pylmcf-1.0.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (537.0 kB view details)

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

pylmcf-1.0.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (509.4 kB view details)

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

pylmcf-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (497.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

pylmcf-1.0.0-cp314-cp314t-win_arm64.whl (812.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

pylmcf-1.0.0-cp314-cp314t-win_amd64.whl (639.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

pylmcf-1.0.0-cp314-cp314t-win32.whl (638.9 kB view details)

Uploaded CPython 3.14tWindows x86

pylmcf-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (993.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pylmcf-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (946.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pylmcf-1.0.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (542.3 kB view details)

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

pylmcf-1.0.0-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-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl (502.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pylmcf-1.0.0-cp314-cp314-win_arm64.whl (808.9 kB view details)

Uploaded CPython 3.14Windows ARM64

pylmcf-1.0.0-cp314-cp314-win_amd64.whl (637.7 kB view details)

Uploaded CPython 3.14Windows x86-64

pylmcf-1.0.0-cp314-cp314-win32.whl (637.2 kB view details)

Uploaded CPython 3.14Windows x86

pylmcf-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (989.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pylmcf-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (949.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pylmcf-1.0.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (540.1 kB view details)

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

pylmcf-1.0.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (511.3 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

pylmcf-1.0.0-cp313-cp313-win_arm64.whl (790.5 kB view details)

Uploaded CPython 3.13Windows ARM64

pylmcf-1.0.0-cp313-cp313-win_amd64.whl (626.3 kB view details)

Uploaded CPython 3.13Windows x86-64

pylmcf-1.0.0-cp313-cp313-win32.whl (628.0 kB view details)

Uploaded CPython 3.13Windows x86

pylmcf-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (989.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pylmcf-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (949.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pylmcf-1.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (540.2 kB view details)

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

pylmcf-1.0.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (511.0 kB view details)

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

pylmcf-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (499.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylmcf-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl (536.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pylmcf-1.0.0-cp312-cp312-win_arm64.whl (790.5 kB view details)

Uploaded CPython 3.12Windows ARM64

pylmcf-1.0.0-cp312-cp312-win_amd64.whl (626.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pylmcf-1.0.0-cp312-cp312-win32.whl (628.1 kB view details)

Uploaded CPython 3.12Windows x86

pylmcf-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (989.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pylmcf-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (949.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pylmcf-1.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (540.2 kB view details)

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

pylmcf-1.0.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (511.3 kB view details)

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

pylmcf-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (499.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

pylmcf-1.0.0-cp311-cp311-win_arm64.whl (791.5 kB view details)

Uploaded CPython 3.11Windows ARM64

pylmcf-1.0.0-cp311-cp311-win_amd64.whl (627.1 kB view details)

Uploaded CPython 3.11Windows x86-64

pylmcf-1.0.0-cp311-cp311-win32.whl (628.7 kB view details)

Uploaded CPython 3.11Windows x86

pylmcf-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (992.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pylmcf-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (946.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pylmcf-1.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (540.6 kB view details)

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

pylmcf-1.0.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (512.3 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pylmcf-1.0.0-cp311-cp311-macosx_10_13_x86_64.whl (537.5 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

pylmcf-1.0.0-cp310-cp310-win_amd64.whl (627.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pylmcf-1.0.0-cp310-cp310-win32.whl (628.8 kB view details)

Uploaded CPython 3.10Windows x86

pylmcf-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (992.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pylmcf-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (946.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pylmcf-1.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (540.8 kB view details)

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

pylmcf-1.0.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (512.5 kB view details)

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

pylmcf-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (500.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.13+ x86-64

pylmcf-1.0.0-cp39-cp39-win_amd64.whl (628.5 kB view details)

Uploaded CPython 3.9Windows x86-64

pylmcf-1.0.0-cp39-cp39-win32.whl (629.8 kB view details)

Uploaded CPython 3.9Windows x86

pylmcf-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (992.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pylmcf-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (946.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pylmcf-1.0.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (541.1 kB view details)

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

pylmcf-1.0.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (512.6 kB view details)

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

pylmcf-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (501.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pylmcf-1.0.0-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-1.0.0.tar.gz.

File metadata

  • Download URL: pylmcf-1.0.0.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-1.0.0.tar.gz
Algorithm Hash digest
SHA256 283192ad2afb399c158d750ec12efe9e355be417b48a384e043b5c9a52dabb14
MD5 250a47d742db8ba88b034679412784c1
BLAKE2b-256 7f44d5b615cedba0bb91f9c4195c0576ddda4cc3bf7c931de60242998960d42a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9c7822551a374d8838423f2467b50a39832f959d4477e8bfd2f3f08d034f1949
MD5 920f8cbbc329e7b0e156d49c21dad371
BLAKE2b-256 189fd8dbd870628e077f7e8a764cf49f9b0124bb075453e8f4dc199c2c218337

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dde8f8c28d189488bd0c4bf937ca73ccaa3c05be54799c4f7bdb4cf786f27056
MD5 d4252a314c7e0ed8afeda12504f86325
BLAKE2b-256 d3fd736f424c0780d6b526e4683d225e59fd280bc475ec7a29deffdd4b07bc36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 87255af2491082c8717838fcb99524b01084c29d19e48638cac5221cada536ca
MD5 55e7244a0d55add537c344b7a0b6e738
BLAKE2b-256 fdcca1d2bd0bdbd341fc122caa540b543fba999115ae591c52fd7083b2b11fab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 944d75f9ce311fc9ac6f299d3062eacfbe2454a40ff9d6fd4a8b0470cb48e41d
MD5 c0954880fbf7817e9d7538582de236d6
BLAKE2b-256 c308348450131c6b1f83877bd883b21e187e31f44d9ff782a827ea55aad144f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 da348ca99fedb25b722389cd5069f4fb723c7b05d0c7ecaaf2a0c3b14e12c150
MD5 fd9f8317fdf08d4aa9a84a5a859518b9
BLAKE2b-256 79205b131182f196585c8dfe00a3add251779d7c5754a59c850c91343cd861f0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 812.0 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-1.0.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 da427002bef08b2941e8f038e0fccc9113ae944f39edbe692c8a0a889de1919d
MD5 194d64ce02860496f213e52f082bfe30
BLAKE2b-256 8a3cbcdd331225d3ee22d57c69878cb4f4e68d46fd20ce36db0e57504bd4216d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 639.5 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-1.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c297f14971f97b0071f2bbe5f852c41eaad20059b717f2c01da0e106a4945efd
MD5 c05be7051212459bd87533fc8c97356f
BLAKE2b-256 9536eac76fdeb3638115cffd1746bdf7d3b9a6cb12f2f14fd99fb62c788d26c5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 638.9 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-1.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e5199229d036360fcda153aec3d290f94e1831c436e62cd9a97eeed5f6014200
MD5 15309fb36fb1f1a5cc62605d5e2416cd
BLAKE2b-256 6686c8fded278952893e60427623b7dfd0c7d5e4a6495ee69d0066f87c1278bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3387f3e516eae69f3c5886edf278527706e9a93c492d6e6be77da9ef2a6841f
MD5 bc0852431c6e44a92d2ad0ffb9f81407
BLAKE2b-256 9be2a3c31629b31bbee8a6258c53cbfe1a688b1e57537e7cd10d73f7cbf0114f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31e70de149204689bbbed13a5b01f99749cfbf0f79247abb02e3b1a35f0f0b67
MD5 a0c62833fb53e520f1759b23e50d623f
BLAKE2b-256 391b3c604ee90574331a1c9dc9c9e5707d8192c5a958e32c212ef494c9822f77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5dfe14a60ce5bab532c7fd02bfd1f96bd1e8ff0816518ab03e98cce7ef9dee1e
MD5 c1ddeda8c75c14e6ec91b70de79e4ca2
BLAKE2b-256 2ad1518d4491f470faba9b4e194eb397d70e991adc064787e365b18eb22a8400

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 beaadee4cdbdddf5db66f575851b0107aaaae6aa216a1065171cce47169d4d54
MD5 94450f452fb1c203b252fe915234a9ee
BLAKE2b-256 1db8717c17a1f5e8d0ee5f8e6518e5784d20f67a1feb451331cc2d095e798548

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27a9a62765411231fd306d2cd7a88f50b36cd3e97ceabe18d701f88552f95525
MD5 0dc748f944e9723e46df0a4e987a7b8b
BLAKE2b-256 5ce9439a33d53f30444b7b3cebe2b5b1aee7338fe9e8af4a8ec1174372e53327

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ffe8fb00dd1f642ce0d3dded0a7d992a0c29ffc0c717b6f81294c37261104167
MD5 16325f9614ee2658c9eceb1a84cd886b
BLAKE2b-256 9e50b585bd60be163ba718f88e49c6757197e3f6d80fcfeffc50aa5705e77f78

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 808.9 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-1.0.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 225cb5d97f22f800827cb3406335c1e0f7271b6c0081e7338c91df3d51021f49
MD5 92cdc7fde10656e9d3ec98a1524601d4
BLAKE2b-256 c6d8139239db8c5db3facb547ed81c9cc53231bfe687cfaa8f138c94e22039cb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 637.7 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-1.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0fa4a921d9e1027f26ba604ee44579216e9e2ed898ee306bdfdfb04947a232e1
MD5 c0618007a545f1adc69e4d076158c035
BLAKE2b-256 15ac3de8a82b0e643ad2866627bfd89da53a380dbae8642ebe7c9eecf55a3e0a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 637.2 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-1.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 dc4b46b904a44a58d4dc2be639bc748244586c669559e35ebdedd902bd1395b7
MD5 16227a69bbbc380e5a42d5da6501d679
BLAKE2b-256 0373447886e4d4449f94329473743de6313aa83acb568e797b82a17f8867f627

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 547170271a1b5f27f1dd8ed5c0095becad1f651f5a79c1aefe691df552de4475
MD5 484d29a019f3e91a9f8fefef2f21f44c
BLAKE2b-256 6b9abd9e10caadb301ce773d76038457b3e3f8555c6c178c931d0f1a61775b2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05dc22de5367952a0a92ba69ad95b2b2e4daa4036ad92538aa04c1f352ebd53e
MD5 abc87884dd963ef312cd1152455b0a30
BLAKE2b-256 7255eea94e97d8388de40703bdae94bfd7a77174f229d0f724bdd619fb746f04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75e035791aabdfd1a96134b21be1c6b8584b29997553d491e688092ee001c138
MD5 13acccf7691fd64d24c77e22fda81871
BLAKE2b-256 f5663b69701abb119dc84e22b59681948fbdc1542e10c2116f2db42f8aebfe8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc8a7fd4d2930d0b9432ac1d82a2c0342786ffee5fc8d3f4b9b7ff20e2c45373
MD5 59db0828e0479fbbedb596974a3d9afd
BLAKE2b-256 974555aafef18a43c70ec4b0926745c83637ef65790d7265603a0373efe82759

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b24b0c3695b3436b36881882e9290cb83bf37cecd39e106c4e8cc2380324d29
MD5 510ef665bc7c48a7c4232d1bcc28d01b
BLAKE2b-256 60b3e06e884d5a8d3a96e7b069a99627039f7c6c8b604723e2bea0fc12774a03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 98157a9b3488aaf1be8b260bc22f5e945d3cccebcdcfe25e56d9ac58af833b72
MD5 5ffa8b41f35beffb8c77cc5e8ab32de6
BLAKE2b-256 9f5adeaf0f7802630f52a856b341a258ee50118c471af8ca9eee663ad76d0622

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 790.5 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-1.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 187faa19c9d9818479af0932d824668db016ff3376d49bacbbef4a20f8588282
MD5 076244d9d3a7241866488aa7ccfa5621
BLAKE2b-256 b304a91bead4703cebb23f145b22533838faa90640460e8a80d2ab212600a0e7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 626.3 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-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9419e3d64b77bff15a79e88256b3d253cc724172e9bd3f2237d1b2d545fb428e
MD5 639c61641244f230fe513ac228ea20dc
BLAKE2b-256 49336500ee9ff7da874c0f812bca1a220f151d6d4376ca3333ad04448a0b66c0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 628.0 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-1.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d9329b5dd59bdedd1c9178aa2be4c9f80519df88e0e7e1742c9436df2cd2928d
MD5 b5c15ec2823908927fc94435c968be27
BLAKE2b-256 7503257b53a65eb9ea40309c6d91333c42d720d5cd5f5eac2dad5a05154b91e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3efaa51f01a8132182275b8400e7d2c9e932d74727d9d999611b7c568456894c
MD5 4cbf92ba1718e643dc1937d014ab89e4
BLAKE2b-256 50eef5f686623aa659a46bf92b4a4f73eff32185c8447366550dbe3af2d3a487

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb41d3a63063930988ed84de8b7efdea5e7457f572ec0ef286e3b47c1c9c3c0a
MD5 5b9045539f674c1a8e0fddabf6793484
BLAKE2b-256 4adbc896098c6611005a37b5c488b7c35bfa5292391dba5e5b16c9ef342e1b8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f578f5ac02def904ccde3e6e656195a76c76fdee985946b4e728cab3095b881
MD5 e46fdc0c978897c0cb176c996e210bd8
BLAKE2b-256 273427811519c75ee0d6aa22e5db5faa04366fe3c540c5e2beaad033b1220c81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee5c59b7ffcfcfa5912f961dde85c27e6be99c5639ea5d1a32fb355eec574a2a
MD5 272089582d2b55e5fa4d77a272650519
BLAKE2b-256 9c510073f62732d3286e4a2f14a6b884b6a2418ec17ff20ad96f6dc9cdd90ad9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96b552026f3dd885621df766697d2f8e25430675b47d7ecd1b8f704a5c796656
MD5 4614b0cbf3d3bc595440a299af24dae4
BLAKE2b-256 680933f455a5d81f4e26dbea05ded77a5e597c9797ec8de5d57dbab0dbdf83b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1493a22ee3a6fd9dfed040511a7dc52a8d2fddb15db9fdf8bf3555f08c402e34
MD5 bdded7c40451ac983e8525fa23b7da9b
BLAKE2b-256 bc191f05e528711f0d1b987c3423ba394ea43165ea32280d0db98722b99eabd6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 790.5 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-1.0.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 519a6ef404adbef518d8c70e56f4a492344d04f11af1b67fb1053829aa7f5b7a
MD5 b0b05bac6d0c51db358617cd64e2f409
BLAKE2b-256 e282fcb2d8492c65f92873e0f534565f0ecc854ef9e8e6236474f55b11bff09a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 626.3 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-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 742e8457c92482c52f2cb79f1f6b13a10b6826f411800ac118ab2d00ae3c313a
MD5 be523a2aedb6454a9b43de014ccd0c74
BLAKE2b-256 a7d6791ccb9e1f1a730aa9d3fa57cb705f4b29b254425e9677322879736ec28f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 628.1 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-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 21932b733cee6f4221d0275fe69af8331fcb1e9a97b843ef7a92674d81f9e351
MD5 6bc0eadfd0176b0dd8943917c1ed5cb5
BLAKE2b-256 0c4a217a3a9c0813d49f704975df089d87f6724d58d7d53d29a280a6b39ecd4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98b888e08223897644f1bb25b70d971d30809c2b79312f97433ff50ff37210f8
MD5 bc7bd0ea4b1eb283f5a66c8fe3f45a52
BLAKE2b-256 aba0f4383f18abea1ce82861c28df5b6510cb62db67d0919d977f3becb0ee4ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 593baa0c3f5c89267730b5cb74b5c63216e7442e3ca496418b518a01aab0e4bf
MD5 5ef4fd1e4a7c10846f836a422c2c4b42
BLAKE2b-256 b44cf22fc4c6cc9562cd549a1cebde9ef1076edb606cff12444647b8b4197e4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a48ff677472a7c7f72981ee61467d00b4770b287b216d4a1e8bed2f7e55b4058
MD5 3eac2d575209ded29ca009e65508a6ef
BLAKE2b-256 f062182811b0f40836c590418437bbc5246c5b8c54ba0743d99c5663526122f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c80539885a003d9d884413c47fa0df704efe675a547c469af2ba73a26ac0de3
MD5 5762e0ee69178518b839410f7f4c1f2f
BLAKE2b-256 9ebad23e6baeff2dc99853dcb71da558a6b0a609b79a862f1b6d9190f29b6683

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05309de6a2eb235c14262c5263d43a19fca757ffaa07a2861cccbfd37baf0b9c
MD5 718974450e6f741a916f7a5841d62991
BLAKE2b-256 70b0d874042c1e261f89f7cecbd7642501bf3ae23bc325325bc1818478e19d7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b75ab836d07e4b694c1458baf5dc7ef13cde9d57e8f7c166d7cc1ef75fe8bd9d
MD5 5ff4cf9b1aff65bf576021ff0172e800
BLAKE2b-256 e5b602f94e3eab75abe0b757cbf0d887ac243cfd467a63d12b1e2bab3cf6e0c2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 791.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-1.0.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 410b1a25c87e6c7f6a5c959a6e4106a5641a745606a7e780f858cb1145f77380
MD5 7f26646ad820969c8ee8f62b1566477f
BLAKE2b-256 19199e8f0724f1a17c2e4598a6ad720e37774c81a509100fb388d9ee022dda7a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 627.1 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-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 37c82d81e07486678be573dda8b5d1962935d48db7b93d988db450c590b0013c
MD5 63e1cef6490c8292b761c0edfcb611db
BLAKE2b-256 47d8316398ebdf49adc75700f2f844e31076127fde1170fe19251e96a3cf035e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 628.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-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d5eb242767a11429202c843ed2cd691da4ae9b0686810f7a550605ab8b29baf2
MD5 4bf3db9f33706c8a5edf362b0767d43f
BLAKE2b-256 498da23e18f5a1f413d33762cce7f7a574a169252189c45fd796bdaa5e7732d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4564b165621ed99b10341666e3095edc2e55fe497f377945e7d7c943d8b8c722
MD5 dbfe52a62c505828b2bd1793d40cdea8
BLAKE2b-256 6c4ab61518236d795cfeb6256a01d0022d7b313f8bcb2d534e70bd968aac3a00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1873791a9580c585efaad8c1d0707eefdd5a69c95cf62737a5f12e3906aedc85
MD5 60bc194efe721e7efdabf906a22b983c
BLAKE2b-256 921098a19d4b033aae98e368244ae1e1a341d3c8b16661d18df529c5feb97245

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cca62dc7cd644e7050a4d6bede8e515723d03c45e0850f048146837ddb30c639
MD5 10c7f30a71b95a505de0d0886c859b41
BLAKE2b-256 4ff6f80c426560d09b4df3467e9d53d1fc3af5e92d1ee7b79fc8e59a205a47ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4929c8c039a70a3442e5f770b4ca51aa4f07ec5b1e124084b7063fdfefd40312
MD5 ee86a9af803a3ff63c56f002666b8b19
BLAKE2b-256 e89403138e6d8239d2f985877342a169534df7798263acd9c43e605941df9357

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5c472ce28f10c2bc7267e0801533a5add9b71d0fc06e0d0daa41f8054e4dfc9
MD5 ce8fd34ab7794a9ee471cae33d59cd4f
BLAKE2b-256 63009395de99d450eeb686f2810659795c24462053ba896e320b0ff9e6ccef84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b5a19a96b00a6d3895a056a74f9f5e63cacbdc253a5943074332ea9ce2a0991a
MD5 82355318ae82e06603805068f504fb82
BLAKE2b-256 38789b0745a991007f76a843cc4844221bd7e577411150530dac23e71062443b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 627.3 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-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cfc1ff59d1824d710f4ce0acba6c14e1834e3c5710e84d4e12f7cc4b389c1af8
MD5 4107965ebcb2194ab546c0d446c534e7
BLAKE2b-256 5459c355cf7280543bb83633712aed771c9ce10636513bce0b717a83c42825bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 628.8 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-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 51980e115f52ea4ddb9f08468539eb0d9feeeccd06d7f799886afc43bc80bd07
MD5 26466f9fb4aab5ce7609b4efc0813910
BLAKE2b-256 a21caa357385cc940143cc840cbea8c8408630b0b8b2ec8d0eddf400d5e4d913

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d020d1b4e5fc650282af37b34e68423863a576219e47c0138b75a5d11b227cd
MD5 e2cef6aa2bc3fb90ff54e1502d997e04
BLAKE2b-256 c6112d65363707f7f5d9a2cd470f4ea3267ed4057b09e2e232f98dcc543167ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e4e7522641c4babe13552b85c13df0d6688047eac41f1c4f0974131c45d4489
MD5 141b8bd1428a73ebc78da0aafff90d42
BLAKE2b-256 742a2077e4a1ffdb959b0b713eb9eccdb6e4b8aaca4bd8f87a03d4ee5dbdd360

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c47ca15b7e2275a093d190036ab0fcd477a45adafdf6a1479899b74e5b109b03
MD5 1c019fff61f6a3ca22b534b7b62bfbe9
BLAKE2b-256 d432b1cf259956364538b3c4393db8e084558392c5ad3c0e07930b4a81d73ff7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2dd95f3bd84ebdbbb743740228828b6d7aef23179a3abc41c26c452b6f9aef04
MD5 6c0d1608a2e459653e2472284cb7b788
BLAKE2b-256 73bbd7752b6b8fca37ba592593afec7aca1e6956f8b2e23a4475451b55327cf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61b976a7a2ac6308e6bef8f440da2c58e7ff443afff2a3441edb0b4a0146219e
MD5 512de46459d8a045259cbd3fb7f1cdd0
BLAKE2b-256 004a2e7b1cda5c13da0b01aa5ea58986357f78a2e9913ae2feae87e6e85723ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 aa9ace3de85510268d87bc96ccdcdc526838594d915bcba6123d1269ad036a1a
MD5 1498bba84cf56920a770f20e8d409d62
BLAKE2b-256 f4e8ee81a18435ed08e3831192ef17dc79e0874d4550aae15401e87e7d14ba8c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 628.5 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-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 05a0cfd40405e9b0f7b40ad14993f6e94caeb0fc0621cb826daf089aee30431c
MD5 bdd207191b3abebc3693dc006dbbdf0a
BLAKE2b-256 2eb3f6859df50e3bc60d297aa227e33aa1331d51cf5ee44ce475e8e0a40db859

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 629.8 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-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0666e11c493647a30ce17626d0aa9baf61de52ddf5068e96d216668c3ee5ac13
MD5 081b64e343a5afc1facdc48e529d3108
BLAKE2b-256 3d35e05500c70cac1b8fe33c5f7d68853adb8da2f041eb457241d9a177990869

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c18fe15e74156ac79702311c8873c2b1b9f7ea721fbb19ade505c33339ed0022
MD5 0ef8656bb303a6d1007497769b8fc698
BLAKE2b-256 bbbad2b975b6acf6dfca3099facf77bb85484e626b2655ff0d093733fe7dcc02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67d253e75f53ab55d76e27c5f1adda8db87f61f3f543446e8c8a4ea143c267bb
MD5 235740e9f8ab76da6e45681a42ba43ca
BLAKE2b-256 8a61e513089ef3b653df1b0fdcaa879597fe62ed4a174d88c47920ca0dee18d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e196f1c2169ce5ff49ffdbf863f5241821cb89fdf16e321a30367eab49e9a014
MD5 3bbe17c6f1a74bb9f9e6eeb26372bcef
BLAKE2b-256 cb21e00d324b7ca8c91c68e351ea0d49b26290778b000589499fe7caf3f7c0c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be79f098049e88383c2b01e80970d327e49ce04b82e6d9a705c1923397a631f0
MD5 1ca14f2d79a2669d4f0d8c89e5708e19
BLAKE2b-256 69188f84d07d931eee768fde5848a09b0d651a3116626b03c6b8d5bc6b8296bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbb2bcd5e48e39a3de9456359bb865a09141494318fab397f42b8fd7414ce6da
MD5 5c757fd37d807388e959359ddabe6a93
BLAKE2b-256 9053613c9bbec4ccbae9a61bce94bb67aa1b1ba01c60cf3a919fa6f6da80f9ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.0.0-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 992718f5352d0281e5ce60c79f0da666a618ff71dd20da9e919688fcfeb138fe
MD5 ee9fa4398151c1890de31d868308d756
BLAKE2b-256 1746f1f8086d997b57f2be5ff066c2879865ec5a8868b4b942d187330dfcbad4

See more details on using hashes here.

Provenance

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