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

Uploaded PyPyWindows x86-64

pylmcf-0.9.5-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (213.4 kB view details)

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

pylmcf-0.9.5-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (204.1 kB view details)

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

pylmcf-0.9.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl (166.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pylmcf-0.9.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (179.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pylmcf-0.9.5-cp314-cp314t-win_arm64.whl (168.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

pylmcf-0.9.5-cp314-cp314t-win_amd64.whl (183.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

pylmcf-0.9.5-cp314-cp314t-win32.whl (175.2 kB view details)

Uploaded CPython 3.14tWindows x86

pylmcf-0.9.5-cp314-cp314t-musllinux_1_2_x86_64.whl (668.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pylmcf-0.9.5-cp314-cp314t-musllinux_1_2_aarch64.whl (641.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pylmcf-0.9.5-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (218.7 kB view details)

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

pylmcf-0.9.5-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (208.5 kB view details)

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

pylmcf-0.9.5-cp314-cp314t-macosx_11_0_arm64.whl (170.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pylmcf-0.9.5-cp314-cp314t-macosx_10_15_x86_64.whl (184.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pylmcf-0.9.5-cp314-cp314-win_arm64.whl (165.5 kB view details)

Uploaded CPython 3.14Windows ARM64

pylmcf-0.9.5-cp314-cp314-win_amd64.whl (180.3 kB view details)

Uploaded CPython 3.14Windows x86-64

pylmcf-0.9.5-cp314-cp314-win32.whl (171.8 kB view details)

Uploaded CPython 3.14Windows x86

pylmcf-0.9.5-cp314-cp314-musllinux_1_2_x86_64.whl (665.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pylmcf-0.9.5-cp314-cp314-musllinux_1_2_aarch64.whl (639.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pylmcf-0.9.5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (215.6 kB view details)

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

pylmcf-0.9.5-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (206.0 kB view details)

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

pylmcf-0.9.5-cp314-cp314-macosx_11_0_arm64.whl (168.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pylmcf-0.9.5-cp314-cp314-macosx_10_15_x86_64.whl (182.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pylmcf-0.9.5-cp313-cp313-win_arm64.whl (163.1 kB view details)

Uploaded CPython 3.13Windows ARM64

pylmcf-0.9.5-cp313-cp313-win_amd64.whl (177.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pylmcf-0.9.5-cp313-cp313-win32.whl (169.6 kB view details)

Uploaded CPython 3.13Windows x86

pylmcf-0.9.5-cp313-cp313-musllinux_1_2_x86_64.whl (665.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pylmcf-0.9.5-cp313-cp313-musllinux_1_2_aarch64.whl (638.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pylmcf-0.9.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (215.6 kB view details)

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

pylmcf-0.9.5-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (205.7 kB view details)

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

pylmcf-0.9.5-cp313-cp313-macosx_11_0_arm64.whl (168.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylmcf-0.9.5-cp313-cp313-macosx_10_13_x86_64.whl (182.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pylmcf-0.9.5-cp312-cp312-win_arm64.whl (163.1 kB view details)

Uploaded CPython 3.12Windows ARM64

pylmcf-0.9.5-cp312-cp312-win_amd64.whl (177.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pylmcf-0.9.5-cp312-cp312-win32.whl (169.7 kB view details)

Uploaded CPython 3.12Windows x86

pylmcf-0.9.5-cp312-cp312-musllinux_1_2_x86_64.whl (665.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pylmcf-0.9.5-cp312-cp312-musllinux_1_2_aarch64.whl (639.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pylmcf-0.9.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (215.7 kB view details)

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

pylmcf-0.9.5-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (206.1 kB view details)

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

pylmcf-0.9.5-cp312-cp312-macosx_11_0_arm64.whl (168.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pylmcf-0.9.5-cp312-cp312-macosx_10_13_x86_64.whl (182.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pylmcf-0.9.5-cp311-cp311-win_arm64.whl (164.1 kB view details)

Uploaded CPython 3.11Windows ARM64

pylmcf-0.9.5-cp311-cp311-win_amd64.whl (178.1 kB view details)

Uploaded CPython 3.11Windows x86-64

pylmcf-0.9.5-cp311-cp311-win32.whl (170.3 kB view details)

Uploaded CPython 3.11Windows x86

pylmcf-0.9.5-cp311-cp311-musllinux_1_2_x86_64.whl (667.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pylmcf-0.9.5-cp311-cp311-musllinux_1_2_aarch64.whl (640.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pylmcf-0.9.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (216.9 kB view details)

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

pylmcf-0.9.5-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (207.0 kB view details)

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

pylmcf-0.9.5-cp311-cp311-macosx_11_0_arm64.whl (169.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pylmcf-0.9.5-cp311-cp311-macosx_10_13_x86_64.whl (182.9 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

pylmcf-0.9.5-cp310-cp310-win_amd64.whl (178.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pylmcf-0.9.5-cp310-cp310-win32.whl (170.4 kB view details)

Uploaded CPython 3.10Windows x86

pylmcf-0.9.5-cp310-cp310-musllinux_1_2_x86_64.whl (667.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pylmcf-0.9.5-cp310-cp310-musllinux_1_2_aarch64.whl (640.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pylmcf-0.9.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (217.2 kB view details)

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

pylmcf-0.9.5-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (207.2 kB view details)

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

pylmcf-0.9.5-cp310-cp310-macosx_11_0_arm64.whl (169.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pylmcf-0.9.5-cp310-cp310-macosx_10_13_x86_64.whl (183.0 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

pylmcf-0.9.5-cp39-cp39-win_amd64.whl (178.6 kB view details)

Uploaded CPython 3.9Windows x86-64

pylmcf-0.9.5-cp39-cp39-win32.whl (170.9 kB view details)

Uploaded CPython 3.9Windows x86

pylmcf-0.9.5-cp39-cp39-musllinux_1_2_x86_64.whl (667.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pylmcf-0.9.5-cp39-cp39-musllinux_1_2_aarch64.whl (640.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pylmcf-0.9.5-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (217.4 kB view details)

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

pylmcf-0.9.5-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (207.3 kB view details)

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

pylmcf-0.9.5-cp39-cp39-macosx_11_0_arm64.whl (170.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pylmcf-0.9.5-cp39-cp39-macosx_10_13_x86_64.whl (183.3 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5.tar.gz
Algorithm Hash digest
SHA256 be1978f68b9296326ec3aca77188dd4c6aa59ff0f0c615e750bd8bf5f79463a0
MD5 84c1aac3ee6b198bde8eee1421a83995
BLAKE2b-256 3e3a492fd2c83db80585ae8f433fefb81d30e471d0a1866ff88c9af03e5dfefe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 83b1ae04f5a67b63dec745ecc3972ef380a8e104740768a6dc45d26361ca092c
MD5 f1ccc497011998a792ea4da9296beb9c
BLAKE2b-256 c44ba4eb771078a7532f3e2f5e33c52ea7562bbea0e827170aa638eddd530497

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6b654595f1787d23b2ba8ce74067a5a95a8e171f2d0cd374f2f0f6939a0378e
MD5 c8e218dc09897cb5572293bef0486ad8
BLAKE2b-256 bd064edfc64f051e76611daf109589946ff73018b4a0998185f86e599149c9a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2fefa6b80ee21750d16cbb76da7fdd43de95311b0f8251a33c2148bf6960c2d
MD5 986e1b82ec200f244ef02c016dc7de68
BLAKE2b-256 3738916117709207fca1f8721cbc70c2b629c91b9cf714a3abfa1d480b79a422

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6331714d5b6a77fa8c4667fc2eb169a56ff1e741ea6e8e12153af71314451c60
MD5 0a571b90ed8f20283be2389a7197e43d
BLAKE2b-256 b073d44434333d9e5468bd57febc1b0a33e702522dbb7fadb5c03cb1188b3267

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ca51eba99ae576d1ace285adac0c6078cb8b9f4915e01283188999346678dedb
MD5 6a099c5fc2caca49e230c664c1806d3e
BLAKE2b-256 961c6bbe031bd140555ca5bbf2c00b4d34d6fda8968736ffc7fbd67f5f2c7fe1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 b750490e933cfc5e33eef02857104c0cdb7ed2b85eafe55d58cdd6d87ba91bcc
MD5 5996875818a1b10f8f7493a8ce250203
BLAKE2b-256 0025271a22c044acfcd7d484ebc9251b78d23fec2955dd11dcbabd241e902e80

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c410bd8f7c8e1aa38c7d9b7548b85f468fa343ac7ac2568985545227aee7d7ab
MD5 0d948baec7373b0df218af6d295268d2
BLAKE2b-256 dba5e75f54aa8b964bc822288a15e06cf63ab2edbce204e3ea04d563e62e47df

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f81df5c4f14ee7d6094a6895a564bc7e6afcf53a9db3a396e5d6dbf180d1cc47
MD5 dbf1dee4f20ad8a541a992d3acea6438
BLAKE2b-256 4e5e8a1796a8ea97e577921a2695b8f9742770035a29f824ab6fec419643d1ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c53bcd45118150efda3ffd04bae48489f8456c6cccdf6a51d0cc103ba8e9b702
MD5 5a2443a27b27facd9800cf1e0a2e992a
BLAKE2b-256 749e1df91ca2f3bfea10b17c92f80a8d7ad0b6a15916ee408e3b688c668c2caf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8d2076e2d916a2eeb2465728c5ad333fa067299be212e27301de175dbb5a30a
MD5 32a2f9f63b86c57e55adc137abc7ccbd
BLAKE2b-256 09e171343ba7a6ceb3d8bafe08337fb45f90eb194a62638bab0086cf1d19deb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba391f36fac5dc0266208b262263736a50bc52a34b802355d0dc671d362b4f76
MD5 0baf1779b8e5096653f5f589b6f76c8c
BLAKE2b-256 1ff6f8d8d57a2156118f958c4e7a57734bc88da2e178bd238d6307205ef04a97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf0e4bd03fcc7a5c0d75595ec9e7d8a72be6b03f0cdc0f7284ff7973effb715c
MD5 12d4f93520e4afdb24f889f8abe68dbe
BLAKE2b-256 9cde0095daaed44f22227a84db8b208bbe364214d7e3d9cad3b37e29e999f098

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93efc8f59fe74568a142ed98ec72a6c4e5a533292d7e9f4087d087c0a1039cdc
MD5 2487c13e754c3da8292773a2f7efc33b
BLAKE2b-256 b7280fc5ae922ec3e94aecd18f9f9067f07bb21df1f933e417a521bd67307c10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cb677437da9ffffdf329f3d9f80017c7045218f7ef58953eb684b7ad354f1520
MD5 a00015e627754848656594f10e7c3f58
BLAKE2b-256 af7e20b06afc19a326e8d00af5b802145f0439b9f36115103cad685aaa0ceffb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2d32f568e9b01a26c1d5786eb0fb8211b74c68d47ea92d78cfce846d25215abd
MD5 a6104ae6c3cc688b2a2c45eb010b806f
BLAKE2b-256 7f45c0624ce3e5e3926017d93c5785cdf9562402f68f5911a8c57830b8000c8c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6458c44581158f382905697b17475025be5e93427013a93d833d7de95949fea6
MD5 1f552606e83ac0963dd8a985a1465eb4
BLAKE2b-256 a2a12e506f827ed51c72c8fa986bcf25132394994ecba0039c5143a7304111be

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9e46b4051c48c1be9e3b8d99061f508ef634c2ccc077f820c8800b55624b401b
MD5 9c9bfc3c2a36d0e5998324d969d076d7
BLAKE2b-256 5076b1ee2743d35b938a4ba1ba64fb72fdf534d385eea43dfc6658fbbd269a92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78287f84cd6cf7d71505a40cb50fae412a7d77db2cf245cd29d8f16bf732f69b
MD5 f80fb170c4cb79b3212e58524d70fcb5
BLAKE2b-256 2f96a893e2ada3d15e00117830bb396e255a1c83767f807423ce7c472e6c1069

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ef015a659c41fb0420a968eb3cb76d4e6e1bccfff32b2afe3e9363161299001
MD5 d7e29fb9c332858bdb712e44d379512a
BLAKE2b-256 a4040e1b93613fcff1a7466fd4088f82c63cd464c506585c68a6ffb9fb6ccf6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92b8f4e415d139b0bb1dcaec5678b4d2e3ea4dc783610db276c13d9581e1dd34
MD5 5f0837b748776ffb296ae9e69e110e72
BLAKE2b-256 3ebccac521de71b62dfb3225977c3b4ec4211b8c2bcea7795ada3f3750e28739

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 31762af7ce5d84565a4a54e4447239080c425aec1c95225f6dd58aababe50ddc
MD5 7f2f461bd0934f12beef18c67cb15401
BLAKE2b-256 3bfc05c15b933555a6604274f8b9db2e56af26c42b929678a39c0b9e6cfc3d01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41a3ea4d8c2e4b203f683a3ec7d9ccbae198b510946b710a2c3b6e273704e7c6
MD5 52b246140b83afebc9909f3ad43848fd
BLAKE2b-256 df512c46b996b57c014c1acf07df83fabfaf77142982a66fc8e5d0b603553379

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b61e9c4befe41aa4598eeb8186c2e8fd1f6d5f59ae3ad37aa5ef047824f28115
MD5 3b50e246b27e1f9f5eb8d90c12011f85
BLAKE2b-256 a5f588f6f33fdf946f35ba7abac6cfb41a834ea443c422b5a3f38a4b27826358

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 afb6c50206338f4add84e26f83885507069df6028c1dce93928d7394f5795b59
MD5 8c39fc89da4d808858c9a8f4721aaa75
BLAKE2b-256 6796587af85d277477f9889eef4bbe4b4328716ee15ec67fdd726174f1e31834

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 802d61d81c3affb9baa5113f1c8f142188ad6cc5732600500bab46a29a3450e8
MD5 d2a91302ba3f72fe9287c8223c89716f
BLAKE2b-256 7a37acabe31a55dab91d2f51629d4ac34155db391ca921d2f5e0a404d9ba1706

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 38c3f17486d3c950871e9aac869ffd105a6ee0cfca52072c36f5eb821675c29b
MD5 ef12e021cb66982ee2b312bf0dad98b2
BLAKE2b-256 f71088d44bc76a2e3cdae0b35592c1652c86dec8a78244cdab2bd19c66e9fcdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d08b054a3985a3a343c753450d0fc3f64883147855ddefbba179a1abddeb6f23
MD5 594323443b60ee404982c121a477d9de
BLAKE2b-256 bc89a375e0d14b0631c8f960940854535814a1c61a4bb987e544704db5468960

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0d6dab7fd3ac7af3ef5529b413223affdc382bc7f8a3bcc6d1e42244314688a
MD5 6e5e952d32d0255b3b6876641b1d6160
BLAKE2b-256 5f707dedf5eb20ae77cca64fd004a9d54aee455e593c72456990a589c52449d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a79f2e3657c82f24833bcf1bf2b630d09c9e96fd06e2a466ccaff863f0337792
MD5 fe193067413eabf90f781cdc8e1fdebc
BLAKE2b-256 3aaa93478c1fec790a6247164e42b1516a21f6fc0016ed75bb3228ecef37344b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 079ac25f7a716f09815e60fa605948bd959b647aa3fd2d275d483c3487b49d35
MD5 a12dd6937ca1a876eec26e457cef37bc
BLAKE2b-256 6ee3134dc22374b2365aa28f0885d9e83e56d325e83186c82b07cfadc4ca1658

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67f93eef4a1999c53d4e7141b3962163475ffd44110f314fb02f5676314c94dc
MD5 ae5a64b5c1b5a23d79dd0406c2d55790
BLAKE2b-256 fc822b6dfb717115914f1f0a0619ceefc475881f68b5a1fcf89360cd1b0b96ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ff8119757da10e61134c2c2e4b05a39bb6e1b0d9a0a520b082f9cb9d02b29be2
MD5 758e344e10f391379acfd2cc62ad5d1e
BLAKE2b-256 54f65af843dd808886f80ff47b838b113baec7a90acd1b668adedef218844b0f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d4ded667b89d6df63b8e1ec16572a9179ace86ffb576b5f73063e9ce1387535b
MD5 7d94d518a5bb424e81c9a348913ed5bd
BLAKE2b-256 eba6fa13d3e2634d56254a168cea5a3f7681be814f6cb66eadd7ddb118b182bd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e33b79a5d3c4b365b5c5a2509969af77c9e2b3a0d8727e2058f9127360b856fb
MD5 bc49929765a5928390ff29474f224d81
BLAKE2b-256 ffb1fe907698aaadf4433c7ce0f8f335f89ffd9f2341186b95fad2a9bdf51f19

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 46aba857564ae1db4c017f8100e16cede5128aba146fbd7ba308c2331ad14c22
MD5 fff68d4d211b95962c17bb471c170963
BLAKE2b-256 bf5ae1f1708b963c37e1de00a3028423a935a7af8fbd66f49c03dc3c2b5bdcaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3e3ffd0ab4220e2fccd6c53c5b2cf6e0c186e7faedda7a5b4e47e288f526bb1
MD5 03bd9640d1be2a067be85f6161c14654
BLAKE2b-256 c46f0f673b186e7dab079fcceaca9c000b7ed638d4b7465030e968977321769b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c18d0586ed71913b170403fe0b8ed67464547cddafa8168c93d5599d1fb7e553
MD5 5a36835c282c41c758e2c9846c0cfd33
BLAKE2b-256 d6779663f530eb61b46c8a360e4b2dd5018ba808d4768955aad834ab1f04fdf8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a01c7fe5d6bedef2324307a2ab0890ce7752e41caa0339a43fc1fed1f0c50e5
MD5 c70f0402bda2f03f3f5c822c65927f8a
BLAKE2b-256 faf9fadef6acb07147c901b39ca3b1b28dce3f07dcfbda5391df10a6ea08dffe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 90fbaf4cad41d62cf07894d7daf6fc3ff8aeb78769dbaac10f0103f01abf4d08
MD5 12c96e153c267b935221fb0357244352
BLAKE2b-256 4a8bf45083d6c564bbd0f6ea3116fcf2805a76be9d8c516661285c9763ec5fc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b8fcdd63f967e6e186ca3a78371d8e0fff47a603d0674b01893f9e3782052ae
MD5 37c726dc6869fe6006ea15dc013b69dc
BLAKE2b-256 e397147aaabccf41e7bb81274d03e0a5a9de17d39b61fcefdd80d395e2387963

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5c16a204fd10420498653aba7811e05472488aa28b64f55787c3ae313386b07b
MD5 add91af1af9e0ad187496566cd87925a
BLAKE2b-256 45b23932d7b453af21a0c396d584a6b03ac9431d516261f648fa3663c32965a3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e314f580050a3fdbc404cdd3bef8d6230cd19b86c62c38ca93be3ec1513bfb95
MD5 7ee0028504335c3fef2f9b2c041e463a
BLAKE2b-256 bc2b2fb5c8cbae6144a26cb1a96a259df28fe153b3cadacf94d5f3083ae0dbc1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9a66f02478850bd1a2927efbb903cd038af476b0110993ccce85c220152b934e
MD5 476d68881b4f7fb4c1eee29159157916
BLAKE2b-256 b3bbdbbf91abc4819a20c018bd6ec85771112579215814263ed903b385ed6628

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 96f5437132d5e743216a99f1da6ce0ed3e793fa851c3698d4f8efede5868d4f7
MD5 7157678a100e27ff21cd3b1afd6dd02b
BLAKE2b-256 d81250e8a17bd1cffc6eca51837b1903634b961036721c96656271bb93dedec2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 783da117a6b68f300390ea6bda29803edf49e6a82152041b2593e4768eb12439
MD5 54be8066548990bf76994becbba32e2e
BLAKE2b-256 ae2f22fa4eda28123d4c28c710e8788de0e298f9b743e10af2c0e5a7db657c00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 496fc5d168c468269185f439750e224ff4d247d5978d28362ad950a63c1ea66d
MD5 b28dd424d850ecdad3edb50a623528ff
BLAKE2b-256 aa35a7e15f02249d08ae2a70f55c04b1ee5f061c583b10bbb3613b43c47970a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5e85a0752d9687f6756b6c7a1ce17e05c268bb2023d7f7144ab7da04eba8e3b
MD5 5d747bbb24ca5ba0852fe0a2ab5b6676
BLAKE2b-256 6fd0ec6c065ddc94e073c8832c71d38c4b1d3ed74beb78dff04bf5d788fc2001

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3ab984f054192cc2069929b1ac7c008df13b9c6cf8d5de4b0bc93882a8dea20f
MD5 91ea7377107c27958f51c80ac4da696f
BLAKE2b-256 8df4542480b703e9b3b1d86fe8df56b03aea7dc36fda608cb597ae9f4918db5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5af94cea57c960a7ad1127d7d461791895858539e08aedfab072ba12c786c23b
MD5 909dd20c06dc6e86902ebd7c6c519e97
BLAKE2b-256 1485e26b92264fd7b4cc2fb9aebbd5c32d64787482ca12c9e1dd98fdc8a2da01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1cbc8cbf5a5e6a5b0afd8ca33af332d6d618ea0d03609c674155ad851155e3f9
MD5 70b4c733c1b76469f2fcb735805f6d9c
BLAKE2b-256 563f0d3844827cd5706b0cb85bd806df62a61f9d0c56747bdd96699ac04513b2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 87ab1fa9c21c672dc06cc0763a2b8aebdd14df772a61ff65c44041c6d1826031
MD5 39bfee302d341e84a9307a01a38b4ca8
BLAKE2b-256 f0ea55b5b019f9a4ee4ab6ddd4f0bfa923e855f46b67e755a1f83ccff94cfa00

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0e0c215289d0191fc44961eef8c876a39b117eb74b1eb01bdeb71a20fd37164d
MD5 caf4b7ab42e4893be0f70f82af497e40
BLAKE2b-256 29d1914c78783bc901ef53157951e8b987c13a416d221be5c0fbe05163b00fab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbacfea901ca716ab4ec782481a43833ba8bb1f2eb6e2db7e576c56acb9a8445
MD5 f4465def0deb1ad5fe2d4a1066edfe01
BLAKE2b-256 0c5b8bfff9692ad01f9930f8898e3d7d9f542705963e4165c000228b82e51bfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 edb04d325e6c84aaf76277c2c603126a0b2b125f607cd3df40dfeb4154d20404
MD5 02606ebddee085dcc180fe157d8ea5e8
BLAKE2b-256 af1095bf5e06686b83ff180eb1b7b21d39d5071b259e63f63bc44076c7d72a58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c815ecb47e33381f167975f67d5d84687557b8aa2eafc4fe3100ee2063e5b43e
MD5 638f090439dcf215db28cbedfda5da27
BLAKE2b-256 5ebbdd63b60f64268be8cb2db09537028ef987362e3e20a177a04243943d46c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 440eba0a7d9af92df1ade58e8abab47d8700c23d46c5f383bad3482f851c9f4a
MD5 d81b36a39b1338a3d0b6c5b9ac250a51
BLAKE2b-256 ab3c1dd710d9fb989b4e05d536fd8f7f7e9a98627ff7a1500e29fe4a6d758083

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ed132cdde12780368275585bdb275b4f2bb5eea28081ba61ecce7d04bacec8c
MD5 cdbf200cf3e00efa504417273eec2f81
BLAKE2b-256 0ff5d10336ba35ba0e7e45a0bb4b732808b6f19bb2fca30c490ba3a6bd49ce2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 144eeb566cc93d79455b273691be68cb1edc2a85c6e3c38370a1f6b8cfb8c54a
MD5 9f3e0b79d2f46126fc309d3112d18680
BLAKE2b-256 690fbf67eb534cda7f35f9a35f680c5ec87fa04a4ff60f1e4799ecf36707a181

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 943e6d5864331b0aa617f5a3a4f2d3d52567a83e4296e71159b623c82b3782b1
MD5 8b841f6580eaba854591e79ba9814db6
BLAKE2b-256 4f0cb6e11366765b3aac58bf52e429e9033c795d21259021857e0f0aa0c3cc08

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ca40531a9bf046814df8102697211ad733dc2d31c36c62892ac7c0eb315886d4
MD5 22f26ab57e731295f57f6d70c0539086
BLAKE2b-256 e90728aa9fb69b3e049845cf33a9525848a0e4a41f37d4d8a4886ec716658d24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e9b233c780b735331a7090095dc1813f5d5e5a762da82b1b19f8549fb77b5ee
MD5 e3c144d7839bfc64077ec73103b015cc
BLAKE2b-256 7409a3fc33a6b7fe76c30890751feeeb05a59f3d6f52eddb93f1955751d411a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12a476fa431900d8b9e35434331e50c9df17d0220ada788ec32a0b6451daf0cc
MD5 86adf92db5942b520e104469650ef4f7
BLAKE2b-256 9cf6ecddac86d3097343141e9718144b191e4a277106a551691523b85e2003df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7094253e70a076371e0f8e83f57979a3f6c000e3ed7007b9c31ff8631fe621e7
MD5 999db9645ae0365a827153ff19057849
BLAKE2b-256 965d999bfc3ad3ddefe2b3cd9744e29c113212c9de6e5b1d8ab1e1eca27f692b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cfb7bf18a619132194c963304e813d6b78b79bc765f7da387bc3befff2815cc5
MD5 df2cced47354283798885587b77b1be4
BLAKE2b-256 4df20cad49528b93f1648a1009d6bef2a3ab24c3d5ce6542b6461db461cba120

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ad2150fcf6de78b57b914f5a23141b33b6a441cc2a9b16b8813e3387e74df3d
MD5 7c994e91eae2065c924dcd9f1945a3e5
BLAKE2b-256 86f468fbe0192d08b83f50d355897098f4f3d6e9bb29dd07c82669e6efddc31c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.5-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 abf91221041e6d24e3b435fa56aed5afe4a73a098e8236c17f881ebbdf419bd7
MD5 693827a96ba358f3a3ce44ab6e087461
BLAKE2b-256 1f7c019cad79ebbdcae8386c15487a4bc705e1ac559f5d9802407d7384c70c76

See more details on using hashes here.

Provenance

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