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

Uploaded PyPyWindows x86-64

pylmcf-0.9.10-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (521.8 kB view details)

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

pylmcf-0.9.10-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (498.6 kB view details)

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

pylmcf-0.9.10-pp311-pypy311_pp73-macosx_11_0_arm64.whl (464.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pylmcf-0.9.10-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (499.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pylmcf-0.9.10-cp314-cp314t-win_arm64.whl (412.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

pylmcf-0.9.10-cp314-cp314t-win_amd64.whl (431.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

pylmcf-0.9.10-cp314-cp314t-win32.whl (419.3 kB view details)

Uploaded CPython 3.14tWindows x86

pylmcf-0.9.10-cp314-cp314t-musllinux_1_2_x86_64.whl (976.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pylmcf-0.9.10-cp314-cp314t-musllinux_1_2_aarch64.whl (936.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pylmcf-0.9.10-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (526.7 kB view details)

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

pylmcf-0.9.10-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (503.0 kB view details)

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

pylmcf-0.9.10-cp314-cp314t-macosx_11_0_arm64.whl (469.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pylmcf-0.9.10-cp314-cp314t-macosx_10_15_x86_64.whl (504.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pylmcf-0.9.10-cp314-cp314-win_arm64.whl (409.0 kB view details)

Uploaded CPython 3.14Windows ARM64

pylmcf-0.9.10-cp314-cp314-win_amd64.whl (428.1 kB view details)

Uploaded CPython 3.14Windows x86-64

pylmcf-0.9.10-cp314-cp314-win32.whl (416.1 kB view details)

Uploaded CPython 3.14Windows x86

pylmcf-0.9.10-cp314-cp314-musllinux_1_2_x86_64.whl (973.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pylmcf-0.9.10-cp314-cp314-musllinux_1_2_aarch64.whl (934.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pylmcf-0.9.10-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (523.8 kB view details)

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

pylmcf-0.9.10-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (500.4 kB view details)

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

pylmcf-0.9.10-cp314-cp314-macosx_11_0_arm64.whl (466.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pylmcf-0.9.10-cp314-cp314-macosx_10_15_x86_64.whl (502.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pylmcf-0.9.10-cp313-cp313-win_arm64.whl (404.0 kB view details)

Uploaded CPython 3.13Windows ARM64

pylmcf-0.9.10-cp313-cp313-win_amd64.whl (423.8 kB view details)

Uploaded CPython 3.13Windows x86-64

pylmcf-0.9.10-cp313-cp313-win32.whl (413.1 kB view details)

Uploaded CPython 3.13Windows x86

pylmcf-0.9.10-cp313-cp313-musllinux_1_2_x86_64.whl (973.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pylmcf-0.9.10-cp313-cp313-musllinux_1_2_aarch64.whl (933.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pylmcf-0.9.10-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (523.9 kB view details)

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

pylmcf-0.9.10-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (500.0 kB view details)

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

pylmcf-0.9.10-cp313-cp313-macosx_11_0_arm64.whl (466.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylmcf-0.9.10-cp313-cp313-macosx_10_13_x86_64.whl (501.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pylmcf-0.9.10-cp312-cp312-win_arm64.whl (404.1 kB view details)

Uploaded CPython 3.12Windows ARM64

pylmcf-0.9.10-cp312-cp312-win_amd64.whl (423.9 kB view details)

Uploaded CPython 3.12Windows x86-64

pylmcf-0.9.10-cp312-cp312-win32.whl (413.1 kB view details)

Uploaded CPython 3.12Windows x86

pylmcf-0.9.10-cp312-cp312-musllinux_1_2_x86_64.whl (973.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pylmcf-0.9.10-cp312-cp312-musllinux_1_2_aarch64.whl (934.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pylmcf-0.9.10-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (523.9 kB view details)

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

pylmcf-0.9.10-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (500.4 kB view details)

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

pylmcf-0.9.10-cp312-cp312-macosx_11_0_arm64.whl (466.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pylmcf-0.9.10-cp312-cp312-macosx_10_13_x86_64.whl (501.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pylmcf-0.9.10-cp311-cp311-win_arm64.whl (404.9 kB view details)

Uploaded CPython 3.11Windows ARM64

pylmcf-0.9.10-cp311-cp311-win_amd64.whl (424.7 kB view details)

Uploaded CPython 3.11Windows x86-64

pylmcf-0.9.10-cp311-cp311-win32.whl (413.9 kB view details)

Uploaded CPython 3.11Windows x86

pylmcf-0.9.10-cp311-cp311-musllinux_1_2_x86_64.whl (974.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pylmcf-0.9.10-cp311-cp311-musllinux_1_2_aarch64.whl (935.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pylmcf-0.9.10-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (524.8 kB view details)

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

pylmcf-0.9.10-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (501.3 kB view details)

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

pylmcf-0.9.10-cp311-cp311-macosx_11_0_arm64.whl (468.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pylmcf-0.9.10-cp311-cp311-macosx_10_13_x86_64.whl (502.7 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

pylmcf-0.9.10-cp310-cp310-win_amd64.whl (424.9 kB view details)

Uploaded CPython 3.10Windows x86-64

pylmcf-0.9.10-cp310-cp310-win32.whl (414.0 kB view details)

Uploaded CPython 3.10Windows x86

pylmcf-0.9.10-cp310-cp310-musllinux_1_2_x86_64.whl (974.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pylmcf-0.9.10-cp310-cp310-musllinux_1_2_aarch64.whl (936.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pylmcf-0.9.10-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (525.1 kB view details)

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

pylmcf-0.9.10-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (501.5 kB view details)

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

pylmcf-0.9.10-cp310-cp310-macosx_11_0_arm64.whl (468.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pylmcf-0.9.10-cp310-cp310-macosx_10_13_x86_64.whl (503.0 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

pylmcf-0.9.10-cp39-cp39-win_amd64.whl (425.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pylmcf-0.9.10-cp39-cp39-win32.whl (414.5 kB view details)

Uploaded CPython 3.9Windows x86

pylmcf-0.9.10-cp39-cp39-musllinux_1_2_x86_64.whl (974.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pylmcf-0.9.10-cp39-cp39-musllinux_1_2_aarch64.whl (936.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pylmcf-0.9.10-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (525.3 kB view details)

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

pylmcf-0.9.10-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (501.6 kB view details)

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

pylmcf-0.9.10-cp39-cp39-macosx_11_0_arm64.whl (468.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pylmcf-0.9.10-cp39-cp39-macosx_10_13_x86_64.whl (503.2 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: pylmcf-0.9.10.tar.gz
  • Upload date:
  • Size: 199.5 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.10.tar.gz
Algorithm Hash digest
SHA256 600ddd66840825351b6cdca3e50261b9ab8cdbbbf0fd4913d5f4769941f31fd2
MD5 14ae34414a8ab6db376a64ae542c2870
BLAKE2b-256 ca365866c06d782c93e65ef19f4ef4766ac53490c9b030b087abada05fd7962e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e77bb9dca3a208f9edfac361db4393467e9b3b58f1aec83d72831d08c3dfc68c
MD5 c0f5f6550c72b1ff391072a4548efa7c
BLAKE2b-256 a96782787c2a540d8d93e22ffe48364ce27bfbd4b8f698949fec4f250501ab75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aca73705530fd468282672dc4df6a0e14b616b7c6cb409daa2273db395e74ace
MD5 fba9ba2f5ab150a0e07ea95a8e7baa76
BLAKE2b-256 cd542b26a1b2882944b89f95696178781eea2d4fd17823c06a9d4d9d3aff42b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb6ea5b1f60c1a6d1582bd9bd7ca5935471e3afb468bf811c5a0255629863a2b
MD5 c49e897c132110a46670595d50622101
BLAKE2b-256 3ee4510ff7a5ba766d0071771e7591732e31c13fb60b5adec93afe57998f7e0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 448c4538f33f6f3ca939c0fdd89218515b8e171e3acd0a309ea33f34c6bdddf6
MD5 90b739b68ed7804c69be391d3814b609
BLAKE2b-256 1d6a42d7d8ae47271c00b3a15a66385b5c1e18a607c8f27c87f8f89218c067dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 07def48f6193d54749d4939b3b07357d8fcca3c1dac91d3d17874870ce2451a7
MD5 3c74127ca3ee423fe47fd184d3d97788
BLAKE2b-256 10692dfcfc5a45e3e4b426abf9c271e975925e07533d42ff95c5cb7cb14fa1a4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 412.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.10-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 1b02526ec444b8b7157c2e6fa7c148d39c66602a851386492124c145497f776b
MD5 da23057322d1787927029aa3bc951a4e
BLAKE2b-256 d4aa6929eb450666a70f0635ca27405d76f7f0dde4f8f5fbf433407e47673b71

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 431.9 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.10-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6785f9ed34adf62edcce6212d23de2ef37a0ec931c001da1a6ede5c9822ff1dc
MD5 bad60c95117cb646182bdbe8d8315766
BLAKE2b-256 4ca74af770ce13e0a79a4d681588eb2c2bd6461032968a84b15a0d5cce6f7504

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 419.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.10-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8d7ec055c919482940b086aac3e3ce3eb6f46314f814b2559098809d365cae34
MD5 11cb18b635103dbe8414463ff56eb997
BLAKE2b-256 be677863e6bb5f6921f3bb8008cf37ab42cd8a5109cd57130a67e90d9e3f283f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 324760f45525fca5ff41a4137fc61234735c733d3a83e4ba4ce4e48d0b662a9e
MD5 f6542ac613074b2b8195ab8257526188
BLAKE2b-256 e1c4b3f87a5350696cda6f85ee535b9c6c89412492e003514390ee28313feb7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6703cc76199b3c4ea7ea3a37a1641847ee4a80fe78e0410dbb6e7f5e016a8cd4
MD5 b26634de5014e46f6ba88a6e7be530c4
BLAKE2b-256 317f6dfe77b692aecbeadeec25692218966bfff21d746d19dd7ba3ffbad898eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea01bbdba12eaf42132ac04e15496addfc4827ee748ccfde0add61b4b2ef4c0e
MD5 1711b59a949b1178ccc05c09c1170767
BLAKE2b-256 ebe3f91f2025aa8a82eb129f204aff053ed5a4f0f09c4567eef41f91bb613398

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e312ad17d74aa9cf45fdba6f251d1869544810ba6b21a159780e37e11a175bb6
MD5 99a8901694fee2f40759b208d6da2dad
BLAKE2b-256 ed176bd6f34fc9bff5c78580c91d2e8bdc0b055b560d526bfd8350ab86db8aa7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c5507ba68a1262c358ebf3beee65105f47dd422b03d85c581cd0ca77db25235
MD5 d6e183c00924953118bddd67f57b0535
BLAKE2b-256 06eab3e2c26391cb5ae2219f5751cc150aa21745cd55fc4c3a0c670252ad9c49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8b1ba5858c7147aec988ddf4cca64d0aea62058bb25c649092c5d14ba51a4520
MD5 41708a8f75aff546b63818e15f4e974f
BLAKE2b-256 021f95688711df0e7c8902b4d21343c95a5bdefdd9527d27289e1c7496c55dbf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 409.0 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.10-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f8e8ab7a782814095cfeb9dd3b2f69d7bdcccab5b4db6066d77fffb49059996c
MD5 0e1a8f466385485e7567e1d81e5190d8
BLAKE2b-256 65cfc04dc35b854d0e27e0c94aa78fe398d9454409aef6f81c6104ea9d4e5920

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 428.1 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.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9b0f13135dbe15a4740a2b897eb8bf4b17c43d4d706af356fb3e6203d98ef9ce
MD5 938d5d0cffbe5d43a8372956ea4b111c
BLAKE2b-256 2087c48017787a02ef5fb3e50db0779ad6450005bcb10605dce82d6ab6a0e892

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp314-cp314-win32.whl
  • Upload date:
  • Size: 416.1 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.10-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 aeb541ff8544ca5006e475f982c44bbd48b76117b299bea0bcedf12d996d8e0f
MD5 2e6c7e8cf3f3d41ac7df2f0ac338f17a
BLAKE2b-256 1c4ac36f4b3a9464cb68282fc445db163c9c9883859449f7aeb03fe0f93c1652

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3164445d0648c70922c016ebf170a728dbfaf45aa03ee74b000dfbd7b3455ae
MD5 e92e024da79ed9d4f68743a9354e3c72
BLAKE2b-256 a958ac054ed79b01b4f8bfd1819c41c92457533c87dad1686e26dd24fe940fb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8cf71c78e85a67635b31c3cbb543b33890188e680672b47cdd7fb99763a5480
MD5 ce5df078efa1b3e66b5c78029e3a5f04
BLAKE2b-256 3ce8714f2b13c141e73d6c65ae7e6d7f4b24264cc5912f4797dc12bd79879a3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e6806149d3afb03dec77b5445d6d7bae4e819e4f16342a24f9423bcaa943ff68
MD5 4088241e1104c70e114d57b4b4932337
BLAKE2b-256 5deccf88211017642ed4842ec9abbb4f86157e97849dfbaa6147907eb622dcfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 661de4cb0ac51cffb9650145aa598c0684d0f938f0bdd07c6e6009f5fb230780
MD5 e21df30954b0afedb4a6bda5a80547cf
BLAKE2b-256 79798fe306aa7a4bba5e90f89e199bc3aeb985db7f254327cc548e43e78c47c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a73928daa9688a6dc6d8efb393feb49fe5ec9cb0e4d0fc6a02b774895a55432
MD5 7a5d0c19b3d6ddfcaf16cf4df5c1126e
BLAKE2b-256 1777704f54c7513b034c1a94bbedaca4c74e3a14a5317b21c86b4c27fb41e104

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9cdfd5f32d5e0e4cdd246d8c9adcd2f63df91f50b585c3ae7910d3064992fa63
MD5 979b3ee204c30c0fc6e5e5ef66ccf17f
BLAKE2b-256 1e9f3823e14701d9f234a0d49e1baec2ef10594cebde4d1d2168cec568af8fad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 404.0 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.10-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 cc005657faa139bf699e5b88515d3320e5ed0f7b8b01c79d67acb4e7ad0e0f20
MD5 5ff7ccfdcb33380b4b75706cfdd03820
BLAKE2b-256 029a31ecf23de9f14eaffe7eed10a370259d017770c28f6ca867e08becf06c20

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 423.8 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.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 00a6665d2eb32888f9e8760fae7c280158c2fb4d612e27792ce18d9d279965d0
MD5 b411bb5414380cb455f9f1d3dc791746
BLAKE2b-256 2e98f09c86d55ad3e4e2e3c9f9a16841f3e0963a4c55d59ad04d559f6d4201ec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp313-cp313-win32.whl
  • Upload date:
  • Size: 413.1 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.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d6135db66d755236659f53bfbed751d7e2e857340130a281ac47b7e064742727
MD5 16933eca728ef2ce93e48dd2465db375
BLAKE2b-256 b7b2899603f590ba2a093f59f7dc1174e95b8ce3a2fd65335d3f5272f856ed9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5ab7671ae70079a3414459de61f6a2222ac9841a4e8d722c5df061b18bb780e
MD5 e981cc15d54683cf6b8bff086030fadf
BLAKE2b-256 dddb4b60fa6b4158558b48240bebf98dec58a8e8d3a047bad303537f31e674b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2d39e028b2c5d286f80e3281e6c77e0cb2bd8c78773ec34023782634a448bf6
MD5 33513a5ddd666900d7f01544b0c2e44b
BLAKE2b-256 2e6d15025f9f244fc32136e87381742f439ed89f390ad771e93763ffdadf3d42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0d954da9aeeed226b6839f25f6a163b73e30a78c1d78b1440bebdcbdab62deec
MD5 982b168f8972da3e06094c6212fdc457
BLAKE2b-256 9dae07e70eaa705fbb2ad4a453fe49d00679076151b8bd13b156a2245798c2a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26620f9fe2e55cddf183951500d478975b4b4c50ce0880a5ba3f6d5bf1973d02
MD5 d9774add775001aeb4256a780faa50a5
BLAKE2b-256 d6667f3d747aa8e06b029d11674c9d055eb2fffa3e72f2ef4c065130cfe5e9be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62d8e9ab58a0e0325a4b3fd4bf4914116c26786ebc82159d23921bd5c615ac37
MD5 288d427ec2b462f89ef7f14bff76ff23
BLAKE2b-256 ed4deb467f668ee19b1dfafecc31e4476e44f7604ef159ec333d240055924327

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9c10a156a411d8dbba449093e83f60dc27afa2425a1cd63f0852525e8db94a41
MD5 54855db18228a4043510fcb270a6b78d
BLAKE2b-256 61d23bc6f4a5fd3bbe9922c6ecac637a103634751df6b66ecc753c71951a41bd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 404.1 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.10-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 89d8df16c714f5918a979ecf1409481712ad259d33c13b09248bcdb1cdf16c8d
MD5 d113a548ccf882b02cdf4c03469b091a
BLAKE2b-256 89ea41c765509b5507ea2e763844d06957f20e5a1c08d9508ec392b0182be05c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 423.9 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.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6fb58aeb2b4db5014d49e84d2a190df779c80b1e107aeb11212eb567b83bfe62
MD5 58b51fd43f7ed3c819fd0a98b19c4d21
BLAKE2b-256 b37251aea7ba51fd642fba699c9e102af65f03e7bcc13bb566d9fa96318e7afc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 27b4d0b650b9c1fd10745962a2c1b50b14d59e98e324152f0d2490616b40622f
MD5 98aff4b00b62cd12214ebbfc4ddbd497
BLAKE2b-256 3ff0675162031b3bea59f16ab7ea6dfff990a237c80df144fec70cd2e60a36ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c9810953dde5d4d552da68dbe35dfec8074670060516ada6fed872328a05262
MD5 cebb258737cb362013a20038f241d40f
BLAKE2b-256 d22f5990ed883e3f947ca1c6a1e93fa0da668fcdac7f26bc993da4cafa310cf4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6229f4207777c793d0ca6bef13e8e45a7a7914f80c5c4b11c5a628efcd08137a
MD5 38bd428ff0cd7e3be42d43fc27d351d6
BLAKE2b-256 44468194a9597fa4bfea14437f19a47d10efe5663139a60d9fd09840bc99b9fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64bd49c53f306055639deca065c27dd1b7ced6c71ba70b94bfcddfe17ad9b708
MD5 d7f4a1546aa4f9ccd825d6f8a11a7166
BLAKE2b-256 cca854e24b8f6a2b59a2ea7c67f794c361b0659450c9ed6986f5b7b17272e67c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 42219d6f2c0094d5b4306e75eb00fd225594839ceb88a06d832cb865ad349595
MD5 3cd4304720e20b487128decf1378a9c7
BLAKE2b-256 66381a6a86b447dc3b0f2123d92f751ba554f0f3839e4571e3ce34a0fb34eaff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9fff286663c277afeaedd89dacc1ceb050b909efb95eee43c27ed2fd86b0cde
MD5 6c254f4344bb2340203a045a01c8cdc0
BLAKE2b-256 1c5eb4bbcbc732ad7c5c21fec4d5934c81db1c9c320f95eb4ed1057f362b4003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a240193338aa223450ce763ea9ba2b7fbee34357dee06b66e306bf7785bd9043
MD5 ede8a462638bcd71325c80cf76910e2e
BLAKE2b-256 6e7124cfd7537892ea6e740dbed3ef947edce0ebbb170e253dc4ead8005ba2c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 404.9 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.10-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 68449b1aa0ccdd3986f9a6c373c6756975ba9566e646dd27712e168d4b95c6dd
MD5 7a38d9c78eac66fea4b7eccae328a452
BLAKE2b-256 00c70480272b5a7b06d7228e995b4967711f321f6d57b2465529f6db121e3bdf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 424.7 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.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 37a79c76bc8f9d80b41170686bebd282845156130ec6558ef0bf393b66d0f88c
MD5 d35c32fef21a2eb07e744d96dd58b05b
BLAKE2b-256 427558b553323a558195bfa8200f66757cbd60d2841600fd310ecb86fddecb81

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp311-cp311-win32.whl
  • Upload date:
  • Size: 413.9 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.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e47d4cfd106030a1f2bd5b32a28b5c789ba078a666bdd427bbb334d1f313f921
MD5 37eea1105585ebb99f88711d64099631
BLAKE2b-256 4fa5550b3258db689b396229cc7699ae06c9af16d46d5c3e585245a656d2152c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4dcadbdbd474d49d82cd8a565ffd2e068e8c49627ace8ef84f6bc41f288bd91
MD5 5753efdd6316382c6304080262d4a13a
BLAKE2b-256 e47b8d23501c90dd9f908f22ff75d86e5ab59131de8e2e2d988652007d9e0ab3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c35e54ad635d0227bf78506df6bc7551fd9b589aa874b0a85106c58238bc9c18
MD5 3b9c5dba7f98f255b6f1aec97d53171b
BLAKE2b-256 1bd0dbfbe9116aad5d8ca69b02c14ea0825c491fed599ccc3f579be40baf4179

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3de02a59f935ff722a8d59b5065988712c54c5d8087e489e68137ea7fa4e785
MD5 d53a6726da5d3ca68bed1e90d33a521e
BLAKE2b-256 85bb157f750b89cd23090811c9c16d181d6fa3b052df2cb304eebffcad82a857

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e393c6612a55e9dce27089b15d3978c513e6c28ba3170233ef6f52239c2504b6
MD5 daa66a4545328e860984a61c735b474d
BLAKE2b-256 c02a2e367bf89910d3c58972f247e80291edf30e023592bbfb4da11c6d713d2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9dddd2021af51ca7e23126ba63ebc54bed8bb8c10090132f6713b7a75b49012
MD5 c6e4af3665e7d168f29f6647bdb74aea
BLAKE2b-256 81cb922db07079f5af2e6e2d79b421beacfcf3396ebd928bd7ae70dcbbd29231

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cae6c588091f396d92162a7d6b21f9c70621fae6883a1a9b5a51eba7ceed4ec2
MD5 b0157791a5e194c839ff3986812aaf11
BLAKE2b-256 ad22de05e91acebbfa0ae667605b6672646c598603cc03d9c23d9eaccaf96262

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 424.9 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.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e94d63aba0bae1f12fd1c26c450f74ffb5add896c0b1ebc3ea45c095b5140d49
MD5 71ff7006bd3f4f3a07db3070a1f04ed3
BLAKE2b-256 cf0c892da3c928ac4465401c5331f793c1dd3fbe1432ed3e5d24a8058728a726

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp310-cp310-win32.whl
  • Upload date:
  • Size: 414.0 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.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 150061ee2cc52dffe104aefb3075cfd337d5165211aff62477f63c15ad0f173c
MD5 fe333461691a46d6a286276d3936cf42
BLAKE2b-256 6bd060c8e19c523c81611a9a46de410d0a27e044132986696b6830e36df27d7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05b9a90a4a28c8076bbc28d61f43d5e4687969514116668ef919226109567162
MD5 345d84ab300a3e3ccc6f0fffa853748c
BLAKE2b-256 2ad4532296cad9fd8bd6d149f6ed5abc5a4ea3207522cf39d095e941945995ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a13fd449adf50726900ecdf30de650a70ed756962b0bcb4ca092c6d7a35d6057
MD5 3e4e1b6add49ab16d57c6acfa84238d7
BLAKE2b-256 8b9833c8a11d4dddf9d68e2affda12a61aceb2c35077cf6ceb44c32b5cc2f263

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a5b93050da96d936a449a6ea379912cc0941371d7abef1845c3527abc0daa50
MD5 5e59aa667460812152352341c87a2040
BLAKE2b-256 50fe724db061381db0ff32fcc2544ee7b111cfd77afc5f7429fb61e912184a0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e66011c31df8432c458d698894e877dcaa5de29ce0a024d5b353def14df67c8
MD5 073aa23cab8e5248d4f8e8ea90c804a5
BLAKE2b-256 89d1b2e6d1f8e96a191644906a99bb420e22d5bc86bf09f8dc665dd52f5f8a48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 130807f1bc86887cb88b1970bc2708c266f72b62def51d7d2b806be54a1f8f2d
MD5 12edb90b041d9b3bf8e202cf76e74363
BLAKE2b-256 8a5d49f9718b6e4ecb8d71de3ffcee7fa3b3157e3fa415a81b35cfdea8c780d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 10ae13f48318192111bdbbf4e97145af5c7399e437b25b6a41f53ee493fd0b22
MD5 97f26cbbfd5706d1f9df2b006b8d672d
BLAKE2b-256 d84936985aa25c38159cadb489348d39a20cbf509d694c7e790273333f587d6f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 425.2 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.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 95402793fe8ab0d3175f92899688d1b39228f333c7fe0d9d24f1739b0b6c9087
MD5 6fe392b01adca1f79d4e071a60ac6530
BLAKE2b-256 9cf95845a67df90489b31eabc15d2b0a10e3560ed4261e635be6e07bbeeaba94

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.10-cp39-cp39-win32.whl
  • Upload date:
  • Size: 414.5 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.10-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7cf0eaaae159abec898d0030b4dc052d751148516f23f9340338b29356abd2de
MD5 9c2f35c09990228ba4b0bc64f7848701
BLAKE2b-256 eaf93fa4a40e4ea74cf7fb12ddc6116e12a1a314d888619f594a6e154afa73de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85041d09a6717186c313a7095e58dd9ab603a91cbdf1c7c55343968ef99e02ee
MD5 65b2e0fbe8e7b09e5349bd7c0b1da981
BLAKE2b-256 5924860a7c0435bd12c0537a998763ab350f72b7bec9fdbdd1fa66d1a1db4ca2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ade96869d587206703ade60ee414459939e28e4452fd20a28a11ccf99f87b624
MD5 713ee8b2b5a7c9b95970eda0ab56324e
BLAKE2b-256 7f0eaae8f89c4cbc45e64896ac8d235a8a4c30f841eaccfff53696bfd28659f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d62dddb4adda3ed0ad041d8516779596aa5326cca2507844502d84c007823b0
MD5 6d2e719493f14be4879ecc70ec68a2fc
BLAKE2b-256 ffe7070363ea0c830fde8726b8e635270ea15437eac2af9cd4ce32a2b9942595

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa5ad09764062165beafc4454ed2d96bde6c28fa67c4370fe074e25fd098e2ad
MD5 df65ab2963455203861664f33f30ca48
BLAKE2b-256 6cc83a9c12838560f44ba0875277e0a9880d31dc9a543efcb5d0d97b39d6b8f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c319ca3ff88163d8b3025c0754cb97f10114b0e38dcde288bdb310ab8621768
MD5 64735c3f7eb6259952ddf275f51bbf4e
BLAKE2b-256 d17ec9e2481bc978b7e51b22232fd05b80c0919643da6aa0d84903bfa3436a01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.10-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 aa50c088058afd8b50a6b59e13aa2e2bc395e3c150dbb5375a1ecf493447c22e
MD5 e2b0e7b2fed06208ceb10821bbd2f61f
BLAKE2b-256 cf3cd8b70f48c9593bdbc235076ec4aae5ef0e488747c94103b6d41a2212cb67

See more details on using hashes here.

Provenance

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