Skip to main content

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

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.1.0.tar.gz (262.1 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.1.0-pp311-pypy311_pp73-win_amd64.whl (663.6 kB view details)

Uploaded PyPyWindows x86-64

pylmcf-1.1.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (563.3 kB view details)

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

pylmcf-1.1.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (534.1 kB view details)

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

pylmcf-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (536.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pylmcf-1.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (557.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pylmcf-1.1.0-cp315-cp315t-win_arm64.whl (836.7 kB view details)

Uploaded CPython 3.15tWindows ARM64

pylmcf-1.1.0-cp315-cp315t-win_amd64.whl (662.5 kB view details)

Uploaded CPython 3.15tWindows x86-64

pylmcf-1.1.0-cp315-cp315t-win32.whl (666.4 kB view details)

Uploaded CPython 3.15tWindows x86

pylmcf-1.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

pylmcf-1.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl (975.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

pylmcf-1.1.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (568.2 kB view details)

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

pylmcf-1.1.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (540.9 kB view details)

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

pylmcf-1.1.0-cp315-cp315t-macosx_11_0_arm64.whl (542.3 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

pylmcf-1.1.0-cp315-cp315t-macosx_10_15_x86_64.whl (563.6 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

pylmcf-1.1.0-cp315-cp315-win_arm64.whl (834.0 kB view details)

Uploaded CPython 3.15Windows ARM64

pylmcf-1.1.0-cp315-cp315-win_amd64.whl (660.4 kB view details)

Uploaded CPython 3.15Windows x86-64

pylmcf-1.1.0-cp315-cp315-win32.whl (664.7 kB view details)

Uploaded CPython 3.15Windows x86

pylmcf-1.1.0-cp315-cp315-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

pylmcf-1.1.0-cp315-cp315-musllinux_1_2_aarch64.whl (972.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

pylmcf-1.1.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (565.4 kB view details)

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

pylmcf-1.1.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (536.6 kB view details)

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

pylmcf-1.1.0-cp315-cp315-macosx_11_0_arm64.whl (540.2 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

pylmcf-1.1.0-cp315-cp315-macosx_10_15_x86_64.whl (561.4 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

pylmcf-1.1.0-cp314-cp314t-win_arm64.whl (836.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

pylmcf-1.1.0-cp314-cp314t-win_amd64.whl (662.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

pylmcf-1.1.0-cp314-cp314t-win32.whl (666.4 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pylmcf-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (975.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pylmcf-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (568.2 kB view details)

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

pylmcf-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (541.0 kB view details)

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

pylmcf-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl (542.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pylmcf-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (563.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pylmcf-1.1.0-cp314-cp314-win_arm64.whl (834.0 kB view details)

Uploaded CPython 3.14Windows ARM64

pylmcf-1.1.0-cp314-cp314-win_amd64.whl (660.4 kB view details)

Uploaded CPython 3.14Windows x86-64

pylmcf-1.1.0-cp314-cp314-win32.whl (664.7 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pylmcf-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (972.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pylmcf-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (565.4 kB view details)

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

pylmcf-1.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (536.6 kB view details)

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

pylmcf-1.1.0-cp314-cp314-macosx_11_0_arm64.whl (540.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pylmcf-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl (561.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pylmcf-1.1.0-cp313-cp313-win_arm64.whl (815.0 kB view details)

Uploaded CPython 3.13Windows ARM64

pylmcf-1.1.0-cp313-cp313-win_amd64.whl (649.2 kB view details)

Uploaded CPython 3.13Windows x86-64

pylmcf-1.1.0-cp313-cp313-win32.whl (655.1 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pylmcf-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (972.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pylmcf-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (565.3 kB view details)

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

pylmcf-1.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (536.4 kB view details)

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

pylmcf-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (540.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylmcf-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl (561.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pylmcf-1.1.0-cp312-cp312-win_arm64.whl (815.1 kB view details)

Uploaded CPython 3.12Windows ARM64

pylmcf-1.1.0-cp312-cp312-win_amd64.whl (649.4 kB view details)

Uploaded CPython 3.12Windows x86-64

pylmcf-1.1.0-cp312-cp312-win32.whl (655.1 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pylmcf-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (972.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pylmcf-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (565.4 kB view details)

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

pylmcf-1.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (536.4 kB view details)

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

pylmcf-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (540.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pylmcf-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl (561.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pylmcf-1.1.0-cp311-cp311-win_arm64.whl (815.7 kB view details)

Uploaded CPython 3.11Windows ARM64

pylmcf-1.1.0-cp311-cp311-win_amd64.whl (650.0 kB view details)

Uploaded CPython 3.11Windows x86-64

pylmcf-1.1.0-cp311-cp311-win32.whl (655.4 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pylmcf-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (973.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pylmcf-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (567.1 kB view details)

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

pylmcf-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (537.2 kB view details)

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

pylmcf-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (540.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pylmcf-1.1.0-cp311-cp311-macosx_10_13_x86_64.whl (561.8 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

pylmcf-1.1.0-cp310-cp310-win_amd64.whl (650.1 kB view details)

Uploaded CPython 3.10Windows x86-64

pylmcf-1.1.0-cp310-cp310-win32.whl (655.5 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pylmcf-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (973.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pylmcf-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (567.6 kB view details)

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

pylmcf-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (537.6 kB view details)

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

pylmcf-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (541.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pylmcf-1.1.0-cp310-cp310-macosx_10_13_x86_64.whl (562.0 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

pylmcf-1.1.0-cp39-cp39-win_amd64.whl (651.0 kB view details)

Uploaded CPython 3.9Windows x86-64

pylmcf-1.1.0-cp39-cp39-win32.whl (656.5 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pylmcf-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (973.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pylmcf-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (567.8 kB view details)

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

pylmcf-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (537.8 kB view details)

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

pylmcf-1.1.0-cp39-cp39-macosx_11_0_arm64.whl (541.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pylmcf-1.1.0-cp39-cp39-macosx_10_13_x86_64.whl (562.3 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: pylmcf-1.1.0.tar.gz
  • Upload date:
  • Size: 262.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0.tar.gz
Algorithm Hash digest
SHA256 9e19a63be77ee54ddd0908f9b3a6286d7d0f4f192e19aca67d853f9f6e4a03d1
MD5 84e42cf6b45796e2931ff8c191d9e452
BLAKE2b-256 e9ca6cc1c362a7960368a22ce86923c320ab348944e14a46c6518b6506cd2856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9df6c17c0d5a3a94769e922152d1e961d7d71f1c641f6b83726dfcbc97ce9fe0
MD5 8d27f537b3591419d692e1f047c0178a
BLAKE2b-256 1a564d35c614939992cede1450251174a8c7523b13b7b78840c9bb5e6905b1d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ded5f109a0897f5a29bb36f7cb6905149f04b126646d123ebce50e3f3eb6de48
MD5 568fdbefdcc51f3291d5a8e198eb5b67
BLAKE2b-256 b278a9693dfd8052014d9711d62def3d081bd5d5ad2f4472b331f23e91c250d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0c6c8b70bcb327df65488641c95a5f4798ed495b506015b6a87af0db7b31f03
MD5 f562ca69e8ea69d1b272fe87341d7fe6
BLAKE2b-256 13ade1c88b4897beb8992c1a05c71281a884762ddeaf8811287bef8ec8d41ef5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6966a8c49aaaee63fbc5b07a9088cd36ad549998017c5f489398a9cb5679721a
MD5 bc339aa91ced173c8847ab6094531548
BLAKE2b-256 946151fc22a3477e1600855c75eb715c721c484c2056240e4cd7dc5adb95d57a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0c8e7a1879eab2e0c0f11bb7d286663ae193d9da740bc500609dc0c55b3b8f83
MD5 dae181cdbfc37b22efd3ab3affa8dfe4
BLAKE2b-256 039694783a319fd7f01d6967954a1fbe80c44e2d39ce80703d24b1836d1fdc7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-1.1.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.1.0-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: pylmcf-1.1.0-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 836.7 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 6a22195ee0b920b39f28e72f0843bda0f8869f9b4cfe79acb0f9699f33a094f9
MD5 8795d29d9098cc7cc92d53a732c64845
BLAKE2b-256 ed7fa3fc282e0bfa9b98b73fa47a98fa6a527aa7dbc488a1269ae5ff404603c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-1.1.0-cp315-cp315t-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.1.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: pylmcf-1.1.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 662.5 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 c2ef17b1d8cd86225f7102d54d381a70c227b5a8942afd0691881ca4b04f7093
MD5 60d5796e2ed2408d393b10f85508aafd
BLAKE2b-256 7d35d8801991a475f3830d3f7d142c76fbea2762e23f348d7f215082d98fc3a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-1.1.0-cp315-cp315t-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.1.0-cp315-cp315t-win32.whl.

File metadata

  • Download URL: pylmcf-1.1.0-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 666.4 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 491a4fda7333b5a59ccff68cf44915a07bc4bd34c600d48ab99c247a00a1e612
MD5 dedad77ce37ff2b721f3653ff521cb19
BLAKE2b-256 178a802d8ab5652ae20c2a6ecb641e049fb19a3af4fa1034a8a1ccc805fffec2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-1.1.0-cp315-cp315t-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.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02110ed2e46f257561e5aa5b77827cb4e4f26200ecdabd9a4ddb960391a34a7d
MD5 03ba11767d24250b68b8ecb6d0184de2
BLAKE2b-256 ddc194b12fd0b54d4d3c610987050ab276126cb87b1677969df2152a588bc9c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-1.1.0-cp315-cp315t-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.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40f21219e4a9ccbca841e74dc3b28088ee1523535da3b41eef4284dcad561b7d
MD5 005b9ed2c2a0237ad6ecf3b810d888a2
BLAKE2b-256 95e8514b6ab5e32771f684b098a58912993b94b9b7666eb258f562bbb1a16382

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-1.1.0-cp315-cp315t-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.1.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d47f9c682fd5babb4f8084d4b05a1e08e81777a441f7ac7424f762421803298
MD5 72785a529cab526a688ea2cb0c2509b9
BLAKE2b-256 fd69ed4972868f168be4fdb1f605da355ccb5652f3ce92c0dae38285d38d0f0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-1.1.0-cp315-cp315t-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.1.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6d47b2999b67a543a6a9e9ea493487742ae84cecb80593a390b2812049fb4de
MD5 d44dc6da26aa62e629c5ed788f90f9f1
BLAKE2b-256 52f8a643f305b3ba31784a391a89fd7991fc797f7cf6668d83797837a41acdc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-1.1.0-cp315-cp315t-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.1.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c57cac8f0d388cc73da8ae6be37a3efa3b73ef851b8b90f538c5627fc7987c77
MD5 46efe77ea88b9cfb3df7ea3433a7fb2b
BLAKE2b-256 b6c3d3663b41a5aec8f424366e653c913b14c60f7138b6de5a4a18c631e3fe6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-1.1.0-cp315-cp315t-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.1.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dd2c1383791fdf4916244abea8beab978ca44057df42c05ce6a2ebf956042a67
MD5 f42c9e4ac28891d2ed6207c2eb7bd433
BLAKE2b-256 2627770fb331edd0f0764053dde91c8305b362892cb453218250389fefe3a18b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-1.1.0-cp315-cp315t-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.1.0-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: pylmcf-1.1.0-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 834.0 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 29672425205c078a361f4115f54124ee84b49481797f9e061f0068d5208f61ca
MD5 e40d62cfceb8532ee1a787739d8defec
BLAKE2b-256 19e483a1239a2a3a022066668d063fbc1a7d097d4f2f86b3f377c58ef94f32c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-1.1.0-cp315-cp315-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.1.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: pylmcf-1.1.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 660.4 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 e322769301ed4ca58783f5f95fdd4ddb22bed89c88e56291ae04148ad82202b8
MD5 e1b54c5951161407cfd1de58f17208b0
BLAKE2b-256 8ff24976984c535a985bdc1af438016fa6f313b9393e032d141be1ab6dc3de04

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-1.1.0-cp315-cp315-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.1.0-cp315-cp315-win32.whl.

File metadata

  • Download URL: pylmcf-1.1.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 664.7 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 6cc5d347d8a3006d5698335a9baa61979780fdbee606db06402ae8ec2d5b3ada
MD5 34a3fb6f935e009d25d0c32f56a58f2f
BLAKE2b-256 c230165ebbd30c27f57621048312c3974a104462b802a9c31438b52fb80c7d7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-1.1.0-cp315-cp315-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.1.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 757afebf1d96ea076c71b43d1d2aeb50f7765cf84bbed3ccecb1df65ffb1f3f2
MD5 258cf4783c9708d4db018b7b47e2844d
BLAKE2b-256 70af2da7282a6cd7ee7415aff9f71ffd053aad48aaa5d9ffa4e17dc5a7a23c9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-1.1.0-cp315-cp315-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.1.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da9e69e9e98512c169fc794ce019b715ba60f62b6e42284c99e3986398c270ac
MD5 acc0b8b2e4329faa4d0c63aca156d40c
BLAKE2b-256 25243fd20f76d707be51c433e6c39a79cdf873c0dee206933aaeb4030bbc0aa6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 886f601f6950c95dd1d6425d9ba461b350b31801b8f07db9f157e1b70f3cb41e
MD5 2ae77035a3572a7cee05f332a27c978b
BLAKE2b-256 9f0f54623c18f495d0bf2fefc3b314daee51c34ab206a1ec9c1ce86518626cd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe58bbaf134b6ada0cd803a8ca668a5e6fc87e57e79f2b82c4589d2f331acd12
MD5 9fcf0258078ba7f6670d5e3e9d08d238
BLAKE2b-256 b172bd24f9f2577d77041bcdab12ccd2b33ca7c3970875d2205c7d2deef5b4f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-1.1.0-cp315-cp315-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.1.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4b1cb7e8fe5dc7b41ad346ca96338ec72ea049d7a8dc19b87618c2caf853db3
MD5 50861b8f2c2680cec5795c5b65dcd1c6
BLAKE2b-256 cac0f29525189ec02e246fb9b223f2d0a31b39cb16af0bba34119e2c5dcbb23d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylmcf-1.1.0-cp315-cp315-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.1.0-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c4ea056e0ac2d0b0ed0c90a77efa290a38ac9c868471304eaa969d051a4a563d
MD5 dcd4d87fb277f5703bd55d0c1b5cfe16
BLAKE2b-256 b737ea357764e0d01e5051569b2c7192a6a6c44cf1e6346413f390d6b91e7e66

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 836.7 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 6169db894dc4edce7528847965806c37c03116a213aeefc41bea21992f43db40
MD5 a9c1e07c66ee5a1988106781a7115f33
BLAKE2b-256 3a19db99fb325f8c53fecc6e5b061c0b1264d45548d42c6a3c48e3748dcc19f9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9b0bf696faf566904cb797fbc41c57d6f3e95d101cfdcc828e0d7727f7f1dadf
MD5 b55c1ca4fba9b0be8911417434091fd5
BLAKE2b-256 e034a5ca7548a960c402e0ceba4978939423413bae4fdcf130e701ee994893c5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 666.4 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 3c4baf71fdf064585322b4d08997ae16d67e5079d85a971b2d0ba3118c9d2812
MD5 9d4561a30ca1e1da23137884939b1b05
BLAKE2b-256 6709b1269f05b89e3820753c1b2ffa8ff612063b850c23d0769267118ba0c4e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0aba2f0de705adbe9a89bb39060e8061feb5e8a15a011a6ce4b817b1d8de07c
MD5 02fad6bfb492f40c68db0f3df35a6008
BLAKE2b-256 2b61064ca633d6b20e190be9e2c670177a0c61443b543f8ae889e35e6c7ce5ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32f9c60bac69e360cf6205f0d34d401a1bd51ea98d54c35e825584a26c291f09
MD5 a4b4540aea9234d02f6f6105fea5e119
BLAKE2b-256 e8572f5512aac3b5363e45685da39939f528f6e92492e05f2918cf7b48e04808

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c90ecbb510757c99fb6fd2a6c7b61764fd86ffa19fbc723d8242578a9b72c0e6
MD5 30b76ba077b07818e71ede4542b613c7
BLAKE2b-256 058b858fdca85c12cc1039ce33f7e575c0115594a25ead94b295e456175678a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 38db7ff34c736a7ba905a10dd19c1b8d84263ae54450896ce785b2f79bafc03c
MD5 032901019999c6164c1752f1be54b155
BLAKE2b-256 0c269bb209c3b159842bbad098ee001bc98b19021ee47d5efaa923eb3dca08d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42b5024d6c71942e1940274777d1603f1c37d5455996961ad91633fa3fe48262
MD5 a60aa538cb019c66e98bc51030389e78
BLAKE2b-256 37c9686f67437a58f5684a33c4ee3f0061007e1f12900b0a722b0acede3aa058

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2dfdc45d8b9bbe67a47c125f0ab5298edb7ae7676ebf3cff81d69622e4249433
MD5 6b348d538f759094299cafccc488b478
BLAKE2b-256 127b4db186f9c3b8c11fd057be49c5d2e8ad617b2997029c7164c3a4d0ec8a39

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 834.0 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ab05e450cc55c236418da0c9324c8deaa81bb77de057c4dced9438460aeefe90
MD5 5d621193cb7e5bade14c4bd0fc36fe48
BLAKE2b-256 dab89ad5322c8425f7c0cfdb0aec5b0189a5aeb01762b6f06f3afcd0e00c9e2b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 660.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5a6757c634cf5089aec0589a09e1e4fe15238f5346ac0fc43e48b0fd2647e89c
MD5 c4a01462128965655fef3ca77f67de6a
BLAKE2b-256 c85d7de2f6b6514fc933e92e188791978a9b85fecfbad91c7f0328283aaaf454

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 664.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7e5fc363eec1748bf0cbe136262658edac2eedc9c52c23f3599bce45bfc2cbe8
MD5 c936e48bcc2edcf24bd0d3b61b39dd45
BLAKE2b-256 2ed41643a9228e1453f7517cab5f66bf4097e25509a6ca1cdf2e1f750936209d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87225c1b40642f28518120516467cf2cbe99467c2cbfc42d4191f78b7b9468ca
MD5 1d3b2c0deb58e30ee268dd1ad6881140
BLAKE2b-256 c7678de7dce21b8b89fdd39d2ca2b0d44465805173aa6118f77be05ef7eae054

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e826f5212bae0b32ccff27b01a37196c2d8968193103f0a9ed6e4e8ca5e8b24
MD5 aa3a04582b4024c00a9ac746593347b6
BLAKE2b-256 76374400112cb6191cca6af035e67ce18c08186110ab103f9b58b30f49128e99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6199a2968a67294cc5a4566439bc80e08d216c10b44a89995c6dfece105bb4d7
MD5 9ec386ebf62e3ea20f08d5430348cb7a
BLAKE2b-256 44f52b1b07593f8a16ba7c3c1cfe2ea62813e1b638579d4b870f6be077fd78ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 65b3a0935e832943de11a24ef68e11db2a2fe7ea083d6690fc03ea573d744ca7
MD5 6ee8501a9d674b4ce26794b1af7b9fdf
BLAKE2b-256 125802fd63028436ae366345152539122057d780d70ffe23865d512727844bda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af2316cfdef2e729b82b5da7781a945e4339f86d2f310f512fceca1eec63ceda
MD5 08bac4dfab3d0935f17ca37acd3e6281
BLAKE2b-256 8bb8bdc936359d3a7ac6d2f76c3a79acd81f87f85fc5993bad51d2a0c4f75912

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4897b5de24010fdfa61fadc8724fdbbfaa83c2dfd785ebf9dcb3533bbd2754ce
MD5 3b1eb423cc12a752dd0fc3922fa07511
BLAKE2b-256 80d9319465764504d036bd30dddb8326787aac92fff1a005b308cf7b380b949e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 815.0 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 947aff7d2c7f6b13dd3c7b1d1142cb42571a97e82c7db4c4df27b57f97412a90
MD5 8874f245aa6648d0f9b33c57848a6f83
BLAKE2b-256 5f4eeae0483c3e018320af33dd57717570c90af38ecb27f31b6e9bcecac9bf94

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 649.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2751015d6ecb816bd60986c31ce4c15b8bc5548290d7296f30ef84f5d9495db1
MD5 734e09fefe98ca055e66465b2bf89814
BLAKE2b-256 ac68358bb71c69e1ac42ffaa279fbb2eada90d40868fb4001ab40a135c816475

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 655.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 94d4775e43ec9adabd189ac58121d8d31cfa68262d55da2b1bd0feeed7066847
MD5 c3b978de561d2027e0b91beb13ea6f65
BLAKE2b-256 fb8dfcad515d8f028f5dccc218dedd0104880bffcba9b65a5b24ac66c01a0514

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 45d15618b6cfafe92ac0ac1992224dca7e43dad036070ea735380deb855e7052
MD5 552c8d75c39a4ee4e1431db044398453
BLAKE2b-256 91763e0c6c4458066077f6d90f3e69516812ad16df211c06b3dba6216e9df9f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13d8b63f519e83ef4f7868a5c29d2e690aa88e38013087c63ccf2c2553c1e3aa
MD5 011750f6bcfe5e8d33a7fac63cd9ce80
BLAKE2b-256 c85218dfde10bca5d5906417878098cc4b516e590d2d3aef647c70f19ed9098f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a9a3e5cb5579ff26253bc0140dc3848c4d3af25e015d61f5b54fb83169fc2bf
MD5 5a513a1d44ce7003647e6e5099991e24
BLAKE2b-256 0d7a80a970492bf18b1835cdec9e2e9d1bff3f1aec697fd1a3f6887345ffb21d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ed1d568308f764450a98fc9bd24f8bfec0f74b7bc373a0cce8981698f0e76a4
MD5 14001659cd2017f3647e916e0a31539a
BLAKE2b-256 7e2ef03e9c7d9488baaa1d65bf78f0a332459e87ae72c42cfd18699c991c2116

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85c583957a90cbd34251e6de3a4680af0870ce9a9c8da7eb5f14e38c01494d2d
MD5 c02611841b8956e5a680699b5e169831
BLAKE2b-256 ed6254e532dfbdbfc20741b5cfb7c56891b92a5f1709024786b5ca09871996be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1a72683c33d72efb48cb504bf3e60d9c2bd428970106d43659f869f77dd6d016
MD5 d327ba8c230ecc8476830e0510ce05ef
BLAKE2b-256 a1e10f107104731a017af32bef950f72aa2bbdf59b04a7b988498bbff4bc6ff5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 815.1 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e66f7d30477c318c408ba59c9135e9763a2d2f9a39ea412518aa38a98a3ee89f
MD5 f79f2cdf8f04477975c00854e428da0b
BLAKE2b-256 86edaa73f69acf71c05e55ed115a331f1a07b3dee2c3e31ddbc409d392425f47

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 649.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7a0cc9abfe508e6a9725d46b125d64a68d93f8243e264dcad78c007771a2ec0d
MD5 f9a3cc6ccb082ef2cbd5acd670ccfe04
BLAKE2b-256 39f5cb244a1423f8895767a926d1d769616a7b74c0067e3e07be4a6577ae06ef

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 655.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 85816d753ab506595b6ea974343bdc09e528ef79a4f36eec9099dfe6af90fe8a
MD5 454ffb1f0d74cc79377c74d9d13b5c67
BLAKE2b-256 eba1c3d54aed29506b1620b31353416d46d65a67579add40f47ae3c30910db16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0791fc7bcc79e19fc5185737ed7a8d5a418d5557d63bd67716fedc0a5ce51575
MD5 a3b5be817107f638cc505c0d1153caf7
BLAKE2b-256 bc9c931758e5558b0d9ec1a2fb748f22496445451f762a673ca155f8d0cc2a87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e68f008a031da292f801599187060f078cd29ad89b6fbb24c6473df819b468e3
MD5 0378572d0d724139a8f766bd63dca207
BLAKE2b-256 1a923043d576ca986d1130eca6a5869a52dacf0a4c84145be2ea74e32d13c3aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b3cd38749e67f57f2550a541401b68ffc9118cd57c4448f0242b114bb6db944
MD5 ec436dcd642f301cf5c6d26fcf465b0c
BLAKE2b-256 3a434dfcde2d90549cb10e7cf301d652bec8be941eeb8f4ae9e8dc32e932f95d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 98e79587c82a3dd420a96a77a51654d70b0fb6923002a7033ab42399ce8f0a9b
MD5 a8aefae5c5c5298cd3f622e547acda3a
BLAKE2b-256 8058c48afc569bac185697de04662bceba41292c354f630b84957c84c2d2b614

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35d32ba7f364a5047bc07c065c02f4125baf183b13fd28e5253b32af56348794
MD5 d1e09bdaef7bf54f5edb918e99f0ca0a
BLAKE2b-256 f01756f18f6aafc88e54e41d6d85080a9e74a5ab3508f71a468e9c71f2d27f64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 475569f98bf61f5c42fce26807d7b5a31bc31a5529a5e2537aeebcb2555fc175
MD5 8a8cc985a8230dd84781be4310555a65
BLAKE2b-256 3e87a8737f8ea7c2f98c76d6c43069640dea2d1f8b82952c58603d61a69370f7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 815.7 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ec76ccb10b527b1287bd2a47e65f7235252686628ba2c458cedb8274e85b4628
MD5 06491d313df05b98a0ff18af4dc436f1
BLAKE2b-256 6a755b0aaa55148b4f5fcad40d36912b050f5fdf5a82f13657bf5771f6c95f0a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 650.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e494e6b77c37ea46349b62f110d89fb67957f77e0dae1cf6ae481da9ffe18b9d
MD5 947cfebc66119f32001e770c44a2b288
BLAKE2b-256 b344f1d49d88633ef3416161d1acf1efbebdf7d6d10dc067a831434178e9ae80

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 655.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 50d1f5723bcf3d361d43be3b71ccb5028c0369deaf170d6e6718b5b906ef273b
MD5 3a8b48ad02918af31413406b905397ae
BLAKE2b-256 3d246e9f99dc5fbc5a185b05d91828bb6dd1866af3536b4e0ae65dec7eead5ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d17b856056722823443b1af2f26ec1cb45b90ddf49dd032712304936fb72532f
MD5 f5b74c5a8a30352a198d3ed10533944a
BLAKE2b-256 ee0664d86c6181964dfe68e29dbcde53e73a772905f5f0be3623f7f288681c07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50cab1db95751536d06b0511ebc404c9dabadf484ad178aff593810cdf76938a
MD5 829a30a10cf01df37138d0d7a501671b
BLAKE2b-256 83a5c45243352813229109341202904a2b4b0e6031051a1ed02a48e9339e673d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3e813431405b2da1fbd00c8d80f882a6e0e63a3104556dd9658e0f4a65321f4
MD5 14e3ba7a124f525884b2190427342395
BLAKE2b-256 9f630f6dcd38047b57f3d64702aa86ee3ee3614b0e7b875dd3ad178965391e4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f1d520f36d1d56467fd71a4e7aaccc2fbbf5b78f2e892604403c93c6b52e984
MD5 ee57279230c0e335e2038a80440605bb
BLAKE2b-256 197c0c227ba5fbeb8f8dcb8b1597f85e089b717a52f54ba76eb57528f3efc6d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f292d1d481b39ce8f6e3a66e259de3972bf3a831f956359565a94cf236e9b6b2
MD5 f3e03bd15c9c9ddc559f83f03ece0038
BLAKE2b-256 e6abb6c89c876d18272cd73f10f910e2f24f79fe6a7b76a79959c50e82f205ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 45b933e90c19404fb1ed528ce353cdaf606044f25338ab05a15dd78a62cc4109
MD5 211a95006772dda0beee943069439596
BLAKE2b-256 df34a7e10e3940999eae7a5bd2db9a6139493d5602122b76389f6ac498a52b4c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 650.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c9b15956abd9801b9ae62d31721627ed6aa393e444dc363515e4ef317c571557
MD5 9a332d7995a6ed7860201d9ed9e7fdcf
BLAKE2b-256 23c76688972dc7ef71b622051e6d9f2bb60db9f3b03e9154cc8e96e583f2eb94

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 655.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a490dbdb4d60f9a31463e458d2bb6319db81d4aa78ff8232d9df69499cbd668a
MD5 bbcf665f8ef2f7db82c06c351e2e092b
BLAKE2b-256 e472ecf0264f7bc1781785c6c0be8e6b129caf451fb4fe578eabffb9054147c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3cdf7f6ead843e24e8becc5b1bdf410447651dab8d2be188920fce696a26413
MD5 ad9bd891eed9ef548e6ebcf9166c3b07
BLAKE2b-256 6783d78743c36e37f7a1de1480a976d1ff7da1c9064d4e0438a9c3aae7f06784

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a557e8c9e003fee2272c1c47358e0036883c8b4752b826f03c4e2d1b546e88fd
MD5 a1d3ebef59987a8d635388a82957bde1
BLAKE2b-256 126b4dec2f9a6b3c18ff6e3aeeb95d5ee63fd4207f3e97b4afff900795ee6fbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35b2c80637a7a386516f17d38d11a82cee4a8751e0f99fb8c730ec38c086d048
MD5 5770131a5bac68dff65d475a40a766f9
BLAKE2b-256 debd9f9b67533d81b9cfd38a762100fa8ac384a3db55762142f322a9d4ea534f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6a0ae85ebbd16913bd436694dd1d226c597bb58e1fef7ee6ac1c5e274809190
MD5 bfa103a1486ebf64da47edf857c6152f
BLAKE2b-256 6203cd90c03a2f1e1500d92d20362cf7474a17482f9ae1c893890b7100041e81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08bba8470b8f2a091081c335dcd856831eb8c51c1136792a4cf2831ac7d4f8ba
MD5 4961e2a2aadd66cdd4f58a23d5c8f89c
BLAKE2b-256 d10516db0a859919faad9f360e4f0ea386634b642c78b80a0af458ad6db60394

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 005f7ee4aab67951c2a25b275646ffe6adc15668aa05bfe5b94359aa685cccd9
MD5 166fd35cf3a17dd090bb3eccaee5c2a9
BLAKE2b-256 132d5621bbee13b685bbb4f93702d2727f29ba73ec86520db5bed44cef047a60

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 651.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ca1bbcf458a25e4e06496f64af9f5cff2e69d12aff104c4ad3d92e4b9bad862a
MD5 7620227fef296dd5b447f762fb5f77d2
BLAKE2b-256 65795b48fba51614009ead65d6cb7b05d961db554bc3db54fe6a2af6b2667ff1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-1.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 656.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylmcf-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9d510382f879c0c510fbf03630a3a8bbd01171a005e7f6678bce6699c42c397f
MD5 87f604280d59402b92973ee41d609e67
BLAKE2b-256 ae0e672af8826e6e5318eca3bb75a10f10f81a994c6b3bdcbe05679d6ac2b7af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e20432290af182ed0fe00e6cf6b35477cefda656b3fd16a3d58d3abef100c8e3
MD5 cb440b7dbb7e86cdf0c7c637f6725146
BLAKE2b-256 992a57054f8f18579f2a0370406dbc815f99f83717bafa7e337e93d21280b9c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f1667332d6a63e3fb867daa6f39e67b4f844f37fc89bf6e7638435701185f0d
MD5 7a45a6a8e4cb9bfb6a99dfe8382d20d2
BLAKE2b-256 b66547a1780c01c94986ada6ed710561d111208a1634e6e6d203ee3f3d41bf6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f92a2ebd3602a662f7bf4226602cf37f01855dcd1d0ae6de98de392fbfb248ac
MD5 7321215da013eeb114548dc9fb7f97eb
BLAKE2b-256 ccbcb46ed9f7a25cb246a43709be0c7b39103caca6cde593c928a62fd430ef17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e64f9af232c2c80488e43ef23e2365344260564ed75c3a46fadefd70f47be9b2
MD5 d8362bad4725b7926b6435febf7cb227
BLAKE2b-256 18f5785d68ddd998ec6a25535e43aaa0a0343bce0a484066ea804fed248d5776

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21033117f8ba0f15b607a8cf5800023a4171e84ac179361751ca9924a82519b8
MD5 802c47707c8cc5ee7ecd5871a14d9ce4
BLAKE2b-256 283ac1121bbe9f823a4f22132db0f0cc13b73d4e77f9f8e4a740a4475b8e0c92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-1.1.0-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b85f97027b74e4784b1b0b25d7ae1610c70b1c062d526eb074c6d45395311889
MD5 b5587fa75ae8e9d378d96aa4da50f23b
BLAKE2b-256 2e7996a42f35cf1eafea6a7cb94ff134fbcdeda7ff2029509b4d9fe85a0e8704

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

1.1.0 This release

85 files

1.0.0

67 files

0.9.14

67 files

0.9.13

67 files

0.9.12

67 files

0.9.11

67 files

0.9.10

67 files

0.9.9

67 files

0.9.8

67 files

0.9.7

67 files

0.9.6

67 files

0.9.5

67 files

0.9.4

67 files

0.9.3

74 files

0.9.2

72 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page