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

Uploaded PyPyWindows x86-64

pylmcf-0.9.9-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (447.9 kB view details)

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

pylmcf-0.9.9-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (426.2 kB view details)

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

pylmcf-0.9.9-pp311-pypy311_pp73-macosx_11_0_arm64.whl (404.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pylmcf-0.9.9-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (432.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pylmcf-0.9.9-cp314-cp314t-win_arm64.whl (362.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

pylmcf-0.9.9-cp314-cp314t-win_amd64.whl (381.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

pylmcf-0.9.9-cp314-cp314t-win32.whl (370.1 kB view details)

Uploaded CPython 3.14tWindows x86

pylmcf-0.9.9-cp314-cp314t-musllinux_1_2_x86_64.whl (903.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pylmcf-0.9.9-cp314-cp314t-musllinux_1_2_aarch64.whl (864.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pylmcf-0.9.9-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (452.7 kB view details)

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

pylmcf-0.9.9-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (430.8 kB view details)

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

pylmcf-0.9.9-cp314-cp314t-macosx_11_0_arm64.whl (409.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pylmcf-0.9.9-cp314-cp314t-macosx_10_15_x86_64.whl (437.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pylmcf-0.9.9-cp314-cp314-win_arm64.whl (360.0 kB view details)

Uploaded CPython 3.14Windows ARM64

pylmcf-0.9.9-cp314-cp314-win_amd64.whl (377.7 kB view details)

Uploaded CPython 3.14Windows x86-64

pylmcf-0.9.9-cp314-cp314-win32.whl (367.2 kB view details)

Uploaded CPython 3.14Windows x86

pylmcf-0.9.9-cp314-cp314-musllinux_1_2_x86_64.whl (898.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pylmcf-0.9.9-cp314-cp314-musllinux_1_2_aarch64.whl (861.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pylmcf-0.9.9-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (449.3 kB view details)

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

pylmcf-0.9.9-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (428.1 kB view details)

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

pylmcf-0.9.9-cp314-cp314-macosx_11_0_arm64.whl (406.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pylmcf-0.9.9-cp314-cp314-macosx_10_15_x86_64.whl (435.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pylmcf-0.9.9-cp313-cp313-win_arm64.whl (355.8 kB view details)

Uploaded CPython 3.13Windows ARM64

pylmcf-0.9.9-cp313-cp313-win_amd64.whl (374.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pylmcf-0.9.9-cp313-cp313-win32.whl (364.0 kB view details)

Uploaded CPython 3.13Windows x86

pylmcf-0.9.9-cp313-cp313-musllinux_1_2_x86_64.whl (898.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pylmcf-0.9.9-cp313-cp313-musllinux_1_2_aarch64.whl (861.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pylmcf-0.9.9-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (449.3 kB view details)

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

pylmcf-0.9.9-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (427.6 kB view details)

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

pylmcf-0.9.9-cp313-cp313-macosx_11_0_arm64.whl (406.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylmcf-0.9.9-cp313-cp313-macosx_10_13_x86_64.whl (435.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pylmcf-0.9.9-cp312-cp312-win_arm64.whl (355.8 kB view details)

Uploaded CPython 3.12Windows ARM64

pylmcf-0.9.9-cp312-cp312-win_amd64.whl (374.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pylmcf-0.9.9-cp312-cp312-win32.whl (364.1 kB view details)

Uploaded CPython 3.12Windows x86

pylmcf-0.9.9-cp312-cp312-musllinux_1_2_x86_64.whl (898.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pylmcf-0.9.9-cp312-cp312-musllinux_1_2_aarch64.whl (861.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pylmcf-0.9.9-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (449.3 kB view details)

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

pylmcf-0.9.9-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (428.1 kB view details)

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

pylmcf-0.9.9-cp312-cp312-macosx_11_0_arm64.whl (406.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pylmcf-0.9.9-cp312-cp312-macosx_10_13_x86_64.whl (435.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pylmcf-0.9.9-cp311-cp311-win_arm64.whl (356.8 kB view details)

Uploaded CPython 3.11Windows ARM64

pylmcf-0.9.9-cp311-cp311-win_amd64.whl (374.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pylmcf-0.9.9-cp311-cp311-win32.whl (364.8 kB view details)

Uploaded CPython 3.11Windows x86

pylmcf-0.9.9-cp311-cp311-musllinux_1_2_x86_64.whl (901.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pylmcf-0.9.9-cp311-cp311-musllinux_1_2_aarch64.whl (863.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pylmcf-0.9.9-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (451.3 kB view details)

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

pylmcf-0.9.9-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (429.1 kB view details)

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

pylmcf-0.9.9-cp311-cp311-macosx_11_0_arm64.whl (408.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pylmcf-0.9.9-cp311-cp311-macosx_10_13_x86_64.whl (436.4 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

pylmcf-0.9.9-cp310-cp310-win_amd64.whl (375.0 kB view details)

Uploaded CPython 3.10Windows x86-64

pylmcf-0.9.9-cp310-cp310-win32.whl (365.1 kB view details)

Uploaded CPython 3.10Windows x86

pylmcf-0.9.9-cp310-cp310-musllinux_1_2_x86_64.whl (901.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pylmcf-0.9.9-cp310-cp310-musllinux_1_2_aarch64.whl (863.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pylmcf-0.9.9-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (451.5 kB view details)

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

pylmcf-0.9.9-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (429.2 kB view details)

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

pylmcf-0.9.9-cp310-cp310-macosx_11_0_arm64.whl (408.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pylmcf-0.9.9-cp310-cp310-macosx_10_13_x86_64.whl (436.6 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

pylmcf-0.9.9-cp39-cp39-win_amd64.whl (375.4 kB view details)

Uploaded CPython 3.9Windows x86-64

pylmcf-0.9.9-cp39-cp39-win32.whl (365.5 kB view details)

Uploaded CPython 3.9Windows x86

pylmcf-0.9.9-cp39-cp39-musllinux_1_2_x86_64.whl (901.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pylmcf-0.9.9-cp39-cp39-musllinux_1_2_aarch64.whl (863.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pylmcf-0.9.9-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (451.7 kB view details)

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

pylmcf-0.9.9-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (429.4 kB view details)

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

pylmcf-0.9.9-cp39-cp39-macosx_11_0_arm64.whl (408.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pylmcf-0.9.9-cp39-cp39-macosx_10_13_x86_64.whl (436.8 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: pylmcf-0.9.9.tar.gz
  • Upload date:
  • Size: 178.7 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.9.tar.gz
Algorithm Hash digest
SHA256 aa7f0643f8dff9305f72aa12ae6745c8a0f6aa2e1c7f98b24a88a62283274805
MD5 dd98085c0a2ba92e56d9c5f9a3a89f8b
BLAKE2b-256 0c83da2fa06420af37225950c5f7cdf136f2266d410182c45ac333d800a06d82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1b6a3c07db81d9626dfc58fcdd13578d02469874d7eade15b10283953fb1e5f3
MD5 a4e814f1fbf5d1873e0938af59b32ad8
BLAKE2b-256 d549a0aa9437909f062f4cebd64cc36853928da6346a56a3161b781a4e20c199

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eef639fc5ef269848301ef1f2e85d370632c0abb9f2ec2a42ff96e0c5b426144
MD5 2f44bf175a1abcda1a935fde089f1d6f
BLAKE2b-256 ebdadd5d75994b0d2a34de99a97032476c8d4f1953c2001399af27b772e6ef52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da25d3e4df06eedce10eed894a09d10cf54d7c9b8b217e7426e3dd048fbf21c3
MD5 398c83df692696004c2110959ed62576
BLAKE2b-256 a4141cfdc56cc02af9bcd8b29f41110ba8166c9da368f9fa7b8d85ad79518a4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c16ba15c26e8656520cb1a1de05d07e3cd86a3e0cb08fc56d28a32adadf20a73
MD5 12d976808f9554be8221aacf0bfc517e
BLAKE2b-256 45081bf9ac183a90e270691e2fb9efc12c8b5ad7788aebe8c897cd4e7a7122f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3ad8f789c4f66fe437f79de203f0d331b895f66c74071c5b95823b2c418a5698
MD5 b3da06280608d4eeadf43acc32ce84b8
BLAKE2b-256 89d5cc4504c875b0d94f30c4b26a6a106d6a7bfdf199061360237daef5c88234

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 362.7 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.9-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3784e7e37c1bdca99df28c4499cd033e6a7681895a01fcb25949518cc97424d0
MD5 1769be12ddbe15e96b0588f6c6078e37
BLAKE2b-256 c16bf6b78415c97fd28c3ad5d2daa0061df4ba303e470e8ebafc8598863b210d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 381.7 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.9-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d670ceb9bfa6bd01cabae524ddad95d346cc9bdf8ca55dfe1bb190be494e79f8
MD5 c4686230d5031b76bce7ddd92a5bf443
BLAKE2b-256 c904b7a74d26deb66ae8607207f1cba92b6aee684684052f198485115e09dff6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 370.1 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.9-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b0a81eed67c40101dd4a485d5872146fb6c232039cb1cadfee1efc5f178f516d
MD5 ca42b398f6ca601c7ea3dfdb9204fab4
BLAKE2b-256 0c5dd7d25790f4ae76ed7952290af928c9e7978878b4ed406295498fbc4c2f79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37f501d8cdf745c85649c97a5eac02b9937d014192d014d44304cd3ee9327b24
MD5 11f2d1ae58f8658ae5a92b3073806131
BLAKE2b-256 77c151194029bc1016406e4f70a979c7295f52fc2235d4d91ad3e3a612e82cbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a03271ef59b56e899ad582a446f45ec553a830638037afe702d236f6fd47150b
MD5 d8bb7315f1702dbcb95d56f29ee9585d
BLAKE2b-256 031511ad9ffc4930cbfcd35c90e1b2dd76f14257951732ca6cc47a6f6302e2cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19204746759a1e6e6b890bf821fd81e5fec1351746d5eacd4a7eb52a5f9d44cc
MD5 ffb7895fa4bce81f2d28b7b62e9dbd18
BLAKE2b-256 ceb4e914ce05cfc73d561b3faf118307db71b1c1651d233e2a9fc3225067cc37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 381f863f176f0b18b8438802b999fe6ccebe1b8be1e2710f6374ebad6abc6d9d
MD5 b8f04a9eb98fcc84c750699f167317bf
BLAKE2b-256 cebce275261159e0bdb772aef15c64efbd0d5994a88ca8663e35deda332d21b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cfa8b1f1470563246b93227c0367c42e7fe4c28c1f5d6db591face785ae2682
MD5 cd6cd652daa3e359e43c7bbd2271249f
BLAKE2b-256 00f0a38590269a1211e62381afe3377596f1648a66cdaed0de9c7600b0cc906d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6a9f0c81a01b36468036613226ea2c1ed731a6a75e2c200e96c6e89359b49a58
MD5 163aab6b0d5bd5b8475b96228edb34d0
BLAKE2b-256 fe1ea93ec6840cd45d53443355d0cd477e385edd92e55f2f0c46615f57f680ae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 360.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.9-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e1a8c45dad92d6d7cecccc0ba2f10582f15b665d02cc4aad2d9f2a15cf525337
MD5 fd2d30f96a73aea8d8706f494e7eaa12
BLAKE2b-256 691df64754cb2aa89b1ace106c986e156ea9b5e899f780afc87c102ec54ce3dd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 377.7 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.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0ba1b7aa19dd3c8dee45c73368cf9edcf3b9ff0782c3d8678d5b9f2abbe80d0f
MD5 84e1452e3d3d3a9eb131c0602b97f1be
BLAKE2b-256 a696c0239b2a384321d8b4a55175ead54d3305e9fde7fcf86cc1a7815e8a82fd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp314-cp314-win32.whl
  • Upload date:
  • Size: 367.2 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.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8183bda5dd417a2fa6eb6d0a65320db44e6bfe186384c59166d19c6965e8b1d5
MD5 ef45aaa54ed00af267f76bef815398ea
BLAKE2b-256 426bfe9ef0082762c690b77e6f1ac2d28d721a61449146635a3fa04777a6834f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8cea4f2e4be3af016727a61014d6f9e3c23cb75feea64757d522cc67cb32664c
MD5 289152033be8bc4b6d0f08b3c6bab915
BLAKE2b-256 02b00aa648588fa79b2d3f29bd6b5811bf9d1410c0382442da795e292c090659

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3cec38bfeddca2dc08baf5259aaf6e8f15851d7b5011f1ce4771bd8b2ba1573c
MD5 740f92dafb24bb0e9621db605d07ca88
BLAKE2b-256 a4087e8bcf26731eefc521120a93659fea69f1572183aae4304a8eb3729e846c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1423a9337e40f9a732dde6289498112cde110d8bab2f4a161abc9ad7f9a9e43a
MD5 5f26255f27f5b098d3338675a0f42367
BLAKE2b-256 86ecc658d96a3225fe78847d4a6cf5f5ffaeeb667f3cdf27002f9aeaf370098d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c40ff0947d5561cb1a37cf106bf9cef4b204929e5c3e23d5aecffed1f6ed700a
MD5 eee6f8b3cbc5bbeeea5fe754a52dee2e
BLAKE2b-256 c7709abf47c4db31665f61069a42d4ffc5e2eb640fbd20d04d02db5cdcb92398

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e81c278ef7fb2b6eff065512e96e4486963a7fe7bca92d91e35dbb2027a5f1d
MD5 8b15df78df6eec2757a8c12260b330c9
BLAKE2b-256 18ff86ca7a11821e91d235eb3a5547c2d3f39c4078ed46be47f5c1338dc70aca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 78be74d2e91ebecfb4d19780edff59365ea95a17355c50961435d2eb26c64361
MD5 1b2a34651516a2b8f2f8a2cf060e5de5
BLAKE2b-256 7b401ec1ed139642f1a1b311d35467f4d9fb7a8a4dfad32d0be1024930567b52

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 355.8 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.9-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b8028e55db7ec172d00ff6c6dad0468df2ad2b4cd8fd986e1c0dcc164ceb8743
MD5 8d7740362c42b9ff0b3a4378542d8060
BLAKE2b-256 608babff5bac126b2169383130b6e06cc4e98e122d985bac49951a1de914bc55

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3037ea9e1e43b87398e437eb71aaf89aa73a2de1fd2ec42a78f285c2469602a0
MD5 bd481b9a54f47f8eb3eea6d54171404b
BLAKE2b-256 780a3067960f8d570b5a88b3ce98684ae93f9a6baee8a0aa820e0a37064df5bf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp313-cp313-win32.whl
  • Upload date:
  • Size: 364.0 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.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 85402dd1a42193f8c95eff4f80284fd1aa8efec72dbc04a50be112d0341033e0
MD5 ad8a196115bf4ae20af28e79cd8b62e2
BLAKE2b-256 49dbf897acb613fa6ebe0dbff815da281d78bd68744936130b103739c4c579b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6c8980fecc9dcb533cd097fbe8296395056477e3f109fb19c5f5b1f2ced7617
MD5 041a96e7af475f1c340d2f71a567d34c
BLAKE2b-256 30db84d677b3933e0592787133084667f04373cb6c50729b2aedcea7832300bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e86793dae5ee2e07aaf87ca6f3d12a08f62e5a3b20813cda5267becef4d9a2c6
MD5 ec69263cff40f05a820bf64c52e5d16c
BLAKE2b-256 56bc9e0559d7164b6bbcf210e2ec5401be5d280cd6030f64eff69627002f16e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1656aea30ac287809a90716f6e3b59527d0b8ddfff661de24ebb5a04214d9a3
MD5 baeb4b1c66c0cf169c8dccb5e5c22d1e
BLAKE2b-256 72f3f71db65fc08d87c29b881c7cdda0d51290107c937ffe1d9b062fe71cf0ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 adc773f5d4cc1c675eedea40c432eac23c1be8a0106912ee63172f176b6ae526
MD5 0c07f6702d48aa4e0371133892bb9cf6
BLAKE2b-256 6545a4976a8e109eed0d9b76d6f85710b090a7ca07882c8fabfcb7e767b23a3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 712aaebe9d046e7b1270e1611f0899303ebae3c066e7ea4f95c317cf3c75ed65
MD5 0916099c7c700160277485523ca70851
BLAKE2b-256 8414afb06a03ad9c82f4e83a8af1221311b2120f96c324140acef20a2a25b992

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d8c0322712cf79d8a6e7434292cebc44f59f17cc29f3f6c409e986275f7de874
MD5 c0bbf5b892fca902106d1ecd14a8c0c5
BLAKE2b-256 e376f2c95827d64510d6de63e591e2b78ce521c6a6f06caf547f9878892abbaf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 355.8 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.9-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5065d7642054506a1a0ab26c783ec56b18036d93550ec9be124246937bb1ce05
MD5 7734db2710dedb617356fcebfef0e19e
BLAKE2b-256 d68b11855919cb1da663209a4d84bc4e53685faeb0876e52fb71bc01bb682884

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 374.1 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.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ac1e33234bbd2bc1f14b56969cd88d2fb603fc80471b72550212208f3125dd02
MD5 229e9d64b8b015d548df14e931a67fb1
BLAKE2b-256 7bfd6b4922e54d543ba5a0a9801184096cf6a65686e0ec5c6925dee731045ce9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp312-cp312-win32.whl
  • Upload date:
  • Size: 364.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.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 16f3e85770c29f898c9248ee8f96f64ef4286475f85a31e3769cf50fc40390e9
MD5 d729e427d87b051e02e88b337074447d
BLAKE2b-256 6f7ffd52fec61d4528239b244b6555394af2edc3944767594e57d0cfeb7f8807

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11655e6e717174d05ed68e3273440dc6673d39f511932497c2c8beb377e4f692
MD5 ea94bc17e1bc6496931b13c456f1e4ed
BLAKE2b-256 e120ac8fd1891b785f6bf7b86878a411d8a04ed93f1248c7ec748587c1449983

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c74c4ee032c983bf392dd7d201e0aa57bc240361633e68dc1216b73d0f9f2f3d
MD5 7a05611a317a8050e104503ad383b1b9
BLAKE2b-256 9f119d2387e27c5b20fa6b01226a3c3dfd34a43974fe6091557b209bffd463c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f3b7eae7a83e35604802ee20e92c4b0a2474b228bd0fe01145b3c16b9c896f2
MD5 c93ad3b033d0bd192c4cc553c47da8c5
BLAKE2b-256 23a5a2acbce40a9ea58251e3c0958306c60d8de8dc2eeebc051ea9bb8f3a95c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ed256b0c9627a17ecd9d9f168f2bfb662e7f7e6148bc8c7b3ff15e24cee1a458
MD5 3093b52fedd6666387b26e2a72ea8cea
BLAKE2b-256 f4717b6c048020ef3d7578ffe95a81b73cf562e5d4518b94d5066af9c822a96e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c4b4127d004e6ee968a3a15bcdbb50333560e54ee89732eaec2d6c73e71279c
MD5 f2eed6739fcd4a8e16e04360f2ef9fe2
BLAKE2b-256 8ddd6801baac64c15923e40dbcd9945f62d02a5c87bf09d7571c486fb6e2f063

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5732665d828889a1bab33050c8106c5bf6a71d38df99f3cf835fd7a6427cc07a
MD5 42f4732084836608d1e45b8e724e7fea
BLAKE2b-256 8ca889381606a5333454b7b36d778aa77fd34185756a3066fc9a5c8f60a9ba02

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 356.8 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.9-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b526da8d53ba4172cf594dc2580a033b2dd15416f71c1be7c07692a797194094
MD5 590a3581484bca3d2b17ee053121fc23
BLAKE2b-256 2cbf17088d333ed2e7da52943ae2e730ca028491bb15143352598d973fe95729

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 374.9 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.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b8ce5a9da0f55d872a1d4c59a7df8e4a5c1e30ed0acabcd4a35fdf4119705257
MD5 346c684cdaff593e7df6af713ef502a6
BLAKE2b-256 91a64f11bbaf1f92cee15f9eba831eac0235fa185fe0a616443dbe5a96483d9b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp311-cp311-win32.whl
  • Upload date:
  • Size: 364.8 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.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 85944705e08af324c1e79449d84bc775548046eb7e247d549443e5b97f6bc641
MD5 75b282f69c8cea1312400f9543516bd2
BLAKE2b-256 e3c324c63f3abc5099b872b1f9097a7f64556fcd708346b0a1da5504869db319

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 257e25dfb4770c5b135cbe4557a7c7e6e109c2e8493e82868fdadfa2a7d90314
MD5 3c15184eda1c39676df58e3c82e8fd49
BLAKE2b-256 39f2c1677b4c74a141218d0d0bd6c9b9fd884b00ec257c4704c0737117ab13be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3693fd08059202832f4156555258c6daabb6881f2c0c9dcf92897016479ff77d
MD5 66aae326f9fd116e83ab19fd47fe2a4a
BLAKE2b-256 dad5f7e10f144204cdd57b61bf546dd08966beb99f3668529f7dc39194dafb0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 88be9aa96d739324f2a4a8cfdaba101dc6842f2f425d89c84aa23981e48dec2a
MD5 afd70dec046a707b2ee66b211e923a4a
BLAKE2b-256 0b8193cd0c44db9871960e429ba06cc2913cbf0e9f3695d6ea4fe0a3bef1f83e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f0b885ff5b45c22fb2e6b893902458fabed6321fa1a6c40268b373cf49e3dcf
MD5 9ac5ba6794335995cc75301e15c260ff
BLAKE2b-256 2d6a63ce4ce3e58a686a0d36e884223f043d01574eff6cfa03b6da54f292fcc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6eccd7c7f5ea397748a71d3b59742726e80047438e4bf15b048bbbf3c6576d10
MD5 a11043be83c13308fb4258267a35bbb7
BLAKE2b-256 5dd95e58c5a43a93bf70e91888e026966cfaa4a01c168638db5ab4741b3b6335

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 469546c9ecf9339af473ccfa9f10728992a7a114d19045299158dca192d81937
MD5 482be26bb1ba422a7d7aadedfa52d029
BLAKE2b-256 3fcad47147acec45ad2b9ff97214d079250d04677f1e0b9e5fdef5b267d03f30

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 375.0 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.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f413f7faf44040d058beafb5c1f4acc75069eb6ee03df7049d11598dac51f04
MD5 9f4514e19363adc6ae25160f8030fdbe
BLAKE2b-256 4f12650b239b4333e735b8ce35d6f5134e0ecd6b777d8064a3abd84cbed4930b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp310-cp310-win32.whl
  • Upload date:
  • Size: 365.1 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.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f827319ae5e31c3cda8e01f1b0b1b55beb9b97f70bee5700ebf7ebf2cba62f5e
MD5 36e72a87c1ad6f9ddc4807a2479f28e6
BLAKE2b-256 54cb224c1bda831113367a6a80e882f55345affd79991b01cbf460395dece178

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39029e992a7361efe5ef58dee08e3a2647557357fd14bdec9efe9aa7a749cd96
MD5 1f529d0b25742ff2c7f1c3a0b0645810
BLAKE2b-256 b9af5fb31e1efe929178dbf1743fae0225d40583cb5f21ef81906ae364fccad4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05fff01a5ec2a76ba6731a3e908b49a5c48954f570af980429cc6b7f5112cdb9
MD5 f2851e3b8820a7f34ff79afe0828064b
BLAKE2b-256 a9f5f28d0150b2137a5f3cbdb40dbc8acad27311babbdfaeded6aa3f83408eaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8363a475541fbb1ce0c2ce1f36addf9cfb3cdc9fbc0322c274ea8c119781a567
MD5 feb7e02176cc3ac5ae1433bf67e935c0
BLAKE2b-256 98134983fbb488564416d308ef014b2c8edab3063f4081647288c001a582e11e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b023d84cdfbe6c88d4e91ca5249fecf5d0f599f2f21f0f8c55332a3d27649d5f
MD5 2dd228815e0406b562c3d1ccc9c30f6c
BLAKE2b-256 25318e2c92ceca2774e31e83beb51d3dc32b0c03f60ed72fdcd01a323c920905

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 579609845baedfcfcde168176e9bedc11bceba5f359886ecb8d4ee66a38571bd
MD5 2eb0586df5a69b3cdc80f419381d790d
BLAKE2b-256 38d3264293e3cf9e69cd874f4bec4fc8a4fadd981ad1250ee6d0ee22da0320e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b545b0ceacc111752bf1ab8389926ae448c24578e9e48ee59c1a0285cd283882
MD5 9713577c602747a90279caf9dd4ab98f
BLAKE2b-256 365657402bba9e6d53d012973518fb8d51986861d4f7fd1f5e18b75e39a637be

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 375.4 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.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1fc13fa2d96906750554c77f35c6d3472b7330ae726ed12d3417770914498a0a
MD5 b5c67676adbcbc4ad41b6bf3a3a7166b
BLAKE2b-256 ff7df38e092cb879746a072672caa1ef9301608a4302a9f08bcc6e1e9e432a7b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.9-cp39-cp39-win32.whl
  • Upload date:
  • Size: 365.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.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d4630fabfb529ac64d750607f27a21b901452d611faa2b631c533fdec661c0a1
MD5 0aa34640e42cbcf36a606865550c6ff8
BLAKE2b-256 93e96a5675c4cc67b7771dda1b89453466d1f04684ecbf5d98404bd3d914d52a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2125d0280170898e6e854f3e62af23fd2c4053c61c29607258e2fb6318f3f2ec
MD5 2023afff8ada301eb4300dec04048bf5
BLAKE2b-256 c181018daf803b3ba936a7d89262f143d3d9590b62069f6682a4fe8d25f7fa99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 768b3311921d5d7654fbfc8e4a4dbf0d0d75b426a31aabcf6f4e3f715ff7f149
MD5 c65ef61ac5cb0f3b9d3ca46203fe66b8
BLAKE2b-256 67102377e72ef3f0ca42a8bf443f24e8dcab0bba6d2501d02e2551e167d8113f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 60de67d6744ce59840c6dd0c70a7044a9d8e5c4d1a96b805ea7cd1c1706284f5
MD5 1e815a9722dd7c26eed3285096f9be17
BLAKE2b-256 13b2f5b50eee281a5fcb46bfb2f72b097e3939b9bcbcc0dbfc3fbd5ba8d0e1cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ce2d1f01fb761cf01eb9fd0071695221ce93f07314d57cdfa65f2dcb3418ccd
MD5 5b5bcc6965814a0acd03fc11467d580f
BLAKE2b-256 8ac530b4a36220f5abf3decae57bec3222f53f4292914593acd2b8a627d339a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58dcd6c788a057e2bf5680cbab25e7fc82330dde8dc18b913a8b854d8459880f
MD5 037feb87c4f9f4ac7e944ab451bb78cf
BLAKE2b-256 b736c67804ba5695b76e90725879a3ec532088a39e68ce8f9d4f26dc41d1a677

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.9-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 96819dedb751ea676f73b1182bec7fd008eedb5255ef5cffbfbd9045ff894565
MD5 a1deae6b2ca42d30d4a1fe899f02fb8c
BLAKE2b-256 c221d6b4c251350d47667d0c3784800baf4d74082445167377977487ae4ce970

See more details on using hashes here.

Provenance

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