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

Uploaded PyPyWindows x86-64

pylmcf-0.9.4-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (208.9 kB view details)

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

pylmcf-0.9.4-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (199.8 kB view details)

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

pylmcf-0.9.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl (163.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pylmcf-0.9.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (176.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pylmcf-0.9.4-cp314-cp314t-win_arm64.whl (165.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

pylmcf-0.9.4-cp314-cp314t-win_amd64.whl (180.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

pylmcf-0.9.4-cp314-cp314t-win32.whl (172.4 kB view details)

Uploaded CPython 3.14tWindows x86

pylmcf-0.9.4-cp314-cp314t-musllinux_1_2_x86_64.whl (663.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pylmcf-0.9.4-cp314-cp314t-musllinux_1_2_aarch64.whl (637.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pylmcf-0.9.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (213.5 kB view details)

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

pylmcf-0.9.4-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (204.2 kB view details)

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

pylmcf-0.9.4-cp314-cp314t-macosx_11_0_arm64.whl (167.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pylmcf-0.9.4-cp314-cp314t-macosx_10_15_x86_64.whl (181.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pylmcf-0.9.4-cp314-cp314-win_arm64.whl (162.9 kB view details)

Uploaded CPython 3.14Windows ARM64

pylmcf-0.9.4-cp314-cp314-win_amd64.whl (177.2 kB view details)

Uploaded CPython 3.14Windows x86-64

pylmcf-0.9.4-cp314-cp314-win32.whl (169.0 kB view details)

Uploaded CPython 3.14Windows x86

pylmcf-0.9.4-cp314-cp314-musllinux_1_2_x86_64.whl (661.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pylmcf-0.9.4-cp314-cp314-musllinux_1_2_aarch64.whl (635.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pylmcf-0.9.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (210.8 kB view details)

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

pylmcf-0.9.4-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (201.5 kB view details)

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

pylmcf-0.9.4-cp314-cp314-macosx_11_0_arm64.whl (165.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pylmcf-0.9.4-cp314-cp314-macosx_10_15_x86_64.whl (179.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pylmcf-0.9.4-cp313-cp313-win_arm64.whl (160.5 kB view details)

Uploaded CPython 3.13Windows ARM64

pylmcf-0.9.4-cp313-cp313-win_amd64.whl (174.2 kB view details)

Uploaded CPython 3.13Windows x86-64

pylmcf-0.9.4-cp313-cp313-win32.whl (167.1 kB view details)

Uploaded CPython 3.13Windows x86

pylmcf-0.9.4-cp313-cp313-musllinux_1_2_x86_64.whl (661.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pylmcf-0.9.4-cp313-cp313-musllinux_1_2_aarch64.whl (635.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pylmcf-0.9.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (210.8 kB view details)

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

pylmcf-0.9.4-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (201.2 kB view details)

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

pylmcf-0.9.4-cp313-cp313-macosx_11_0_arm64.whl (165.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylmcf-0.9.4-cp313-cp313-macosx_10_13_x86_64.whl (179.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pylmcf-0.9.4-cp312-cp312-win_arm64.whl (160.5 kB view details)

Uploaded CPython 3.12Windows ARM64

pylmcf-0.9.4-cp312-cp312-win_amd64.whl (174.2 kB view details)

Uploaded CPython 3.12Windows x86-64

pylmcf-0.9.4-cp312-cp312-win32.whl (167.1 kB view details)

Uploaded CPython 3.12Windows x86

pylmcf-0.9.4-cp312-cp312-musllinux_1_2_x86_64.whl (661.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pylmcf-0.9.4-cp312-cp312-musllinux_1_2_aarch64.whl (635.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pylmcf-0.9.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (210.9 kB view details)

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

pylmcf-0.9.4-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (201.6 kB view details)

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

pylmcf-0.9.4-cp312-cp312-macosx_11_0_arm64.whl (165.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pylmcf-0.9.4-cp312-cp312-macosx_10_13_x86_64.whl (179.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pylmcf-0.9.4-cp311-cp311-win_arm64.whl (161.4 kB view details)

Uploaded CPython 3.11Windows ARM64

pylmcf-0.9.4-cp311-cp311-win_amd64.whl (175.0 kB view details)

Uploaded CPython 3.11Windows x86-64

pylmcf-0.9.4-cp311-cp311-win32.whl (167.9 kB view details)

Uploaded CPython 3.11Windows x86

pylmcf-0.9.4-cp311-cp311-musllinux_1_2_x86_64.whl (662.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pylmcf-0.9.4-cp311-cp311-musllinux_1_2_aarch64.whl (636.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pylmcf-0.9.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (212.3 kB view details)

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

pylmcf-0.9.4-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (202.6 kB view details)

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

pylmcf-0.9.4-cp311-cp311-macosx_11_0_arm64.whl (167.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pylmcf-0.9.4-cp311-cp311-macosx_10_13_x86_64.whl (180.1 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

pylmcf-0.9.4-cp310-cp310-win_amd64.whl (175.1 kB view details)

Uploaded CPython 3.10Windows x86-64

pylmcf-0.9.4-cp310-cp310-win32.whl (168.2 kB view details)

Uploaded CPython 3.10Windows x86

pylmcf-0.9.4-cp310-cp310-musllinux_1_2_x86_64.whl (662.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pylmcf-0.9.4-cp310-cp310-musllinux_1_2_aarch64.whl (636.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pylmcf-0.9.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (212.5 kB view details)

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

pylmcf-0.9.4-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (202.8 kB view details)

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

pylmcf-0.9.4-cp310-cp310-macosx_11_0_arm64.whl (167.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pylmcf-0.9.4-cp310-cp310-macosx_10_13_x86_64.whl (180.4 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

pylmcf-0.9.4-cp39-cp39-win_amd64.whl (175.4 kB view details)

Uploaded CPython 3.9Windows x86-64

pylmcf-0.9.4-cp39-cp39-win32.whl (168.5 kB view details)

Uploaded CPython 3.9Windows x86

pylmcf-0.9.4-cp39-cp39-musllinux_1_2_x86_64.whl (662.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pylmcf-0.9.4-cp39-cp39-musllinux_1_2_aarch64.whl (636.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pylmcf-0.9.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (212.7 kB view details)

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

pylmcf-0.9.4-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (202.9 kB view details)

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

pylmcf-0.9.4-cp39-cp39-macosx_11_0_arm64.whl (167.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pylmcf-0.9.4-cp39-cp39-macosx_10_13_x86_64.whl (180.6 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: pylmcf-0.9.4.tar.gz
  • Upload date:
  • Size: 63.2 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.4.tar.gz
Algorithm Hash digest
SHA256 8d81b5bd28418f8cc0e6f9f7272b53efafcc649ebf82ec4c63ee345f73430411
MD5 44a1eda0e7845dadce78098baa2eb6ef
BLAKE2b-256 bea85d3df3a761f43482658eec383173ce6c58b3027a14380ea397529cdec88f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f116705694dc4fb22ab3be83cbbb9c0f514fbcf2003e5182318f7b66770a3be1
MD5 b0c6a2e02527d671b5f32770ff645b77
BLAKE2b-256 bf8b9a6a41dc39ed18e2fb83663ab0a4c9cbc5787e1a2a517dc14157e09e19a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5884b7f794cef60ee8375f2dd53ac5ea43f6e6715e1ea2e3dc512e19f6c3f861
MD5 8be79a969f6e71adbf08c434c48a4786
BLAKE2b-256 2348f16692be979f4c19328765ba2307a5066ae24a9c9143aa708bbcd569d490

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 59841aec7d5309886ed461b402e88d3154a7acb52cbc95254a115139e88699a4
MD5 d04dabe1ff8e74beb7c7d7e91b552c25
BLAKE2b-256 3ed21589773315963675b9ef517d11ce59fc5cf35746313c32d071798b241a4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a92573b5a324d145bebf330b3d84501679bdbfc75ad8ebf13f95744e3976a94e
MD5 d5786aafcf6adf61a166c5b3b364a3a8
BLAKE2b-256 6154c2b53bbd1156b896be7a81c7f2f8fab4230dd72324431c1e9fb1da4ecc9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 215b47d849012e101b46e71edc7dcbae68587f080717cdf9d63b85d3bd7fb6d9
MD5 17ff66a23d44737953ab6a3883e6f567
BLAKE2b-256 993c9c03ca96be15e893525252ae03ec4882e8994fd8bb137a8dc90cd4b60292

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 165.3 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.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c58518e4d1fd554b67a5abad3e53100c51441e4de99a31e12a2f6831688c3d4d
MD5 f3904cee188d0df61df8e707827ac2fe
BLAKE2b-256 346048925d8b7919557b8405235ef859947652c8f748be195393b9d554bb9b94

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 180.7 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.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2e18b1199bb4cff8d0df47694988d6a6cae5dc844143582d2d54051104dc252e
MD5 fb0b4032d52da2b983d705a57b206066
BLAKE2b-256 dcd5415c375c1d14db3c3d41c135e4d60dd9879ab6bce657f8f566ace5edcde7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 172.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.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 bd84f6174405406173592de81a50ad05b1eed6f165251a13525521b4409e9b61
MD5 95ad743e08f61530229893cd942c05f9
BLAKE2b-256 7fd2201a505ce959473a64a9b81a14687152dd1f4bf404ae4bc4abd8e0936381

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9718d9ff9720f96b1f775b5f99a972b964016b3378200a50dbe9494b857eb3b5
MD5 afbe8934fa835ba1217f1670e18416b2
BLAKE2b-256 64241ef9cafa19433a45f36bc446fd1f2876b6bfac128683064f0b71c2d84911

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 068f48b68e5f52abaeeed2dd7b8ed9a9fc0e36493e2b202037c64d72b66ce433
MD5 da3613bb3bd69d55534fe481ae2e6b3d
BLAKE2b-256 cb4e612e4c813b0e82db87af2c2d24aa53ebc137fb676035e561310e229d4aba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a3108da1175738c5a789065c332591516b64108d120823a3bc7d316f186caa5
MD5 10d9c4938d158883c480df5e79b40ea8
BLAKE2b-256 f33781b97a0b780c01a855f303d108b215f1239913e87f70be57fa80178f3300

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe092db7bc5bb1df92432d79c1e8798ece31c72545c06bfff2b6c8f4d83bb8fc
MD5 dcc961b63672f51983b2e7ced16a62bf
BLAKE2b-256 a4c924cd55d752715ef9f4e7a8725bea46c5604bf060064964c95d55b0a3f249

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd2718763f9d4a3deb3e24760bf2be5434cb36090cac51beb57f5bc2398bf4ba
MD5 a5447b48f5743a998b8d5ea656adf330
BLAKE2b-256 bc94d222a75d0e859a06216d522d8b1ad84d8ce6b79e17c69726186b89486488

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 931a85511cbd3ec608fa24d12b1fb6e54074185db0804a4235e4911616be5638
MD5 f8e96889276ee05c90018aaa3f6c98f0
BLAKE2b-256 1aa68927ebb38262d0f957e58fd6ed9058f73a30dba70975628fdcfb5475ac46

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 162.9 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.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ae110110a616d8dc58b1eb6bfebabaa9be687346fdf88e76fa5f4517fefd5485
MD5 9906d61232b5c7cab57098daf4f36f95
BLAKE2b-256 844dc3821798271f4f4c2a90f0f37a1e0f20611de3278487d7ed3fc784785c3a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 177.2 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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ab65109e8f746e5a5bdf96176a747a05d2b8154c9b4f7e912c60396a2246c25c
MD5 4f5682237ee84d4499d45bb8a8ba4c54
BLAKE2b-256 66569c24fa308994bd75ec1b41036f2e89bf846898c9d0b99ec587bc37c343bf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 169.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.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7c37fd6eb5d4e16f5158a085f2354f509e222994f45ceae403da814ed6508832
MD5 52bef549c2faf338a4a945032eef03dd
BLAKE2b-256 c23e36415c4bbd8f10c8b7729f36893a3044d4825a8d83709136f60d7c156911

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5dc2142a5d451b9f90ea7a2555197b148d42911cee653c8c53b247e37ba0c108
MD5 18ab79a878f96865adea4f163b9e25a3
BLAKE2b-256 3d919746de39742203f43dd2ccf12c9dc9184d633e8cfc90d30ea813fe1fe0b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6e04d8a50a1feffcdf1cca9999b097cf5f8d2dc580a6cdfa821e06dcd1ab5e6
MD5 5eb04b84aa056f594ad0783feb19b1bf
BLAKE2b-256 d3e84c32c14f2649c26f1de40a9db4a96cbef26afdbefbf8ec08bce7b3c1e6c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 195da71b62a7c5bfc4521599ed0b1d087e707cbce7ba0f0e8b924dd7c3148fbc
MD5 77626255267c6792b0fea0e45346c8a6
BLAKE2b-256 19db083dd2394ce091ddacd018dc80c09bfaffb45d9e2920622f6e1401056227

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 357eb6bb5a2cd2bd043dba9646f74a42b2458f16f8d1661035350efde60b3f8a
MD5 9503b9c60cc4b7a39b5cb50cfa536c2c
BLAKE2b-256 6c743ae62e4feee45b693181f2528582c8d68ef27badde54babebdb6c3417ac3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e94a9ec39c4dee40d2c66555e863ee05f9c0130e7a688d0c03d2ba22aaed642a
MD5 5bfad82fd51eab82ec69a9a143a579ee
BLAKE2b-256 7441a6644a2f25d504d4c43a81dc295e0075ac2366d470b574bc3997a85b238d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8ca4e178b623da35a72b09c68fcb23c47c99f7c055ff0a127feee386d26b4126
MD5 731aa1f0e9f29f5c42c32e627e9913b1
BLAKE2b-256 b81ed63f180e7d8bf2516687dc08ab5dcda42c0195fadac4b3dceead5babf3c3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 160.5 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.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c8c176b5b2090201bb8a2a8c95648593e37b7c812ef3ab2bd2b05adc08437a87
MD5 1185da8ccac510aefca9c64c3ba6989c
BLAKE2b-256 8449c2a7e7143773b4894bec2f54cd29b1f8f501e5886c4b86f86d2c4bc741f6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 174.2 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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 06b6bee4ba66de03b63969afaf3ba9a60add73ab2c1ff0b47b8f620446271799
MD5 42fabd2217d40451d8486b75d1cf1de6
BLAKE2b-256 9314bc5e54d9288c3ca767b86839561832272e8c633c2e09caa753c7a6407904

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 167.1 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.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ed56bbb5de7379952b0123ce6c9bd85366c50a07ddf1a496229d78386c95a4f1
MD5 d6ac353f2eb90c9d0c7bbb60ba2f1834
BLAKE2b-256 c2367d23efbcd5ba5a79c2003851a8160b88ed0b2666ce187d2db0ef3004b7be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a94a611dea033422f82e4fac824bd88ac9f7e5adedff52aca47372106470c400
MD5 af75134b2bae5f0e15154366746927d1
BLAKE2b-256 4fa1e7e3eb943ecb0c77ee06f0c0b8495de15909854fab2601fcbe1c1bfa796d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dcd132d7efd072a7e5e8fe23a4170f42c27d37ad4edeaf8cd7e7f5a977c4dbb9
MD5 6e9c89c9c841a67096436ab507f35bc7
BLAKE2b-256 4d83073c6598e8447fce7bbfa4a3d25022ef45e1881da2eb33f59fd0b69dd122

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b20974258f8bad275d7315a4fd85bfe50d05d5f67f50afbd103b631da0b57585
MD5 33cffbb3b5ecc24f066487545de18a1c
BLAKE2b-256 8c456f3b385f72979f0a0239c259dd43f20fd5550db00e45db86ca766e670901

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6cf3a22cda31f6cdabd3173feac486b9dfa5b11b1e9861d5680ffc19b58adda9
MD5 c7cb5fbf227cc3032764a54b071d290f
BLAKE2b-256 c546aa8967ccac7022a323cbf19a26f23b1214919c5ae896554e4687e205ae22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c37a0b31933d99735e62670c0ed2388ffc827f14c19eea807735a132d32efc16
MD5 d6b1b6177a1a5dea5b66b905e3f1a596
BLAKE2b-256 3d7895543a4251e88493ad1a9c2fcb20208d476c83204ff4a2258ee543c9f182

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7768a411c0cab09431aa1a7f3b03b1947518d3102486904fade18d338080a21f
MD5 97563143aa65cb198d2282c7be3e5f22
BLAKE2b-256 96b29ee2935608015a168f4546bb7f3fb5320e99557c859c0cf454296e2214ed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 160.5 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.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ed048af2cff5af469ae122dc3a77e87ffcd14627aa97aa5f8eceaa23c581f60f
MD5 78831a020d2a91a2bdbbe26bc0a630e2
BLAKE2b-256 5156348468409d9a3dc22bb0e1a1689bd3c97a87d04ff92101b200300df9b2f0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 174.2 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6c48d374b47b03744968d9bd8177d462dbe7a72327e1cae7ed0c31510a8f97ee
MD5 768c7b5eb2d0b2c1cb8b2d4187d7ed76
BLAKE2b-256 ad07431dfbae9e25feffa4da9688987894480ee97ebd46ebb0b04c42f07d5cdc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 167.1 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.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6e10ac54f55f813620596cb3d05e559e0008420d2faeade72b4090a7db32f544
MD5 7abdd2bd3dbb098447bc50eb83abe7d7
BLAKE2b-256 e963965964d9a0eeb62f63a4a20b6f880a61326982afb0a1d0168bd7afd58fce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64482d0065b790eddda72d03c5ba6f5bd72f5254ff5eff106fe37b26ce14a556
MD5 7cac2302799f2ea5a998ad15f4c2a3ba
BLAKE2b-256 17d5fe744d23315a667ca5beec03c0ec7e043d78b70a936e2a6bc8f52bcb98c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14ee711d4a440fa3db32bbf62532ea2a02aaf0197bfda88bbcef743c406ad8d7
MD5 d388af4c7a8774e1f02f229f8562ea3c
BLAKE2b-256 2213cabb4b8818c1e3da77a62f2bdb672c5d16d06724ceda8fc3d6822e362dc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 365460cd71514bc3bf990ec1c901d4e8e3514d353969aac972a02e703ae1fe6b
MD5 66956a4a8ed7b5f21375c8aacea9da6b
BLAKE2b-256 11c9c1469c694a8352bda64b99031fd0c89b76c3acf8e205622352ce87482b64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b447b61b8567fa2889561981f750d94704363c66750f1bddd6a4a043594f67a
MD5 17e118849b95365cf7feae0ebb80f691
BLAKE2b-256 c1542654ca8d2bbc05c1bc8693a841d4cd1a329382fe171552f4866d2bed5808

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a2a0e78b3a6bdf387dbdd53eed905cdcea9ba6283fff8dd072452d6e33cd8a7
MD5 1dac0e66fedb5b0457b2a36b7cbf499a
BLAKE2b-256 ca513a666f2baf63962288193460f83b0afa7f59bc12cd6e07807fc0d30df6fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d23e35bfe2e41ef0c418bda21fc125e4b533c2791040e3903100d26ba0637b6a
MD5 fdbbd29f251a319d20f84c90d2f68a49
BLAKE2b-256 85db22453e2b29bbe7d54bd65714d3ee53251867acbe2817b41e9834c4dec967

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 161.4 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.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 bef49aa36cce5223f155ca0c56834c7301c745cae67c226677b5a23980a93a6d
MD5 c86936f6c1eb77cff95e07484e64a08a
BLAKE2b-256 6dde6428f793f6bfe00294d26675c641c0eafa127cda20aba3ec57693c3723e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 175.0 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 df4ccd42aa85bcaba67e0df0e01938ec2626a81a2cb1a1f6a42567c957969914
MD5 cdd90decc5d1c2037b3fdf34251ab1b9
BLAKE2b-256 f9f3d021ca04e2884f5a63dd73d72078a17c3772bf51ceb7ac5168b5ff798b17

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 167.9 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.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ba507c9ba6733dcfcd4e0939d745dfed1755c984ea52256ba693185ab699669c
MD5 1c025f95a474329b3ee00517c5acf016
BLAKE2b-256 02ebeac4548c0140514ddb81c66b1533ec6b7745e5a5c2ccbe77fb1f6532a83a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4c7c26c332ee2bfa6aeda1a4958d663d6fc08773d9ce4632fd62571fa1ca0d1
MD5 e867c6fee3c9dab10018a082c321fb6d
BLAKE2b-256 31dcaae159afd2c7193c0e9c690b18350302b25b33fe4da603360bb0a32cea28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48e8859f2d0659eac97f03dfb17c44258165ba763049e242143f36350f8a6dca
MD5 9a3a2b598332358683626eac4bb3d088
BLAKE2b-256 3ae0bd0abf75703e5420ac358136f6570363f34711ad89f56896a20c70cedb94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71c540de66d2af8724670a976585a93dd4195a5917889b52714a4371c1228223
MD5 544fe5f1c4c3a3b9af8fa7606d64576a
BLAKE2b-256 d3b1c82274153ef731c2cb2a8a66eca141c7020666a116b49f8713226dc61c6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bafb3fea766cf274fba1330d582e05efe38a6239c64f863d9f468b478059fffd
MD5 f6ded25e0a69346eec0534b2a5f37440
BLAKE2b-256 9b3bf3e827049558a233752b946d921e97123ddef838fd969a0526c1c4dc485d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb97ad6d9ba28b6ef1f0de41c304fbe3692fe9b38156e315326278eab73ce68b
MD5 2792d298b418457d8bcf02e2a07cc008
BLAKE2b-256 2e712115155d5933699131b3bd219f4be3bbd21b5cc3a3766d711a3b2d8de740

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 023803b2a79128e7dec330f493e327bbbd3a413d54d9992bd782f100a30aa8ae
MD5 5814d8c343315b03ed858ccc26302bb8
BLAKE2b-256 bf17d01d9a5c82202294f2bb2b41c4c7d94cb770b80d373ac9af044a217fb0ca

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 175.1 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 918abef43665a88fe8af6ecffc4db74e6d7ac672cb7645616faf01f77a20a524
MD5 c810aad6120c0c090bdfb3ea0ed51e82
BLAKE2b-256 f35f39139d3c1b549f800ac6fb518e3bfcf50d72883f7a25bd806460ad605e01

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 168.2 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.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 51d7c7db52a9b171bb0de148314166ec50f03751e9215d33b84ce3f3beb05756
MD5 4fd93380a89641cf649b7b15c33d1c62
BLAKE2b-256 69db8a3568205a041f0066bf429dc89525a430ed6154204055810f1ba670039c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e33c77c5dbe516a7e4f691caa3d43aa4e8937bfb695ca476552b34fd71013ff7
MD5 059a05c922283b8a4dfefe4c71cdb534
BLAKE2b-256 8e429ed08bf5c443016f2711f2ec39be0c5b18bc343d8e8d1890e826bcd60129

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf3cb62ebb250d2f35927fbfe69fcf7283ee6d32f37be4450c38838a01bffe67
MD5 a4b9e49d5662df47cc311bb13b342da7
BLAKE2b-256 b99e288b8c75f2ad3b02bc0aa5224eecc348b08b8b75c22cc3da9b8eaf5dc9f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53f4c06ae7e19c8037201728fd1bcbb87cf94c3ce9bb6fdc73a49cd3050b445c
MD5 c95705ef388c6d208ee309e7dca1178a
BLAKE2b-256 4380e79a4dbe730c1a1edd3ed04165317e7394cbc43bd0be6d2790dbc2b4fa3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 73678d775854fe68297b1f59a1efeddeb6bb419449c93128745260fe7b5d309c
MD5 098050e1cf986db1d1efa882b8787d9c
BLAKE2b-256 a5b8f71a7b0ced85dbad51dd9f77ad0ba719b9be63b8ecca0e37095f15186637

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 773091a08d47d61d5ff53a579dc83a08ebcaeb3696e9d5e13307d67e150fe518
MD5 0282ff118b943fc3fbbe517ac15f1e42
BLAKE2b-256 d91cc04257b4188cb382b13d37c12ca98f2b4fb82fcadd05998dcc3847414193

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b857aa9a3e40f5c8bcdc6d744ccca19aaee59eb76927af6758f7c6228893c4e3
MD5 db77c02b57a79da755c769defb8daa1f
BLAKE2b-256 98c147291317c3498239ae0a2710de9c24fe0bfa8e407924c4a92bf2a340daec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 175.4 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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a597cea2b812ccf309f61592d0a766b116dd1f49f26318c68132f4bda8d58f38
MD5 686072c194b419bf8d5065daab81f5db
BLAKE2b-256 4fb04f66bccc43fde01e66e93f7f2c64363d01e9a47feb16d14c6b4056c5f4fa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 168.5 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.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 49ca7c3b4dc283fcd268f2dfc4afccce3653b99affd02203b463c4a5b22af7cc
MD5 fbbddf901acdd85deab99a2e62a27cf4
BLAKE2b-256 c55af74ccc40974b1cafb47e69f3bdd7c45e114aa3b850056f563f9a352d6b0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94292b4bbd97165c6b0e59ff778be2edcc8290de9200e10bf26c53bb26f35262
MD5 fc0ac5eb5b2bab0add94b4f3e8aacdca
BLAKE2b-256 73cfa7f1bc0e6755d61493e15e60a67a89a2652932a9b6c7d0a68cf02af95505

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c017a63750f591f7f0beb319f9c2d6abb2c81ca9a323b3f450d01105b4f132f
MD5 a5e8585d522676d11454c5b325a94cdc
BLAKE2b-256 219f4dcb31f0f7bc9d5e2337d3a475d87b042dd97705549d6aa71830bc4f686c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b54140693cc525d0edc94a351161b97a452ad9ef8940ddf764bfae4cb609a6b
MD5 da8a81b50a57a07daaf9804ba203f75b
BLAKE2b-256 bce63372b8e2c9fe44cbce4c8bb391246fedf0b843e6e5ef910a8fc4e6307e6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2384e051597525f1c1ab0d406abcebe49449722c2b5b1f73167858777bea246b
MD5 8f45ffbbd27a7aec2d7443362f8a4fbd
BLAKE2b-256 29d347a2bd69679b9f1b9693f3a7ee8c73b92ebb6d8efc21758a966edb0ca3bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f79ca1a9c2db560e67409c2880fe88a657d4b0e07cbe8cbe481b7525ca21d45f
MD5 6ebe022ff80d6bd15665bbec6a187586
BLAKE2b-256 542b8af4f6369f4f7d66c4e679244a1417a60f520d55f8bc0ba70768c4a8fb98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.4-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 449e39bd6ad9a22e411c84e7b6fa862101bc58298b86cb606cf684fbec81a089
MD5 a350b3496a6294c36fe92993a7597aaa
BLAKE2b-256 e8c118ee527785e3b614b1889b79a680c892024b871ce91e2ec71c3a6b68dada

See more details on using hashes here.

Provenance

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