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

Uploaded PyPyWindows x86-64

pylmcf-0.9.7-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (214.5 kB view details)

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

pylmcf-0.9.7-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (205.2 kB view details)

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

pylmcf-0.9.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl (167.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pylmcf-0.9.7-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (180.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pylmcf-0.9.7-cp314-cp314t-win_arm64.whl (169.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

pylmcf-0.9.7-cp314-cp314t-win_amd64.whl (184.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

pylmcf-0.9.7-cp314-cp314t-win32.whl (176.3 kB view details)

Uploaded CPython 3.14tWindows x86

pylmcf-0.9.7-cp314-cp314t-musllinux_1_2_x86_64.whl (669.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pylmcf-0.9.7-cp314-cp314t-musllinux_1_2_aarch64.whl (642.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pylmcf-0.9.7-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (219.7 kB view details)

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

pylmcf-0.9.7-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (209.5 kB view details)

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

pylmcf-0.9.7-cp314-cp314t-macosx_11_0_arm64.whl (171.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pylmcf-0.9.7-cp314-cp314t-macosx_10_15_x86_64.whl (185.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pylmcf-0.9.7-cp314-cp314-win_arm64.whl (166.6 kB view details)

Uploaded CPython 3.14Windows ARM64

pylmcf-0.9.7-cp314-cp314-win_amd64.whl (181.3 kB view details)

Uploaded CPython 3.14Windows x86-64

pylmcf-0.9.7-cp314-cp314-win32.whl (172.9 kB view details)

Uploaded CPython 3.14Windows x86

pylmcf-0.9.7-cp314-cp314-musllinux_1_2_x86_64.whl (666.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pylmcf-0.9.7-cp314-cp314-musllinux_1_2_aarch64.whl (640.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pylmcf-0.9.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (216.6 kB view details)

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

pylmcf-0.9.7-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (207.1 kB view details)

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

pylmcf-0.9.7-cp314-cp314-macosx_11_0_arm64.whl (169.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pylmcf-0.9.7-cp314-cp314-macosx_10_15_x86_64.whl (183.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pylmcf-0.9.7-cp313-cp313-win_arm64.whl (164.1 kB view details)

Uploaded CPython 3.13Windows ARM64

pylmcf-0.9.7-cp313-cp313-win_amd64.whl (178.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pylmcf-0.9.7-cp313-cp313-win32.whl (170.7 kB view details)

Uploaded CPython 3.13Windows x86

pylmcf-0.9.7-cp313-cp313-musllinux_1_2_x86_64.whl (666.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pylmcf-0.9.7-cp313-cp313-musllinux_1_2_aarch64.whl (640.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pylmcf-0.9.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (216.7 kB view details)

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

pylmcf-0.9.7-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (206.7 kB view details)

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

pylmcf-0.9.7-cp313-cp313-macosx_11_0_arm64.whl (169.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylmcf-0.9.7-cp313-cp313-macosx_10_13_x86_64.whl (183.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pylmcf-0.9.7-cp312-cp312-win_arm64.whl (164.2 kB view details)

Uploaded CPython 3.12Windows ARM64

pylmcf-0.9.7-cp312-cp312-win_amd64.whl (178.2 kB view details)

Uploaded CPython 3.12Windows x86-64

pylmcf-0.9.7-cp312-cp312-win32.whl (170.7 kB view details)

Uploaded CPython 3.12Windows x86

pylmcf-0.9.7-cp312-cp312-musllinux_1_2_x86_64.whl (666.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pylmcf-0.9.7-cp312-cp312-musllinux_1_2_aarch64.whl (640.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pylmcf-0.9.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (216.7 kB view details)

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

pylmcf-0.9.7-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (207.1 kB view details)

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

pylmcf-0.9.7-cp312-cp312-macosx_11_0_arm64.whl (169.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pylmcf-0.9.7-cp312-cp312-macosx_10_13_x86_64.whl (183.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pylmcf-0.9.7-cp311-cp311-win_arm64.whl (165.1 kB view details)

Uploaded CPython 3.11Windows ARM64

pylmcf-0.9.7-cp311-cp311-win_amd64.whl (179.1 kB view details)

Uploaded CPython 3.11Windows x86-64

pylmcf-0.9.7-cp311-cp311-win32.whl (171.3 kB view details)

Uploaded CPython 3.11Windows x86

pylmcf-0.9.7-cp311-cp311-musllinux_1_2_x86_64.whl (668.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pylmcf-0.9.7-cp311-cp311-musllinux_1_2_aarch64.whl (641.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pylmcf-0.9.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (218.0 kB view details)

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

pylmcf-0.9.7-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (208.0 kB view details)

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

pylmcf-0.9.7-cp311-cp311-macosx_11_0_arm64.whl (170.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pylmcf-0.9.7-cp311-cp311-macosx_10_13_x86_64.whl (183.9 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

pylmcf-0.9.7-cp310-cp310-win_amd64.whl (179.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pylmcf-0.9.7-cp310-cp310-win32.whl (171.5 kB view details)

Uploaded CPython 3.10Windows x86

pylmcf-0.9.7-cp310-cp310-musllinux_1_2_x86_64.whl (668.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pylmcf-0.9.7-cp310-cp310-musllinux_1_2_aarch64.whl (641.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pylmcf-0.9.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (218.2 kB view details)

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

pylmcf-0.9.7-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (208.2 kB view details)

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

pylmcf-0.9.7-cp310-cp310-macosx_11_0_arm64.whl (171.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pylmcf-0.9.7-cp310-cp310-macosx_10_13_x86_64.whl (184.1 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

pylmcf-0.9.7-cp39-cp39-win_amd64.whl (179.6 kB view details)

Uploaded CPython 3.9Windows x86-64

pylmcf-0.9.7-cp39-cp39-win32.whl (171.9 kB view details)

Uploaded CPython 3.9Windows x86

pylmcf-0.9.7-cp39-cp39-musllinux_1_2_x86_64.whl (668.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pylmcf-0.9.7-cp39-cp39-musllinux_1_2_aarch64.whl (641.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pylmcf-0.9.7-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (218.5 kB view details)

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

pylmcf-0.9.7-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (208.3 kB view details)

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

pylmcf-0.9.7-cp39-cp39-macosx_11_0_arm64.whl (171.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pylmcf-0.9.7-cp39-cp39-macosx_10_13_x86_64.whl (184.3 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7.tar.gz
Algorithm Hash digest
SHA256 2eaf041b9d14e8cbd85a4366e9f4ae1a64f36629c3798ce2ef8d3c775d6d19ba
MD5 17b9cf87125fa22a763b909d15edafee
BLAKE2b-256 52c08eca0ab4df2759597bda0b800c0087c4525e882b056084978ffd7d0c04c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 16f1fef6c3d966c42635600ada9f947e5e63f403d267a0979f7b5b1a44be69d4
MD5 e0398f3c51aaaddb12df3744df03fc6c
BLAKE2b-256 ee1fd5e3e89b63ae14372b049afeb87bfae74d7ea23651f2e243603b904c7ef7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac14a355fd2f8801a42f3092ca89ff98205fa74a54a25e4d69de7b2431126420
MD5 f6687d42aadaf54d3f68de9c31ccd82e
BLAKE2b-256 ac96d44ac24a85de897bba7b7c947c009f741e3ba15347e4f53d6bfcd0fa344c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ae54940453fd804c58b0116bec0b4caf1eee2775f603d0a86b760604c9426d95
MD5 dd8f06aee17e3111006fd66060ba92ee
BLAKE2b-256 0f930cd41ebe225ca47b2f22ffeb26a6c0b2ed59c084fbfca07323690abc5494

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c11dd0961f15adefa43715bebfea8f2990b4ef8c06c13357b3b9fe23cdca91c1
MD5 b4bfccab20335badc1697fdf27717d7b
BLAKE2b-256 93274437bd675be858117a80803dc523dc3a31293bc5f26ec50b7172ee31c7ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d1a78877529cc3a5712b72c799ea750b2a812312bb6513f5476c0f8f7d1c18bb
MD5 c64c1fbfc7758ff2c41b397d40edd5e8
BLAKE2b-256 d49372140ac83d3bce575523746a614e45a57cd16debae2c42b11351117b4583

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 b5866772d397922c2ef119e51de6d301af4b86b8fb21230978ad64f930b15bb9
MD5 c60a33311026d099913ba48da1893ebf
BLAKE2b-256 16f2f8f20c2dd7deb4f72902ff0362f80cb20b11ed68be02bcfdb397a9367fbd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e31ebb813f23e2184fa62ff82d99ffece7090cc6fac3d8f942b7e8af7b7b6645
MD5 f8cf8059d7a2969a3376558982e2e013
BLAKE2b-256 e11553b4d0ffa443a34606c14991d41f58c80a509dca69e1a2215f566a7fccbf

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8eaaf4d87ec2742d8420eeb65ba6925bd054b55d270b96dceb92746c8f28abb3
MD5 655b3ec012d252470a89ab0088aadf21
BLAKE2b-256 1c2a54a66d741f8a957296a4ddd0f6890ddc5536778ba324e713411ba0b359f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a37881102e4f06123cc89d4ec2f1966a4ee9349902bcb520e17b8f6a0c1c6113
MD5 c809671b053d8d82f33ce627dec2e81a
BLAKE2b-256 b4c67284929334a1ce9d7a29d4d61ab7b547955bd413d547a0053504c1f3656c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc63603e61e3af1f7c2b940977cb3804a913d3a354bbcdb3e5f5d9a69d51b4f4
MD5 c3e19380c17a969532ddae41f6bbe23e
BLAKE2b-256 405a7bae240e3594eedd24831d61b6cbfe4cab1cce7bdf187e495235f6f4db03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9d79273c154a735eb2af7817d13da6194494e3e93312577efa7c76a00e1fcec7
MD5 33e4740e3cf9246b168051188d063b39
BLAKE2b-256 2e5d79dde7eefa72bd974aaea971ffe7852d01c4ed2f50dec09e8d1f0aae5ea9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d1c600addccc772e3e95b4baa6cdd3c518def039e07d3d9cb56e8713455b80c7
MD5 7505679e2ed7ffd2cfc06cdc66fdcd0a
BLAKE2b-256 5c568816e6f74feeaaf1f2d219c36582895c9de224f31b58e3d061ed171f1b70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15b20d991146f3acc089c0361ea82fbb17444921b3e0f6f50b9e5ac924f357aa
MD5 ac29b3fbde94163f8230b84d431f902a
BLAKE2b-256 68c9435c492d969a85fed01e636322bac653336d9aae60175fc4377c1b8b9d58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d8df4bc9af8a1a0183273d49a19278eb1b857c81ecf2b89bb323fb5db3a79181
MD5 67e94b70f51f6435f3daf49d62cc5dfe
BLAKE2b-256 d7f4bc0ff68503ae89d86a10e3f1a9fa7fe4f3cc51f54bd344edc39be97f30b2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0269ff759992819b1e3879cf2d4f42c188cee129e3e321f1b83e62fc957a6220
MD5 8cb8e6734e95afec7a3f3dbda137cdc0
BLAKE2b-256 df877381e65f712e74829d3e723f7418167e2b195be4db0b004ca12bed8a5600

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 89e512b95a8e177990c589795bb1e9f2de13eff98dad812fd689168aff982ad0
MD5 6dc77cc77dbc823536bd95d5c11315ff
BLAKE2b-256 0118ec778aec8acf8aca076829ecbebed00e4f582877bbc172ef9daec335a474

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0eb6934ab5298f1a99a779d89279b5150ed3c97861da11abc18e754a7b749362
MD5 f236c88f24dc24d1725ed629ecef7d77
BLAKE2b-256 d09e43818a08792ed2abc012cea00f8733d416ed6ce0ea0cd46a42ef5d72b935

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ba9a091bd7858ab1e35f68c157bf18658d3b9639ac35f390280c105c23490ac
MD5 2983ce97d5fa865f4f8258416af03b1f
BLAKE2b-256 c21f51b2cfcf57bad339074be4e27840216bec2c4d215678e1c59ece8cd224b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0479f77ae3444fa25c61a9c9725089024a75fbd7310c382c771f071651e38756
MD5 5273ecdfc3d89df0e3851b477e51df01
BLAKE2b-256 06d5bbbc91f647a5d4c02e52825ca8bc32bb6b0e10389fbf90ce18a893dd5aa7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ff3d1d9d0d3a4c2377757870b7185fbf1bae0d21b49b25eb76954ec74cd7120
MD5 8f16b6218572cfc059103fe5ce54d705
BLAKE2b-256 f2e498a899c1a98892b6e589371fba0807d299d1c5c5ca8e89740f271728dffa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0bbec27bdf9fc0ef2966b9213b844c59a1657708d554a6bf5830d20f704afbd3
MD5 5ef2e852fd8de4174d735337c74c70da
BLAKE2b-256 7c9abb921223be33341423aab029feb43f3ad96ad83f3e5751b6a1513434803c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b86872a8a03b98b2a78dc74ef2bd4368273bfbcb6ef2c9abf07590a34ab934fb
MD5 4d0fb360d2611b908eb31a5e3917bef1
BLAKE2b-256 1829b273f57417b83637ec7baf9f4fa42c71bc6da93c7d0c9b5e4a810ef562c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 61a33869fdf186055b9d4e29512a9c18da18319423eb1f78475136f689b1c97e
MD5 2cb12dc495f68eaf6f5dc50b90059cc5
BLAKE2b-256 fee4a58a47a05b1852894df4965e40a350214f66e2df4bf95dfb8cd4c1316e06

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5a28f3e119d71c6bf5b3c698e13e49d8f6a61d5e444417a37c73e2639fdadb37
MD5 46ec4fc47e86f2423ad27385218df798
BLAKE2b-256 cdef2b6534421421ad31042d80518fd2477a0152bf8094f94d15f3ea082040fc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d07ba60c6f36be3305b98a2e9dfe1387ffd73bc11cbb7c37054c33e28e7015c2
MD5 98ea946d194bd420b7bef9f07e381a30
BLAKE2b-256 6267a211d23c3b823aa12d61bb28f45d05a31adfce6141b88be19a8306b19857

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a11908cc1764710d9a44d56b9b8ac3f016a8e16fed92737bfdadf4f1117a7635
MD5 178affe55d4a5d1792eebd9b90d0ec26
BLAKE2b-256 52b7b474bbe023bb31188085abd62fdd4b963ce9edf8c863a65f82ce8149c7c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddb54c9a7b05633df0251fce012171c92ef1fe0fa78d4351331e20fdf371b6e8
MD5 47d0980c6979e784983b452b6d3a2fc0
BLAKE2b-256 f7c2becbb265cc0176771d9f1fbbe9586f4eaa1629a7120cb0c096c04f7c0c27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4fff1cc849209b97470d40ce786633260e1c2ffc6558a88745a70abcd44d5df5
MD5 7a10a31b3a3bf3e93d17f53c66e5b67f
BLAKE2b-256 3f96dcd197d84f937aa3f99a86389b795944431089f5a8c321fe03db1a15d0d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d184080b47afbe9ab57783edf319f40ed195ac9653a81e397629efbcb5c992ba
MD5 16d7466b5cec8c482830dbce01f3acca
BLAKE2b-256 e0e89f8056e2559d9744199e78422394c01148b5e0b46532945284d6a4da78f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac9e8a44f12e7980e993a5f5d8f005d432bbc0ca7c543ee4e0f73101443a317d
MD5 bb027443a26016d0f9aa5b9935aada0e
BLAKE2b-256 280cc11e2bfdbdda885b435761392e620462013d549a7aaee09dedb956f27354

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a136cdb2a2415f7f9aef6c322ddac087b078b30d8629e4d104d00e7a1af109c
MD5 f5f4a32f885e5d2d79f12f378afeb4c5
BLAKE2b-256 a4cab1c9c9f749181d2bc6d9a50282cb23e50ab2bb760b8e7692bd405a1fa740

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ce3c22463003b50877c39d3efa625b13e23dd082795ef238d0528965099ccafb
MD5 14c147cc14394b1711b8f63d5762ced9
BLAKE2b-256 fed7597b9145b3fb2fc3783616c727ca3f89cbe6a1880e99e6de2e264e47a78d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f16d715deb7f0d62475e025c789b49274f178d8555ecbce300574562986ac228
MD5 03ba80415ef4c66189cdde808a0d98b7
BLAKE2b-256 487874c880cf236dad07781f579e6aeb848204a7a8f69a807d3f5afe85c5fbfe

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bf40c7aca43a2147cbad1bd88a166cc28b3576783bceacfb05845585263a59b8
MD5 ca1a3dbf5c5780140cbd2b434db63919
BLAKE2b-256 bc04220f0c5c47d91ad44b7c9a343986399c1c03e56fbc8462bd40e011eefaa8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a96b246d9d7f553b23348ddae27d99fb33bc56685c43989834654ae02143d21e
MD5 f1780f00210473626864ae94c4db1e75
BLAKE2b-256 662f523796bc0208267f0c4f8f149b03b5e499255b70204b513ddc03068ec94c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a07752d46e42256212cf51a599e76d0873b727965c5a1b94753d51e19d9735e
MD5 e3c21182d57fed45e15d860e616ebf74
BLAKE2b-256 58e257605e87255abca6ceb76e33648d99a786751a6229afbae365e84b09839b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 789dc981fbb343cf2be0e22a5452105b2bc189ba4ad5d20312794c760bb1e5f3
MD5 f5e610e87cd615697ae985ad2d3a36f8
BLAKE2b-256 51156543dfe239373b40ebe98d710438465ab1687640e18097c6899f241694a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f414ae98990c4c0be4da8007d84c17658c8e49dd7fdd5f5374463f17c143341
MD5 39ef4b775bc86c5080c5f1d1289e7cfb
BLAKE2b-256 83f41ddbe55e6d18565a374e6cdb32ee7ad75d738143d1a28910a7a9a45cb654

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e607f1e991038d2f984b83da843e6c06ad7bd425e79ba3a21f3ff84ad6f9ee8
MD5 9c5b6ca8707eaa536523d59331fd7c2a
BLAKE2b-256 103b4584ca0a6447b06ec2fc0d5dedeb5b6e6b3af68090c41bd0d7321aa17314

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16c90b106700139d9bbcef7bfbc78ba364a2e7b7f832ba24a9b7be2fc508788a
MD5 5aaa7c5403a8dc7bc5a616a0582079b1
BLAKE2b-256 f04cda4c1a2ba0f143bf548916e99bcdf3f048202d1f2615bf8596b3b92b8c0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 074629a0ec7f69914096aed932c19a1c3ba12b46c1bfcf488eab1a1ad1a119b6
MD5 edf449211d2ffe73e2c0b315e9cb75e7
BLAKE2b-256 dcf153df8317da5dd3d9628d94870bc4295211bb5533c10cfcce24bcbd4873c3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6743fb80a423aee9a142463006971896d777f7a7510e172fa1c92427fbf7e3a1
MD5 770a97327d85acf3ac6a718aaf18fff6
BLAKE2b-256 7de9a3a67c83146d6841eec2de7bb86cfc8c1b7d36fd0e6f65fc55bbe29f2313

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2d3bf8b2738fa469e389f0a87265e1b35bbf40d984cfc36357596491fa1bfa41
MD5 3dae02be5499168c9d640d8e4eb8c8fe
BLAKE2b-256 6b47c7334fd48ebadf1867be02f734460e62e3a1055e1f7a8c1962efc40bb844

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d976bca1e07c5e221c1e965a899f4f770531851468721483be25e38f1e7efa71
MD5 2e062d8d571c40a5c912dfe7d10e3ad1
BLAKE2b-256 b584ed5eb9bd10fe884327e303b5f5f512b876957dcea07754c51d216fdef4cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c90d3fa3b12616c6c9ee8c396a969031db5ca3dcfec73808789502d7a44c5241
MD5 41bb1d791ad83eb0119a1b3fb7ef71fa
BLAKE2b-256 2c9b743d6f749ee4b71639be2f55baf718534765c093f66b9ccd11764567b9ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b35ca21b05b7dc0c61e3dfec7805c5d27ab086034d445b82c1381a2a9bec012
MD5 6117764b791ebb54dce6c15be1d95a58
BLAKE2b-256 6b5c604954719f4af5033bed130d3c6a93e6a6d1bc3f00d3f5229dc108119be6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf890cf5d7fa5401f65c2614f55a82bdca0b25e53da471fd6ca40682ff9761f2
MD5 cf23d8c606c37fa5b72c40b7ea0a087e
BLAKE2b-256 b3a165ecc771b5fa176b4fbc2c7161322fe815ce06eca3e4eea9b617c4ef01c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e02ffe746904cde7643f7c88396b03b7c1fdd0c406c13a5b9afe44ee4e9aa6c0
MD5 13dc9dec38c08ebe42f2e2de5e7dad06
BLAKE2b-256 99075ff2901e37bba60b6120a338ba3ca33fd26c6f0c67d6f7476a5530d85128

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90ea27326231c91f993b4600047830ad6a40a36c048f03ceae7598e851114028
MD5 0d23f6e32691d5511b80c65836001767
BLAKE2b-256 cea6c7abe5187f1f6c04bf962319468783f5cc95c038d5b13f51e8529ac9bb73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 77b93aae425df6eed2fd832ba9d923ee0a47cb1424c3f3f996ca204893677bc9
MD5 02d9cbcf22e9a150f951c7662c8b63d4
BLAKE2b-256 4f8720b4de4a96fa6a2ca98f5716cdb21ce11df83d97c0f8a0216f0223304347

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6046c262d1a8773071f66e79d508754f398c8bc7675d552a18167e0f6eb30a57
MD5 130409fcdc68cb4ad14ba6bc50fcb191
BLAKE2b-256 2e86d6125f388abe406919e03e2dd8224d0a7e8d21a1e7eb72bb5aefba5df22f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e5e2a05e56328cd1d2960412ce15df4e5f6b12f5fc5f3633d88bee98205bf645
MD5 7a4bbd6b89614ecfb45bc1521b2d50e4
BLAKE2b-256 8af66f239f3f8363940c1c3758bf88df6383093fa7b94788bdb367e2f95468d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf16a4cdd8af0c764656face32ec4e74bc950ee51475efa22e68a2a3290eccae
MD5 c2ca98f83dab82839d42b811d560cc72
BLAKE2b-256 ec39f02d2e31de4d0d2318ad7a714e223cd53c49787a5b424878e61f6a683cb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 208f2e3b20a681ad980831119ead3538f3580fcf07907cf1a877308480dd151d
MD5 6c058493ed680ba1f9019c3198689abd
BLAKE2b-256 c8c81ded9f3d0c896e090270dc36c22e4a7e416d2e1ac012b6951daea4294d10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f71d0538260984b914027b0f095f9dc432a05ed89a8b6eb784820f701d43e131
MD5 e2bf30043a51bc8c0103bf576d9a5a7f
BLAKE2b-256 2ed38044d117f89c32d9419a734c5623364a60709a60e169ae8129e7938142b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 12a9f40276b933255229df0e5c14528a9da1c0d0c95b071cf8b1bfda13f93081
MD5 73fa1abece8620251d7857e2e1b357bd
BLAKE2b-256 daf88532676e074eb0b634a24ef859fb9fc7a6417b982779d1d4ff53b3a0094a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43744332ec290f7fa04c82d52a71c707d491cfcbf3a441f1e5d1b70f7f2a29e6
MD5 86e494901a20fb86e28a1a3a24cc3d6d
BLAKE2b-256 dac2c5e110589bd5c25d649e2f742e420f780030a058a644767b90b19de4d789

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 989592cba67e9e41a88016e47d522052efecfb3ca8bf177cd05c0a0ac19cb895
MD5 395e6d8832d6be696b9d383768913a6f
BLAKE2b-256 f4c1655e573450a0b0fd10741d62c8fc4d8adfd0acd3921b369f6103c5590fa9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0489dd8e6d183e999508f58400ce857ae08a4588785015db05803264ed2f16e3
MD5 a1cdca5ccaafbf0c5d3145a64d3a25d9
BLAKE2b-256 2dbf37293b4947db6190040800dfb092c85baabfe6bef2292bee38107788a81c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b84a8eb3ef3082435226ffe9c883bac39d3f2a2dddf5b8fb8424e3104bc39f78
MD5 3b540ddb59fe79ab43d260839708fbe9
BLAKE2b-256 8fe59f9159695938e10336e2dcf9f9aacbc1c091b312b0481220c613cc37bbb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbad50ca3c74ebd25464745ce09d1a045cabd20b88a4c64647fa3032e801ca77
MD5 f6faacc6e6d33df9bc532c157347ba55
BLAKE2b-256 a4fdbc5f583c999074d138d2245398339b5ad90d14c53f6602251c2f42c63854

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f41c75753cca3077d1f9295e76a0fd0e7e9330b1e9ce6cd44517b0c64250182
MD5 2fd690f509acab84b2b752a035b24fa1
BLAKE2b-256 9bb3fde0708981cb7ebf07fae1f1373f04f3db3096d7fde5ea4d5d0e5bcf5c78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59dd19cf5b060392927cc494f167f709b62a5c3e179f03ffe5ff7857d65d6e54
MD5 76233828297648f60727eb46c5363d19
BLAKE2b-256 5ec2aebef0560363f365808465e3688c4e71e90651f9e5c32f32183356c3ee6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bc12ac415ca712fef294f909ea22bc846a9ce882dac2f856f83488e3e6cb4c98
MD5 0046cfd6af3f3ea33446f7498f90d707
BLAKE2b-256 db4b92e97733faa794c42e0340f6025b2255265a117502538577fc8d0561db0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41f213f4a1aca20803d7e84e666f81410afd02e59a58c00446eef42f0b370a7f
MD5 70261e8b731dca1e77e15558f88a573c
BLAKE2b-256 6c03dcb187c0ba399f468c30584f41c62e0a8e64e00648dfcf7b11ac9e1d7333

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.7-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ddc1354cf078418555d691b93622ad02d5107c5d0e22c97cfc1793f2275731c6
MD5 a7c51da0c45a1da1059b2a0a16b3e2a0
BLAKE2b-256 8958a0c98bbf9ac874181325517acb90cef1b3e4a307aa4dd7c7a77d846f6f59

See more details on using hashes here.

Provenance

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