Skip to main content

Python bindings for Network Simplex algorithm from LEMON library

Project description

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

Overview

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

Features

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

Installation

pip install pylmcf

Usage

import numpy as np
import pylmcf

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

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

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

G.show()

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

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

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

Requirements

  • Python 3.7+

Licence

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

References

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pylmcf-0.9.6.tar.gz (64.9 kB view details)

Uploaded Source

Built Distributions

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

pylmcf-0.9.6-pp311-pypy311_pp73-win_amd64.whl (175.9 kB view details)

Uploaded PyPyWindows x86-64

pylmcf-0.9.6-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (213.6 kB view details)

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

pylmcf-0.9.6-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (204.3 kB view details)

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

pylmcf-0.9.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl (166.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pylmcf-0.9.6-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (179.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pylmcf-0.9.6-cp314-cp314t-win_arm64.whl (168.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

pylmcf-0.9.6-cp314-cp314t-win_amd64.whl (183.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

pylmcf-0.9.6-cp314-cp314t-win32.whl (175.4 kB view details)

Uploaded CPython 3.14tWindows x86

pylmcf-0.9.6-cp314-cp314t-musllinux_1_2_x86_64.whl (669.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pylmcf-0.9.6-cp314-cp314t-musllinux_1_2_aarch64.whl (642.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pylmcf-0.9.6-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (218.8 kB view details)

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

pylmcf-0.9.6-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (208.7 kB view details)

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

pylmcf-0.9.6-cp314-cp314t-macosx_11_0_arm64.whl (171.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pylmcf-0.9.6-cp314-cp314t-macosx_10_15_x86_64.whl (184.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pylmcf-0.9.6-cp314-cp314-win_arm64.whl (165.7 kB view details)

Uploaded CPython 3.14Windows ARM64

pylmcf-0.9.6-cp314-cp314-win_amd64.whl (180.4 kB view details)

Uploaded CPython 3.14Windows x86-64

pylmcf-0.9.6-cp314-cp314-win32.whl (172.0 kB view details)

Uploaded CPython 3.14Windows x86

pylmcf-0.9.6-cp314-cp314-musllinux_1_2_x86_64.whl (665.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pylmcf-0.9.6-cp314-cp314-musllinux_1_2_aarch64.whl (639.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pylmcf-0.9.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (215.8 kB view details)

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

pylmcf-0.9.6-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (206.2 kB view details)

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

pylmcf-0.9.6-cp314-cp314-macosx_11_0_arm64.whl (168.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pylmcf-0.9.6-cp314-cp314-macosx_10_15_x86_64.whl (182.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pylmcf-0.9.6-cp313-cp313-win_arm64.whl (163.2 kB view details)

Uploaded CPython 3.13Windows ARM64

pylmcf-0.9.6-cp313-cp313-win_amd64.whl (177.3 kB view details)

Uploaded CPython 3.13Windows x86-64

pylmcf-0.9.6-cp313-cp313-win32.whl (169.8 kB view details)

Uploaded CPython 3.13Windows x86

pylmcf-0.9.6-cp313-cp313-musllinux_1_2_x86_64.whl (665.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pylmcf-0.9.6-cp313-cp313-musllinux_1_2_aarch64.whl (639.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pylmcf-0.9.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (215.8 kB view details)

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

pylmcf-0.9.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (205.8 kB view details)

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

pylmcf-0.9.6-cp313-cp313-macosx_11_0_arm64.whl (168.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylmcf-0.9.6-cp313-cp313-macosx_10_13_x86_64.whl (182.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pylmcf-0.9.6-cp312-cp312-win_arm64.whl (163.3 kB view details)

Uploaded CPython 3.12Windows ARM64

pylmcf-0.9.6-cp312-cp312-win_amd64.whl (177.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pylmcf-0.9.6-cp312-cp312-win32.whl (169.9 kB view details)

Uploaded CPython 3.12Windows x86

pylmcf-0.9.6-cp312-cp312-musllinux_1_2_x86_64.whl (665.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pylmcf-0.9.6-cp312-cp312-musllinux_1_2_aarch64.whl (639.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pylmcf-0.9.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (215.9 kB view details)

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

pylmcf-0.9.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (206.2 kB view details)

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

pylmcf-0.9.6-cp312-cp312-macosx_11_0_arm64.whl (168.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pylmcf-0.9.6-cp312-cp312-macosx_10_13_x86_64.whl (182.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pylmcf-0.9.6-cp311-cp311-win_arm64.whl (164.2 kB view details)

Uploaded CPython 3.11Windows ARM64

pylmcf-0.9.6-cp311-cp311-win_amd64.whl (178.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pylmcf-0.9.6-cp311-cp311-win32.whl (170.4 kB view details)

Uploaded CPython 3.11Windows x86

pylmcf-0.9.6-cp311-cp311-musllinux_1_2_x86_64.whl (667.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pylmcf-0.9.6-cp311-cp311-musllinux_1_2_aarch64.whl (640.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pylmcf-0.9.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (217.1 kB view details)

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

pylmcf-0.9.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (207.1 kB view details)

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

pylmcf-0.9.6-cp311-cp311-macosx_11_0_arm64.whl (169.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pylmcf-0.9.6-cp311-cp311-macosx_10_13_x86_64.whl (183.0 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

pylmcf-0.9.6-cp310-cp310-win_amd64.whl (178.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pylmcf-0.9.6-cp310-cp310-win32.whl (170.6 kB view details)

Uploaded CPython 3.10Windows x86

pylmcf-0.9.6-cp310-cp310-musllinux_1_2_x86_64.whl (667.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pylmcf-0.9.6-cp310-cp310-musllinux_1_2_aarch64.whl (640.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pylmcf-0.9.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (217.4 kB view details)

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

pylmcf-0.9.6-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (207.3 kB view details)

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

pylmcf-0.9.6-cp310-cp310-macosx_11_0_arm64.whl (170.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pylmcf-0.9.6-cp310-cp310-macosx_10_13_x86_64.whl (183.2 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

pylmcf-0.9.6-cp39-cp39-win_amd64.whl (178.8 kB view details)

Uploaded CPython 3.9Windows x86-64

pylmcf-0.9.6-cp39-cp39-win32.whl (171.0 kB view details)

Uploaded CPython 3.9Windows x86

pylmcf-0.9.6-cp39-cp39-musllinux_1_2_x86_64.whl (667.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pylmcf-0.9.6-cp39-cp39-musllinux_1_2_aarch64.whl (640.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pylmcf-0.9.6-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (217.6 kB view details)

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

pylmcf-0.9.6-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (207.4 kB view details)

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

pylmcf-0.9.6-cp39-cp39-macosx_11_0_arm64.whl (170.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pylmcf-0.9.6-cp39-cp39-macosx_10_13_x86_64.whl (183.4 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.6.tar.gz
Algorithm Hash digest
SHA256 d4fd6529f6ea42188a2050282d011206f76c77302f1b0a50cf20959ccd909f47
MD5 cfdd1022c15d0bace9f4bcfe496be8da
BLAKE2b-256 aeffaa3735a9fcd96a0acd6f5fdab3e065b6ddf3b0ad8e783a171d3564165c1d

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a58105f965436630e0215e9e74d00a96fcb443ca774f07eebd6bc4911d849506
MD5 821b8d0c40e6b5980af68bd0a7bc1842
BLAKE2b-256 5f520ce90e51dceab54af5e878225ce8d90087521041a620722f26e0e1094492

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50812d71c9ee0e307541ba229cfa1f375c27107662907c730988e031289becc7
MD5 e23e7aec67e9b807ee049a97c7447bbc
BLAKE2b-256 82ff93aed1e407e837575f2fdfcaedf68c318afe4234ee2d2f75b4c105b40113

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a6d809df67faeb3ba2665b5e464cc5de8d2596f66c0fb691389850781d77348
MD5 02fc269f359ccdcbd1c762415658e373
BLAKE2b-256 12a6c5184b7b3d92bcc07911a15519dc83867a5f7558b52e53591ae6854c6a21

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04b70d28d348e795ca82c527d64878ed9e67f9914b1dd4cc2228432a6ad0ff27
MD5 a50d5d7107a1a5b041e88e2631eafde8
BLAKE2b-256 8eeb4895d48bbd42cc3a6d7a7901f836a2628ceaf9954f5c389b98e07a0a2e7f

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3431340947a7bb85d84de8a5571665119d294d3f5e2fb0342159f64afe65f192
MD5 faeb597188bb2d6e312992a4b178607f
BLAKE2b-256 df0332936be55ff687a2d354f4b30ff6155fccaf26d8b3ead5213fa6ecdb983a

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 343a3cc54691f59b7f98374c0d938493beed8a0378818c7a9844e9731ce18f27
MD5 e4ad472c1df47087ff286c92d722761e
BLAKE2b-256 b06c79c1e01d0795a97c129193f6a460f93069d284205474e1f268817049d721

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.6-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3a00e0bd482ff148b5cb376e4fb271d67d90dac5e7412f0455eb2dce914601b9
MD5 4b735fc1ed67ac653d93d4257404f9f0
BLAKE2b-256 f6be4ae3e7ee7d31d5fc58b5596f4b38e0c8e0b5f1b6ff1652fa9d0823c5ef0d

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.6-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d1dd65257a8a52ffbdb6237d1d85dee486f6cebb15b35ec9195c0b4278bf6b98
MD5 4065e7c5a7786f5ed565252b835198b2
BLAKE2b-256 b907a91485c48cabe544a48ee369f754f3f1ffeb25bdde0ec9756d0954935e4a

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2cdab97af1ac4154555dc9ac076ba765544074b0237304e509a5802da4d2882
MD5 2c3ed4adefec022188e40d23429e30be
BLAKE2b-256 d558d0b74d9595cced39cbc0fd98581bf666daa77b98bf5ab3e7d95aa72aa1c7

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5bd5ba9edc9a1f3338014b8605da3f4c6855abb70f235942908480faa405769
MD5 388ab5c061a7532215ec23dbd541d43c
BLAKE2b-256 cc7184ab0c0554522909c2b9b29f33c1029438b90399863849219ab8a824dd8e

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d35ca29851b0b860b084789e8cead731ecc288657d887de0e6323b7f774f798a
MD5 df75d71997bce0da7fac7c2ad8887547
BLAKE2b-256 6edc3a217a5694cb1013b7827c36f8d989feb96209f14dc96106ee3bbebc5205

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a098783b60337ed2776a3a93c4741222942ae5e9d979f4b21b46e7d68b42830
MD5 f43ad78a721260c0683d4f526bbbfb2c
BLAKE2b-256 fc01e42e3d5dd8191973ae3520664683e597b65a43a893e6d39ba6abec6d7c72

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7340b22ce1de1993e20ea5ffe62b73eaa387a84e3ff2d0de2fbb4148449317ca
MD5 1e00a34120f52d34d3e73b6f6955d6ce
BLAKE2b-256 0e7dd86f0a755718323f7a87a629602067ff1211e8ec66250e1815a1abafbf9f

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 def7fb0d3789cbb4304066844613fe95371c128a469967444264e1a0a9d91a12
MD5 47ac151d78f1f9d61fd48e22046e2fea
BLAKE2b-256 6adf65785282b4f66cc3c52d15af043ebe9140b2383451f806100fa505ff68e4

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a21332c2517625cd9e628a88f73074ffa395455553e3a132ffc4751dd3b9bded
MD5 fce84057499d866f800399c8644dc80b
BLAKE2b-256 a14921d671135f97632d2beccc8d0e111a0821c7254202fdf8e0dfeb48b747b3

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.6-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 77650c07a615561bfd36d734130e78d057a0ba0de6a8793e7b5356370f73865e
MD5 99630fdbb7a4904f49128d5e523dad93
BLAKE2b-256 a909c21eeb8907f1d3701816aeac7d88c17a5cd7d60939b5bb0da16b0846f664

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

Details for the file pylmcf-0.9.6-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 53bd52d5dc29a8b25932aa940031c10f1976ff0e14197065df5b6ad2713e45df
MD5 018fcf59c940f3fcbfd12a4f552bcbd5
BLAKE2b-256 d96e48d485c318c12dc2ebf0ad772313a55573abcf40fea908f2769e4fc38e4a

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5171ca69b7c2e9441895e85ad4c68e937b7a140065c99994c7b27cb834e550d5
MD5 53343bf896613cbce94078a59ab550d2
BLAKE2b-256 5cbe4c2eb1ed29c36ee75620f7aba1256f626ee0fcb5f42c83e4a250fcd74efc

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e49e16dcbec7565000866b3f91bb0976960183ffa627d07957580e7def45d8d
MD5 0af0481e90dd7a866250953aa303be8b
BLAKE2b-256 c904d786f59516baf1c0dd1b4270de187fd33a8a8e1a2c48bd4c873012731144

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f83aa0ea4464947d27fc59d13ec40a636efd36a77880f591e96b06666b193a7
MD5 41d797f8350933f46f1bcef79e27e55d
BLAKE2b-256 e48adc8fc6ffa612bf93a4fb7afdd622926892a08d4f8c8cc5fd9c16fa4ba8d9

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94c27a8ce8b64aca33a7f2402306e594f54c1885c3e867d9218836c4bbdd3b9d
MD5 8e1bc316db0cdb04f195f1a9ffb8a0d3
BLAKE2b-256 354e6debc1b3197d3731ec88c791ef754a71c19e2b06b2e6d5190f4f8b931adf

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c56c116df48c4fcd79710cab3aab9fde59432b5d12107e88383a9d7b639b9973
MD5 02ef0f96875145aba3c34dfb85c6fa16
BLAKE2b-256 64a256fcdc004d4b381b0fe910a359640ce05cab251bab5cb461f59bb74eda49

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9c5b341bbc565a2abe327f0e0d7736fa027247b30f6748b1cea45c41b29ae04b
MD5 f9b8b8cb75b64a529f4e8c70ac00a39e
BLAKE2b-256 42a9cdbdf177c7ec9855685c4d3be9c0097b9ed869feb1bc01468c707c57a6cd

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 42f25c940b48b4e6d9734955fc44ab538e68f9c8412f259358f609057d55823c
MD5 c889e4854989cd7fd6b03f915dea42bb
BLAKE2b-256 1e1779eeec04a46772c2c888a41b94faa302db96d2cf36325b8273bc3d17f00e

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9be3adab5c2f4dc34b21cdb3ec1552d6c58c97707eaea90a1eea6ec1b07e5c26
MD5 d5d50564c610fbd152db4f4f3b9dbc83
BLAKE2b-256 4b311ecda4ebcff82b69e98f8e45acefc703ee58c8697368708719276b15bf72

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d3a5b2d459fa74aa84ff7bb5f07ae623caa3e7e210db2f8fe109754a28e4d80d
MD5 1e23cf9128e5d72b9c89d26a4b823b22
BLAKE2b-256 79736c04ce319570600db7838f07e020d98bd69423547a723d042225f30099c5

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b48dd7e4f8e04c6be4ed72c1704f680bb9c3d4eaaae663c28651fa086e582b22
MD5 e1b118e5978360992ddd49583dc56166
BLAKE2b-256 2fd5bd8382cc58412d48ddf686a2f75127b7ef7c57cab93a79e1565b49b41ee8

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39edf9a1b04acaffa02aac957de87cd155e79a6bf93e8a1c3f0eccee95ebb082
MD5 3cdb83487b120e383f2e46d48aa581e9
BLAKE2b-256 e7ca4969da658691e2e666798de61c5ab0f6593b73f6cf6022bb548cf4db3c2f

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 155f0654056fa583234449be45f5a8e93ebf654295425590543c1d0b7769768c
MD5 1ed79eecfcbfc81c96f96e9f812b0625
BLAKE2b-256 45cbd637fafe381ce2c4a7dd57273acdabe65e90efe59a0e3e71f2336645e023

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 faa53f91dd4e4271c5993486d8ac061eaab1530efb0883765ccc7b94125a7782
MD5 558c7f8c727c5866136583340328c267
BLAKE2b-256 022e35fd02a33da1806b6717a4d46b5817cb9e584b0021c2ebcdb8bc48f33198

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e7ba87062b231911bb538c76bebe68abadee72747f076bc1cb23f93599038cb
MD5 50f53529e6cf0940c6331d1ee721f875
BLAKE2b-256 cc086e1023cbc757763be9f9bb5a1105b4fd410663309f6b6b55c04709b2c686

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a7e339dea3a6193c2a6c5929f9be2bfb566946cb22b66d9728f1f941a6a691dd
MD5 cc3aa7084f7c7fbedaddee709c1d4a37
BLAKE2b-256 1d2b2e38c7b4fe10d87fc27b1654be0276da4e258423205886d3584729d5f76a

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cffd633fa46844f216fe655a26ee1ac135cf974d0bbb4dd31a470eba2ee041f9
MD5 468314aae079dd1ace2a771fb99b5d9e
BLAKE2b-256 9e91f55104fc93fa5512597ded60dd852696e5f5fc9f7b43c016c00c069407c1

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c1445d49a395c3afd9a526e26cb858cc579d7497f7b301b9c471b542eb1431e4
MD5 54ba4647a85d8a7dadb4984f1b4ad000
BLAKE2b-256 a73a76a3697e01f30073dc9e6b294cde35ec897d39a27a47c0e446da5800f25c

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 31d6a8582938ca3f63f3016a83152ccc2b4eacc238fa450c0da2eb0413424814
MD5 0e208f5f763303116059f669df8695dd
BLAKE2b-256 168350afc089eba4fc1cf0e5cdf2d1f5bf2704ca3c22b176a07f14ebcc3f7382

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 845b1bc32eabe9849009691448377ecdf80c3a3a204396841cfd2bc347b285a4
MD5 cdc10e87038b0b2c49afb3b1eb567743
BLAKE2b-256 27ccb7534e5fa0fbb8f4b2577b8b0169b941a2091eed17a8dd36c66bf67f1e73

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae59c3216d82d34f1d0ded1307c4faebfecd16c9922dbb313311d83ed42c7431
MD5 adbe6df7c1fb8ed17872c54d2abc21a3
BLAKE2b-256 c9db6b3d47fee536ea65f10dc837b7248069c89a8a35a73642b4122a515db5b4

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1926ca2a3c902563971bf757d096fb2fd05dadd5c1367446905e141c053c42a
MD5 6e0d1ae7df78e0a1e0e5f02b09078f30
BLAKE2b-256 b84aac8055dbc02af79b3628f93e49fbf945217cc2b4d24227fb8647e73dbfb3

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 86bc45fec92bbfb9b899a389eef94500ced45c3142c9e47b31df84ab2487e9d7
MD5 6512851552ef3152a6df02ad515fefe3
BLAKE2b-256 59af042b4a1c3ce474fce9172bb14fa9cd02ef8958cc4ce2c858fd5db7069a15

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b1ff7b127c83f176ae5ce84b26509ac0914688f88837839dc28bc26707c19b9
MD5 9ee5e0d6c5c29b287bc5dc89a6132a61
BLAKE2b-256 62276c7c3226bd972aaf785fe7969d789eff4f7839295575721d00f07290616c

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 48b3560678bdf655694bf976991ec0fe3a626bfa6f0398ee187f276ba04080a9
MD5 b8d5d1dc116ea6767a390c810e5ad03a
BLAKE2b-256 280fa880ab17d32011ba9130464ab26f30cefdff892d03635b1e5f9ab5e2676d

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 348df848fd6fb81635848389501f252e69a1aa12de9a48320309056425c75d2b
MD5 be45a51ed87c2cb088fcb91fcd129ae7
BLAKE2b-256 66dcb04bf331480300fb6fc2bcb3a65e0c47119caee72a6db60b9375a3832251

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bba7d181de1520a2ae922bfc6f9e2ae6d8bce3bd935fd55c402b1d7b655e0583
MD5 22fc610dc135ec7f8090da12baa2d47b
BLAKE2b-256 9d5ec9e7548d846b6b698bc42ad3074337aa26245e2bb3d0ab50466af460959c

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e23c2b08a0e06d85c0ce009916521fe15a0b8cb48ec7de44bf4dbe2be1a4c592
MD5 769ad3dacd4c0802b6e62a857ae635ab
BLAKE2b-256 9b3c6b4dd2f5c7ae0d28562a78db43bb3b6f3fa8c339b7a751381ea04ba484e2

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70e0758ddca7c78b9f3c2e94a957621cfecfc1ecdf869aa61d68853ce651b506
MD5 af6c8936554fa9bd1d9f6bf1f48e81d0
BLAKE2b-256 b1e297daace46bb5d3b27917d84ae7492b639e542e90a19d8e2ae54d8f369888

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7223026d3b4d3d942779961cb469935e7054926d40b77cedeaa5e8d287fca042
MD5 3b4a24b4403327d7228534f983435144
BLAKE2b-256 a8ddad4027e848b97f12a535b24b3ecf7866fcf3c70e8edbd12fbb121f600d0b

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1dab4de59f3db70162cc2deb0cd422d6b8ce7eebc018aa3820600ad8ed50a0a0
MD5 f4ca7dae7e1fc82ac0b76c9644b8b0e5
BLAKE2b-256 151f77bc6b399c51ef3ce97e1e6d710dedd85c62054ab9758552bd02c489b85c

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 81ed38a77964a99cf34412635dbcaa70650e5417109f96c91b4e0458df86d6a8
MD5 dd91afd258cc95e6d174d41fdd22d66f
BLAKE2b-256 8f274872a308b7e7c83c2e592bdaf513133565bd9cedafee473f42f2f0e200df

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbfbc1412f389eac706d0a598048f7c47e689ec1ad3812e7e12e6b313a87622c
MD5 dc66a6cf94f6ba2d2a963ea45d184f4d
BLAKE2b-256 8243d46f8d5a8aa86276e1eb0e0b972e29783fb1adbd5354d439835ffe0596f3

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e3d41fa10e1256d9c4d4e27d7f9d7183c196cd7f9b5a670b952a40d5322652eb
MD5 84141f06a64659ba91d6e4ef9a442cf2
BLAKE2b-256 e26ce820f1210112c4263386001b7c89d00423c45b4e462b8373fd886c5d1e06

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 847d2b0872db958f982c9495203c54b07e649fc5b58120bf560fd3fe0d17a81e
MD5 94611bbed59f7b461dab3344eead3574
BLAKE2b-256 19edf8950295ebd93cac948eda3cd897d151528349eff29510a50e52b31745a3

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 982e3a2158904ae8fa339b500d61b5013ebcb5e35b57dab5ba7b163668f826be
MD5 b7c3df5c024130bc86088269b03b46a2
BLAKE2b-256 2d1e1a8833c809b6300bb2f89375d3ee4e9d6aa95460cf8f565485220554c20d

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21bd93015474e1cbc891e243bddce6620d844f6032b3f3d727b09457d762c5d1
MD5 719be9b375dc672eeb87d65998434b0f
BLAKE2b-256 97bdf3ce8aa768bf06712c16c387e9b2c879894c5e9867e85fc692c99533c386

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef1e0eb73976837217dd5f341c3e1fe0eb0831f50dd3eab400df17ed4a022ba6
MD5 0f3249455507bbb2c1fe7239480a72f4
BLAKE2b-256 1b8430daef99b9254140ec1102891605c8804590c908a4bec799581f64d14fd8

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f44daf1d781d024292319012c9d7046b5e7dee554d6f7e4084e9f375b6862e1
MD5 a1292e6e316d5810dc02657c51ca08e5
BLAKE2b-256 b48f0e51eae956a836fa5ea38bd68ddb759c148e2d546c1e883e144bd2f5bd1b

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2dc76c2e4cb4a3cf25cd7f8a43e62a3179322790d53ada268e3cf6d5f5d7cc6
MD5 95b2c96cc4852981bc4411f6bc4d341e
BLAKE2b-256 67000ddf4adec8b33f12193419f92bfaba8cba809630c3a74191be1c5765ef0a

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 001619f826e9d551a8ee2b35d1af1d88cb0687a5dccb480f81afc1d0d9a4feec
MD5 47676070e77c01852199fad339599944
BLAKE2b-256 df633debb4443442804aeb5a20c00e3eac0957aa579333d6e9a946acabd869e4

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ead38ab2d350bd1744f0ec25ae8fb89e78e186f9d1c525bd03fd028b8a35c7a7
MD5 deb1dd0e84b8885a6e41cb80401f9d90
BLAKE2b-256 9706357294b9513727ada9b3c643f43a46aee1c6b20d2670c990e44b7f14861d

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dd6e9395afe2bb8bdcc4f3c8f3610efde1e3c5e8d0e951efaa3d37ae4b24179f
MD5 dbcd9dd35421df76963dae9378e1eaa9
BLAKE2b-256 4a2ef65acc675f6faab5d919739336fa104e387adfbbfb6a3a2c733f892bc59c

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 52760e0c37cf67dff0a1e8c290d7580ae5b59142ec48e46f26e0323fc6851c62
MD5 911ba3a5a63d57b306108e479c92a6c1
BLAKE2b-256 b18431b95aba8a39c38f3355204e9f74e43c9e930cc4bac32da24ef9a7c15738

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e075465240517915da44ae7e67545ac6b69687f4b4ee64c1d6f4781cf47b2b00
MD5 50af74f64b9ac91e1ad647f460208422
BLAKE2b-256 1934058c68bb9121c404cd99240703c71682c03029c98f922d78486490bf6639

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06a8eb13a139a9d0218d5a4d2008e362802f4189557c24731b4e2f891a1eb0eb
MD5 6477556319ddd374ae8777063b798e63
BLAKE2b-256 77a8104e5b46ea34edbec0a14c38f9b213f8440128569623402da4c930956be6

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53d6f91b968a4cfbbd85ad466160cf385259391a387fd7dc8464323705a92f11
MD5 543ae620b7886cc22d5cec475aa57150
BLAKE2b-256 70c07b1a6233e71e638202e85b0467476247079240488f047bbe79c8eb6b55b3

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 20f6df81d803fb14a06660aab07a92d4a70fb4e6ca100be50b695a5dc3ba6c3e
MD5 523eead6f5af15494484882da85f034c
BLAKE2b-256 f73c501c3a79dcec23ad21f91d9e36fe4765b1e699d88c12bf7558ee725272e1

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c11c92afbaa1cd134ad109b09dcded6735fea5cb99dc195c37b2964d5184248
MD5 9a180dadff335ba049194fa09b2869c3
BLAKE2b-256 f5d163b5bcca6a93f9cbd7c33878e3b27225c0118ea46a9d0b7bebcf7c7c4f0b

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on michalsta/pylmcf

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

File details

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

File metadata

File hashes

Hashes for pylmcf-0.9.6-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 423fce112374aca59318b39c5c99560bdf4768924350c148de9b66d6faa468e5
MD5 fd67de79cb7a5a8ddf45b9163cdae541
BLAKE2b-256 ccca4001d5b29459db52ac814d3aa6ab81b38ccada07c5ab503401b03a35ab8e

See more details on using hashes here.

Provenance

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