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

Uploaded PyPyWindows x86-64

pylmcf-0.9.8-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (219.7 kB view details)

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

pylmcf-0.9.8-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (211.2 kB view details)

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

pylmcf-0.9.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl (170.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pylmcf-0.9.8-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (184.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pylmcf-0.9.8-cp314-cp314t-win_arm64.whl (172.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

pylmcf-0.9.8-cp314-cp314t-win_amd64.whl (188.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

pylmcf-0.9.8-cp314-cp314t-win32.whl (179.6 kB view details)

Uploaded CPython 3.14tWindows x86

pylmcf-0.9.8-cp314-cp314t-musllinux_1_2_x86_64.whl (675.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pylmcf-0.9.8-cp314-cp314t-musllinux_1_2_aarch64.whl (649.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pylmcf-0.9.8-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (225.0 kB view details)

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

pylmcf-0.9.8-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (215.6 kB view details)

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

pylmcf-0.9.8-cp314-cp314t-macosx_11_0_arm64.whl (175.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pylmcf-0.9.8-cp314-cp314t-macosx_10_15_x86_64.whl (189.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pylmcf-0.9.8-cp314-cp314-win_arm64.whl (170.2 kB view details)

Uploaded CPython 3.14Windows ARM64

pylmcf-0.9.8-cp314-cp314-win_amd64.whl (184.5 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pylmcf-0.9.8-cp314-cp314-musllinux_1_2_x86_64.whl (672.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pylmcf-0.9.8-cp314-cp314-musllinux_1_2_aarch64.whl (647.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pylmcf-0.9.8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (222.2 kB view details)

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

pylmcf-0.9.8-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (213.1 kB view details)

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

pylmcf-0.9.8-cp314-cp314-macosx_11_0_arm64.whl (173.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pylmcf-0.9.8-cp314-cp314-macosx_10_15_x86_64.whl (187.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pylmcf-0.9.8-cp313-cp313-win_arm64.whl (167.5 kB view details)

Uploaded CPython 3.13Windows ARM64

pylmcf-0.9.8-cp313-cp313-win_amd64.whl (181.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pylmcf-0.9.8-cp313-cp313-win32.whl (173.9 kB view details)

Uploaded CPython 3.13Windows x86

pylmcf-0.9.8-cp313-cp313-musllinux_1_2_x86_64.whl (672.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pylmcf-0.9.8-cp313-cp313-musllinux_1_2_aarch64.whl (646.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pylmcf-0.9.8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (222.2 kB view details)

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

pylmcf-0.9.8-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (212.7 kB view details)

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

pylmcf-0.9.8-cp313-cp313-macosx_11_0_arm64.whl (172.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylmcf-0.9.8-cp313-cp313-macosx_10_13_x86_64.whl (187.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pylmcf-0.9.8-cp312-cp312-win_arm64.whl (167.5 kB view details)

Uploaded CPython 3.12Windows ARM64

pylmcf-0.9.8-cp312-cp312-win_amd64.whl (181.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pylmcf-0.9.8-cp312-cp312-win32.whl (173.9 kB view details)

Uploaded CPython 3.12Windows x86

pylmcf-0.9.8-cp312-cp312-musllinux_1_2_x86_64.whl (672.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pylmcf-0.9.8-cp312-cp312-musllinux_1_2_aarch64.whl (646.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pylmcf-0.9.8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (222.3 kB view details)

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

pylmcf-0.9.8-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (213.1 kB view details)

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

pylmcf-0.9.8-cp312-cp312-macosx_11_0_arm64.whl (173.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pylmcf-0.9.8-cp312-cp312-macosx_10_13_x86_64.whl (187.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pylmcf-0.9.8-cp311-cp311-win_arm64.whl (168.5 kB view details)

Uploaded CPython 3.11Windows ARM64

pylmcf-0.9.8-cp311-cp311-win_amd64.whl (182.4 kB view details)

Uploaded CPython 3.11Windows x86-64

pylmcf-0.9.8-cp311-cp311-win32.whl (174.6 kB view details)

Uploaded CPython 3.11Windows x86

pylmcf-0.9.8-cp311-cp311-musllinux_1_2_x86_64.whl (674.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pylmcf-0.9.8-cp311-cp311-musllinux_1_2_aarch64.whl (648.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pylmcf-0.9.8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (223.3 kB view details)

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

pylmcf-0.9.8-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (213.9 kB view details)

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

pylmcf-0.9.8-cp311-cp311-macosx_11_0_arm64.whl (174.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pylmcf-0.9.8-cp311-cp311-macosx_10_13_x86_64.whl (187.9 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

pylmcf-0.9.8-cp310-cp310-win_amd64.whl (182.6 kB view details)

Uploaded CPython 3.10Windows x86-64

pylmcf-0.9.8-cp310-cp310-win32.whl (174.8 kB view details)

Uploaded CPython 3.10Windows x86

pylmcf-0.9.8-cp310-cp310-musllinux_1_2_x86_64.whl (674.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pylmcf-0.9.8-cp310-cp310-musllinux_1_2_aarch64.whl (648.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pylmcf-0.9.8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (223.6 kB view details)

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

pylmcf-0.9.8-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (214.1 kB view details)

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

pylmcf-0.9.8-cp310-cp310-macosx_11_0_arm64.whl (174.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pylmcf-0.9.8-cp310-cp310-macosx_10_13_x86_64.whl (188.1 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

pylmcf-0.9.8-cp39-cp39-win_amd64.whl (182.9 kB view details)

Uploaded CPython 3.9Windows x86-64

pylmcf-0.9.8-cp39-cp39-win32.whl (175.2 kB view details)

Uploaded CPython 3.9Windows x86

pylmcf-0.9.8-cp39-cp39-musllinux_1_2_x86_64.whl (674.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pylmcf-0.9.8-cp39-cp39-musllinux_1_2_aarch64.whl (648.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pylmcf-0.9.8-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (223.9 kB view details)

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

pylmcf-0.9.8-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (214.2 kB view details)

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

pylmcf-0.9.8-cp39-cp39-macosx_11_0_arm64.whl (174.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pylmcf-0.9.8-cp39-cp39-macosx_10_13_x86_64.whl (188.3 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: pylmcf-0.9.8.tar.gz
  • Upload date:
  • Size: 66.4 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.8.tar.gz
Algorithm Hash digest
SHA256 c1168b2d1a4a8f6009763e902cb4260cde63e0c0c3f3ca01fd4875d72104ea68
MD5 85c11e4ba22a179f6c62c6cd20aa99d2
BLAKE2b-256 bae3927e80d710132a30e19326a0b08622def55619b331f8ec2b8c3cbfaeabfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 14030793f8af84f1b217860975db97254398e6438f1ad92d3541c579718a1429
MD5 4a92916fb3caa008d0b6e37a53c21b3d
BLAKE2b-256 9cfe190269c40934af97cd9bbf7a84eaded5b48a3e5531716ce3d8009aed05fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c21f884e73cfdb962eda18055d479f1514698236132e712e921908bcd796f44d
MD5 9fa9ef41e0098e45edb74d741ff864a0
BLAKE2b-256 03e564da48b47908d7ab47c122ff6e08cab4d9386a9eed350cc7ec5e2d6a2873

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 549527dfa26843dae4eb4da7d28fc117f61bc6d7719a2580251cd39299fe6fbf
MD5 34f5db855ce0c5fc922da53b673abcb0
BLAKE2b-256 f3ff0c99e2838484845f0b37e328adcd19b04b644e3d80b9c97b28c162163b3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09d1bf22971713319c54413c4b1458616cfd2864dba194366bbbf753aa2078c1
MD5 647b0512a6e1cc210e54747c30a148f6
BLAKE2b-256 46b87af6ad25d7ad001a5b0a0557245add8318f58f66c72b47fdc70932901ff5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 201c0b51d9ababd8f11158dc000a789b7365f05ac1d3481f8a4f3738a6496051
MD5 cf40df588a81ed042c8dc053ccc3f7d3
BLAKE2b-256 dc0ec9fc8433a0062332f7e6e1172626975d53353a9f1257ffb63d491469b00e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 172.8 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.8-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 962846e66a5ea76d20d69c43d89ba9cbcc660687c8f10f0652b11a7109ae6126
MD5 b74d496d96929ad833f03ef94a5103ce
BLAKE2b-256 d0988e015872486c956af3cfd993b627c1d67e48089e92efc963ad84ac4623bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 188.1 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.8-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 69792f1fd88db2ae3c67b1058b0343fd251fa1c053fcb69e0c4186fcbf0ea599
MD5 0e09bd26e1a3a51bf46d97ef151281fc
BLAKE2b-256 8e15aff87d342bee6444f0d0b4ab58d9ed92b53fc9639c90708145b2515327f0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 179.6 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.8-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 98cd7a744ae2c687c170a77b1d05aaa4e48a256624b793687b1a654c851597b9
MD5 ea6b21a0ecbb1a5c529835a6ad0e692e
BLAKE2b-256 f9650acdba70796dac202bf8536e0688e4692f7c6c465c2cbb532b892f35d47b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f69559a4700e17f161c59f40f8fc644040623c7842c338a8bfe8a87eefa73756
MD5 eb32db7b5ec274db50446421328ee265
BLAKE2b-256 b579f3ac89c6cc8c9a46857b6f4dbba0aa2d9fa08bf4bff334b45b518496a923

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d7661fa9f770a417bfbb227fcc6a37fe92933fe4eac837ab721ea55d64fa143
MD5 f4ce84ba383546dab072cb5abe395d8f
BLAKE2b-256 617c347ebc94333d6e2384ab9ab74d12b8e97b9a9ddc5b3f8caac4e2c89ec139

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a69b89ec0da0d40ce9eefb0707dec9aabf361d47dc25f40098ab2116735406ee
MD5 fcc24d4ec311e34b6835496580f617bf
BLAKE2b-256 5e60559e660d63abc401e17e23bbc058cab253d902bbf37eaa9c97682bea202a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d94698b6b8720098c853fdf544e75363b907061e301917de5195bd27872f4263
MD5 fef87589d381ef8e1bb6d2ad042d1e5b
BLAKE2b-256 82364ff903fdbbfb6016379fa7e25bb7fad28efea62c66338ff7303bd7bcbb5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3963923497cb6fbdff7ffbc170b3a1cefe6b232f897aa3944489a60ec215337
MD5 4a4294d9ed2d840550288322a147c3af
BLAKE2b-256 5a300b9f6faf7d113ec8a18ad5589b0843f5290f26b08cee2519dc0629367d39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 920df29b66e4b3d6b78b1cf86527880f1b58fea317bc7e773c63dbb9aa737df3
MD5 052be1e62b900278c928bb12afdfb378
BLAKE2b-256 837d9e76b2734c368a96fbdba229a296ea46a6db754fdc04f5d1b61272874fee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 170.2 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.8-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 81978bae562b9aaec1caa3b91b7dba9b7ae8078ba1c9015c3c5ac1c359d9947d
MD5 40d214b75923fdd74928d61b4395d8df
BLAKE2b-256 54f0d421e61669819aaa22fa8c2455d0558afef8c7d9bab099099797ba59ea65

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 184.5 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.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 512b6410307c8ce7dba314245d4474680819916923cf8fc7bd0bc97b3be55444
MD5 07530ba0f93b4de333e4bb868491b89f
BLAKE2b-256 83c0cbf2213f536f7e38a997b3f3afa4f8e0afdca2ba7714b9780ef5307404b5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp314-cp314-win32.whl
  • Upload date:
  • Size: 176.3 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.8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 86d540afd83bc33eb49355d38916d0e4fae2b35664f9e16ae5bc6064a339bb62
MD5 5c0ceba2f9722cf607ec0ae1f0ea57de
BLAKE2b-256 db08bcd36d48cabd614a679497aaa753a7f6af4cc73739091052d1f9e8eebd1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1291a111d4c7d5bcc579aad750136da6cf10677404e742a6b9cbeee75c513edd
MD5 eadf56926421eb011a63a81e96447dd8
BLAKE2b-256 1ce78cac2c8a06129a72f727dac3e77d0e8acc0621edbe369e1cd7a56ec175d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ccfc42b86adae3c724c3330aa5eeaabdecac348d6511ee1ce3df92d54d6a18ae
MD5 4d2b29624a64812f14e4995f566f56e7
BLAKE2b-256 56f23937bfcbda5606e90384ece06940fe6656f346cd8b86dbbd17fd4a0f1eb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5e3659a2865c8129deec77da0a1cccb7d0c9e42b2f626943b629b594b26f47b
MD5 01222fd4800e5523c182a110c4728b7e
BLAKE2b-256 a8dcab4a5f1092130bb803cc1e159b0924daafe323cb830e2c9d6cb52a9fc7fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 636a457548284f0ec08bce047593c835b7ab28ca50d64e9ba02b876dce9ccccf
MD5 24ccbc10c0480250596ef659d462afb4
BLAKE2b-256 2575e2838b25808215760dcccbc4db9175ba72d791d93d6af18b94377a43ea7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed16ae09322c38d2bc1093191e23e2848176019aeb0af566a355970aa26de3be
MD5 e815f8cf7e3651bf09d5afbe3aad36c9
BLAKE2b-256 d006e22d9731769a936980f5a1834d2504c314bd91423881f403fd8f08dd60b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f78e8e9927ad1af976747bfbcedb357268ad978ba41d1c07bb1e9c9a8ed8eeda
MD5 4da9365e623af541f8d29c1c0e6de725
BLAKE2b-256 4f9087683a5f193175927156fded4782ad97d1ed8531ebee54983c4db65982f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 167.5 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.8-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c45ae5405da10fa17272071e5a43ef8674d912c68695f69dec039417a4e822d6
MD5 35de8c81bd4f1f6bfbb6a146f28d0dae
BLAKE2b-256 f2a8bcc531f48fd0213e5c367ef742fce23488fd5b441770c383d384be641043

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 181.5 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.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3fabd51eaf8c1661f8cc2f71f409e53d4281ed8cd9a9f74bb9a5824dc84bd785
MD5 ce9f052f2f670bd4b59e2d17d34b6470
BLAKE2b-256 61878ff270e96dcb70e6c93e19fc733433e733fdc5d0fa8753b6eef1e476bb81

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp313-cp313-win32.whl
  • Upload date:
  • Size: 173.9 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.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b17b5900ac6c49cbafbe537b220e33b2c899a6d7b6b74a4098d176aff40608ba
MD5 728e1c681f9e276db2f622a85a3dd28a
BLAKE2b-256 ab01cdc902fd2822e6629b7e0e9d1949ad1b65a4bd936132c78c85836897b9ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a305dabe3693ee6f5f12e50e05f607aa86625e5a61b7bc5b1ca2612a5e8727e
MD5 e83e2b6c7508f11604c4490fadb7b05f
BLAKE2b-256 1c1124ff15621a13c95e374a2302eb67cfaa6bef0dc7f37c518ab56f0103e543

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fafa04b2f239cd7eb8ea727c014a7b37f07be91f39b71f2ba26c465d0cce27bd
MD5 96dfff9600526f4e742221dabb1a1e7d
BLAKE2b-256 29c0f915c268a5a10465bcc9f1795c55845164ca4a3199cfe723cc13bbda2996

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a4690687b865c2bcf94e4c281ef365034e286c74a5d9e1792c4db43efe0696bb
MD5 5f2f8b05bbf0fe20bce2300dd6ea498e
BLAKE2b-256 2e897d987dc5d094ff509788968f48323d9718f2f46c61c66c3d626cb43d61d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bde6f695c814e241f0801521a023f5d6d2f5ab2e2c91fe78509797514f6ae4bc
MD5 ce97969d5be084265c28b3a043973e7a
BLAKE2b-256 1ccc6b036ace04188d2c0b58b00a145e08b163a6a8139eedf26d9eaafd94464f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c624dfac49ff6d1fa3cb65c7087db03bf94918a9d92ff63afe597fa53abddbf
MD5 1d84b48568afa7852d71576fd7d49bd0
BLAKE2b-256 63eded73842096ee55171653b90e2fa1ca68dab38addcb62114a5f9c6283f358

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c565b738cbd93aa0ecf7ded8ea08e16e14ff1b6c405e2fb9385020955291b321
MD5 25889d503cdb0e927241f40e48e5ca90
BLAKE2b-256 ca069231d10d6eeafffef2fedb76b1a6b078543e240a90ca4af5f336c94d8e98

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 167.5 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.8-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 774d2fa07d47d20eddb238f0a723b9439f88a94fe2f88ff418947ae185a4efcf
MD5 ea4e6b3f280edc95fc7cc486cad82a53
BLAKE2b-256 814bf4ff01dd3a42f05506b2ce282596d6d952d10367a2d21857f9c8ff4980a2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 181.6 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.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 95f8125d5da29456c36cc57cf9024a6ed6725a8dda5d3e5fc509b9d6d2a707e6
MD5 51af3b4ff3fec853d8f2ccc13740ed5e
BLAKE2b-256 e66f904742dc8681695513517a856baf9b5d36f5e3eb4f40b3b46d385725cc4f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 173.9 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.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f8de89c8398f900ee1027461a18c5386e07e475c032f1854f3183dd9b7942578
MD5 c6f23fd4e4c0720c225b333bf5f592ac
BLAKE2b-256 c9b94ff76cc9cc521a08cc27da24e673d8aa8a61c35fa12616ccba0b97df82f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f12bffc5c73ee5ff88eb55253d4547810a69638816d155f184c0b7a5f4e9aab9
MD5 77b8e6ae3b25c56a4cdd42ba78ac23a8
BLAKE2b-256 dce12a6e01c747a130be2543bf4095e99fae1d06b872d80aed396608d8555077

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d47224da0173b2f3ca45604421f1a2677ea8a7025d3c339e17e2a714b74ffff6
MD5 b0cd67524789c76c66f306edabf72719
BLAKE2b-256 a2c8b87fae5b88922cf7af60458bd984d8b4e40ebf98477a6457f643f2352093

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 937227623569314c5964a9dd986f22ab031777976c8e3485fad753363624afac
MD5 9af2e386c8120ea871bc5308ba8bd086
BLAKE2b-256 7b34a5feefb9fd97e4188b786d4d8a8893f4d83e9b4951cbc679b536e2ee9a87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84980dfbf1113323c257de2221d6f09159cfea426d387e30bdd3d40aab7f8b3b
MD5 45ef0a971883de8309526c19d57592de
BLAKE2b-256 12a16ac1ad96911174f43170defe179bc3bdbc877313f34d5ea41068f761ee3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 947dbd6a41421cbf6e17fd0916f108aaf87425fc228449b9ddf8e090ffed0d97
MD5 b550ad46e168f1bebfd8cede7c745681
BLAKE2b-256 96f3a81eb1300516dce590ba7fc09ec03ddd429d96f72329401a1880fb3f7b69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 955fbb541ee0bf9752e693861929c122b62ca29781c9981eb639630dc3c65da6
MD5 a34b3cd520f3e65a8cdc131b26745ab1
BLAKE2b-256 42a42bc5792bf47d3f627f924c3cc566e73a1758d95a4e426cf1976cc0c741bf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 168.5 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.8-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5c2cec89f1caf5d6d3c4240d689a37eb45a3f1a31459d591c6410e3aeae7b4e7
MD5 a9aef30aae006cbc67db431045e4b4ab
BLAKE2b-256 54e03274d26332b835ef0a8d87aed530b3b4b2507bd10597f0f5ab8fd31d6f69

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 182.4 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.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7913a9288cb9da905a171a2d5bae10098d7fb149b8706621c40678fb8182b248
MD5 93ec0cab625215d9c91396301549096d
BLAKE2b-256 53e1d8968c6bf2298e04d281071accf6e1687beaf7e9ef2f8057d1f6559d868f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 174.6 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.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 57520da0318d70b3d2b5002a3811c5fbba9c7ed3264facd099d4e88ea7c089da
MD5 8397e7921a878717ac55535d2760c9d3
BLAKE2b-256 5a972e758b23820565a970d09af2ee21d6fe74628148dc5c1c70487707bc7244

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 753dfa7266169afb3a363826fbc44b73c6ea3dfe6076bff7025311fa93ecb47b
MD5 a81e9d51da3d37497a4a8ce67862dbfe
BLAKE2b-256 dae6c6b08b45accc14fa2161f32f3c1564d08d73bf91b05f443d038615b8418f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5eac0ce784066efdc5eda4a3c61d1d05e8573e87aec7ed6be7b84405813228b0
MD5 e53b2ed55e7d3febfe43462c37fb4b6a
BLAKE2b-256 3dbfcc7634d8530fbe17101a453c34e136e13e1c8d466772a7b3d6b66d5e5389

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 348658f062a43f2074f0a25fc1b8455dba2c7c5c28c1e8693f2ae70e25bf1e78
MD5 43e0191c4c3f7e4f14f0f6e2854dc881
BLAKE2b-256 0f8f0fe4f474269f019f4da3902db65a68723ff7eca3b6a99b4621debcdcde84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77bc3e79a4bd961c1dc120e99ecffbc7b0b3e01cb60ec59d3369c6bd38649064
MD5 2ed848d2a5cbf2d16a1c082d7c5151fd
BLAKE2b-256 be43e52d3d6ab4bc6898ea935209ac1215af2a0edc61bfb690a0fc7602ff30e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c06aeb54e5ce2d31b88618d29c03130a6469cb95475cc14cee02095ecf2d9eba
MD5 46d53a2d9664101570621e505d66f242
BLAKE2b-256 bf51d5d28f5dcf300286ed0b82c3d02d2dc2e5d1d5c1ad578759d9ecd0fe2883

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f0dc11f35e712858d29376c5cfafa3e6083b344dec0e0f827f0ce53b3b17b3f3
MD5 fc4e26f552137c549022f3cbfa6360e8
BLAKE2b-256 cb5ed1bd3342c58c62902ec4e07df57590cbab68454231df50e9c288464496f4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 182.6 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.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 546789380d044149155dee05d9387f07e1021d7acc4cabc91353bd36e321442c
MD5 5fce3ccabe42cfe86e99530d24d1afad
BLAKE2b-256 850a28abe6d11592f2a62be2b7558ff7cccf291e270afc6d12a41ad37b6d7f51

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 174.8 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.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 997f541cce3765ad33a3ab7b16aa202e190178e78414b28289df14da53aac474
MD5 02d1de5d38dede22c0c2ae24ca40b96d
BLAKE2b-256 519dd722dc5d47140b7da3667d3f20965917f63d559c6f603260f12c2cc83b82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5e49120c6a0b9f275cd84373227eeed84b5e1ea969a5a4ea25c937a82718495
MD5 f5a1eab093e2edb5de23da04ce9c68da
BLAKE2b-256 b3c21198ab55bf33bdb40ad99db28578d28a724908be6cc92f1f347f9d30d786

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 977855efa3a19e8bb6dab0e00935172c78b726490ff5c6d9a11c2b13bb22995f
MD5 8fba004465d25222f82e28f6d8d04682
BLAKE2b-256 b32e71f0cd3e27d945c79652357042939cb74817d4b1f88ec3b410e7d24ea129

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5fc67dcefc4f19037c553deab40392b8e941fcb7cfcc1abd9be362852f332977
MD5 71d4d2178bc29564bd26fadb7d3d1115
BLAKE2b-256 3ff77f8e834cf209558ddbefcc9ceb631fa2a01608cc5406059d784c4c580582

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb451aab7fee66b80593f0fdbc7bcd8164521adc7d831fef3708c9175cc7ee91
MD5 7bb377b4903632b855985ab2360059c0
BLAKE2b-256 fc177d0f06d14662a655f5a724ca9987f043b47114f90998302ea17267c6db3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8f0a33e83039553f154cc694484f681afc0db8b99aca86f938f4deac67bb497
MD5 f7c9240cc4b1dac0db6636bb68175bd9
BLAKE2b-256 2c15a3c940a4c3475b4c98bba2c8cd1bc8648b956b88bf0be9ca2fbbb4ea7bc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 25ce8804f0f61eef090010341ad8415320e309727214d26f601eb12d6ccdbcda
MD5 74c44c74b3f31640d241fe8c7e80325a
BLAKE2b-256 88e930dfde416856091e4d7e815acfe4e10cf877043f6f56b1ebf576413da259

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 182.9 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.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bf26fe55212c973ec6b868fc9046419330175dbb3e7f3c6853dd2577036d7afa
MD5 50f5ab240b6cef727b7be34ef4e9f742
BLAKE2b-256 e6c80323423f18ed634bad5a5ec6a308f73fcc9de26446f669e148e6de88bf9c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.8-cp39-cp39-win32.whl
  • Upload date:
  • Size: 175.2 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.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e62a209865737432caa77c389ae51c4c920fbf3e0486d8be81d6c269a0cab679
MD5 5b6cd855d96057060515db46d5ab369f
BLAKE2b-256 d5e00c90229dccf38f7fd53e8c1320fb953113eef33caca222726ece77926f78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98c03cd8bb09f732b5ff21ce71c6c7bcd3c8cbbf534a226808ce6513c7ff90a9
MD5 f89c65cfb3a05f20db429685fc7719e7
BLAKE2b-256 09438df586ff10253950af98802fda0836c75f2c63ce9d6dd1634b30931dcfe7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67f95ae7ff3714ef56ac614fbd7af6bd4f2ed62fc01e2cf9a60668474756e758
MD5 04e2ef82280044b2ce8d26cf2e60182c
BLAKE2b-256 0b78dd39479dbe81f401d17d8b2bbe6591a952514fd3d906a70d9034fbdb60a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7933d391c69a865e2fdc24223018836576e51d7ca71b73603d7e5bf700b22d16
MD5 e91012b9e1004cab3f2a3a897f18df10
BLAKE2b-256 8ad30283a308befef9d4d2cd1686601bbbaf098c9117c8f1f42a14cded05ced4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5530874631ee1fa1ccb2a88d54cff222fa8adf0db2ede6c99f3697494f9330c2
MD5 debdbd69714e73944cf4f27dca5aa5f1
BLAKE2b-256 ebcbdbe02b691ba0986eb6078e06fc336dd16ee0e42d18942c41219fa880a063

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 333b2717d848609ce3797dd6b4ae614e4b9c9c719cae216fd386e3f20cad433d
MD5 8b40ad45c6bd8adab84639a2dac2f0bd
BLAKE2b-256 5a12c9cb691e85907d5033270a7b25cc92b565d7d85c576272d25b8f96299a7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.8-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fd996ebefab6a1fbbd4185c21800776defbd03c724edc0a742c98e4d14e47ebe
MD5 90945a7943fb39f39ef86646596f4743
BLAKE2b-256 40338b093348c92f4aca200c45d0e3cb8254372190dbb5bdafcb8bfbc5b2cf16

See more details on using hashes here.

Provenance

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