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.11.tar.gz (199.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pylmcf-0.9.11-pp311-pypy311_pp73-win_amd64.whl (422.2 kB view details)

Uploaded PyPyWindows x86-64

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

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

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

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

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.13+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.13+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11.tar.gz
Algorithm Hash digest
SHA256 271268999ae13843ae1c4a0f1353fe1b2939c5bc91677bb1173a3548a4388da3
MD5 0e3ac2dc6f7a3ca60a861f2bd2a2ddaa
BLAKE2b-256 1d5657fc9b426c52b275e70fc3917fefdec1abf075155437c30ff1b0e1f78103

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 64977543390368453873b3f432a4307acf36759f3d6d50b6339feab7bde350f7
MD5 9517c9ad50a7e870689cfedadc3ee5ba
BLAKE2b-256 5f06333c0700c619bb647194c7fd093e8801e52e899c8e2691f881580ae4e17d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2070887883c94b41f773b16aec44a18941aa327035d9414567b64ff9b187c6c5
MD5 5529c82ae10ea13defda0900d16210ce
BLAKE2b-256 f708e67eccb960c00b9d2a96cdeeeed95ccdc1c04079b11f4aab9dafcc25f283

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f1a848c6d48259fb409d4a49178f6572251f54f9b78abefe892969ab143caca
MD5 8a68358d12569a624c440cdc44d8f5dd
BLAKE2b-256 24721cb4a42474e5d61fafac980868e4708e66cf669f148e04076a1f4cab1e78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08488e150f3bc896db2780dcaf00e2f7f116a499836e229e916046f29bcd2c82
MD5 61abed95ceed3620ce15eb0a2359d1d5
BLAKE2b-256 4d17a38068bd3428314aed0a65a99f910dba183355d892851ae855077a5cd562

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d83e1771963ed6b96906a64619de326a5312a2fc508d7c941da65bc1285150c4
MD5 988150b97fe39e7701f1c82669e4e09e
BLAKE2b-256 33f63ede5c4e50f4920d2b80edcd6de5f2c5ee153014ddac02956232d065ca34

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 095c92f304f7d162f6444c5dfb1504bd198bec4a610dcbcca158f6658800e6a0
MD5 f43d37f117cbe19dc19eff7ae92b8753
BLAKE2b-256 e36fd24a38936dd3020947c1bde1eadfb2e39bb32c37d188ddc0cc136067de96

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 184ac36ab7354a040013512305ba56a355c33b1d2ceb09c1b956f052279df2a4
MD5 0396d1eb455c651bdb2926de20d559ca
BLAKE2b-256 a307e0cdaf65c6a5f7db7b636dbf333d48053f12756b0878e68b3c339ab758d1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c2852d7e815916cee1527b5e76c38fb55c83a0066262a0f46c3adc1cf8b64978
MD5 7cf5d66be4833fce87cf7258f204a5dd
BLAKE2b-256 83ff74984af305877ba290230cdcea118d5aa8660df4e337ac51cf0ff3b28b52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47a081670f9dc05260d814f8ea59adb657a42d0b4618193807cee47d5d930676
MD5 9e33d136d37acd25db77f4e7c8e03374
BLAKE2b-256 0174527b0d2f0cfe2676d8a8363caad285fef929596788303fac2749d2f3b998

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d307dbd1b5ad03f646c42abe83d1d5b45b1fd986f2903117ae37a18b18be6e0f
MD5 fbdf29b073646261a3f47a20ade0c19e
BLAKE2b-256 72bef1843fd4f6ee6ffef18bca9b2f787eea86686507bb64ab39a4b63460dc55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73014ebc360546474b2a4da9052985880d9ef9dee1570cf4e8d6129ad20015e7
MD5 d4454fd52f78d8d87dac9b962972f1b6
BLAKE2b-256 e39fa5d44aa4fa2d5feecfd7c261db68e0e77659a5b58b9a5ccb02d2146a0b1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cb59c3f00ebdc4d394b6a319a87b622b7d238f0c6883910a96c6d80d7170e9a5
MD5 c3ba986ca22d3d30a82a0727a302d871
BLAKE2b-256 2bb7c48e0da8fb76d4aea3c864f421c9ba00e14c8743675493cbc020bfc9cc67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 066adf5dd9b94e50b971cbe2235f6bbf01fef19f84eab853adf0d7bfbd4ea177
MD5 c94967ae41381ef1c6dcc4907e4e49e7
BLAKE2b-256 712fb692c6a9e41137a4716d00129ae18ed78cafaccb7a3841eb710405f545fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b5084cdf5d96c8d65597861b486a6434684e7db8a512e9dad214b55988100478
MD5 88f29ab96363e6005e9c6f1f9a8aafbc
BLAKE2b-256 6033a1f02032a0abd53274a5758452df6e104a7898ad72f777470363bcc9b7ca

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 134b56123221a8c63eeb95cd9eefd502bd4d6dfce39f67bd05f99ea79bd065cf
MD5 bb9a815bce3f56b7cb13bc427b38967e
BLAKE2b-256 e4b8203bd6afacc0e7c5ba4827fa39067951f8c9912bb2e8cf27e258dfeb27f3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 764ee18b2cdb767c3f3f98b4f9e0233f3afbc067ca5568caee764d8cdeed39bf
MD5 928a97a216513e399d610cddd0ea172a
BLAKE2b-256 d6ab91bfa65842ffadfc209c0f007bb4bbc28b352e5d700d1f1e2304d7079dd1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0d096314118b72a9c16e06d14facdf6a73ade283af9d910f05b92ceae4b3df96
MD5 06af9ecbec369c37a96d8c14535cb631
BLAKE2b-256 23722b3d43f300a55f06caf84c2bf2a22cca344b412e800f03bb60420d04efcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd563ee1fbaf455c291200e0aad893c59641f4424b63c0646c3ab766ae6d355a
MD5 c154ed0ba71767a6e3cc0f3e74ed69e7
BLAKE2b-256 b3ec110dbae30cc2905b05a4f68013868577e78b85868d0371040df6709fb6c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b4e11a3135e6377de434c3bd6f5a672615ac92040e1f3d18f7a02b31435c40f
MD5 9b773753bf8cd2517288531182003486
BLAKE2b-256 5acce51b904cff6ecc510bec8fc4b1e0fbf42ebd56ea59cead4e2b2aff63530b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aea30e0e63944cbef828f35a20d2d40b0bf0bd0ace78224a2c2ee57a41072481
MD5 a07fe694237f9cc43066abaa33402f27
BLAKE2b-256 e2649077615339262e50a16fbe25a3523e75e3ba9889a2d200898f79ccb5f2a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e5387631feadbaa567c8be7dc8020168a6ede209668300eccda9aeb6a96ecce1
MD5 f94017dc74471409d2c882f518bb2c84
BLAKE2b-256 4d30c7db8f386a66bfbb6d06a5fe966bac7fba1ee1a11c26cb15ec17f3cf34dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04158d7cd33223d157b712181e97175c1dec2536da959ce9acffe9ae2c6adb59
MD5 0e518468a676c4bc67b422856e0f085e
BLAKE2b-256 26c4bdb7d4755822337a6ed39d622b5ce8f52a4bad084993c5d4cdc37adf31ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bd68a34e5e202b977e244bd0832dc4bab125dfaa251622e141830c3578b5fa8c
MD5 c2401cac8442f07563523d319a3ec7bb
BLAKE2b-256 7c07f1a7a17ae068731f031384c9c88293b7c44dad162884c1e22adae159a443

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7226879f1db246c94bb53fdf7b4d24fd88010dbc37fe8c0e038e259a306d10ff
MD5 38c1c2789c2237c1b877caea44d54dfd
BLAKE2b-256 81214065a9025d66b00bb28b8dabe702c625a23fa25e00ccedb251b8c6dd4957

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 db3a0dc87fd986d426ee9cc076774d1f0640a5b149afaa6d9e7146da23fed2fc
MD5 f80a492ebca21e64cde30df29641cb5f
BLAKE2b-256 0484df83cf2f74e0915eb0f205073dd4004bf90487fb39fec5419b3b8c88d765

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b7a47dc613e670f1f80783b4a37e6f49b538d273edea5624bb836083d426987c
MD5 4de4f902f1f60b1ed2a052494eb1bef2
BLAKE2b-256 9bcb1f5067b3f2a78286afeef3965bd234430638c58d383104f517bb2e1a0cc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7c4102a905cf6aa67cc0a781a49ac34865174583f257c60e69c7967e6ea05eb
MD5 33d823bc3cbbe45afedd21e16759e2e2
BLAKE2b-256 c41fd7096f792ea8baf03ddafcf8d4045f36f3666cd398a3f59e73c34ba57763

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a73e546ab4e7ca4a41a0e54cede592fff877f56babb6e33d3e75e188e7335b7
MD5 1d9497f3f6d6e72dfd50653658726859
BLAKE2b-256 e11ab9d459b91319ac65dfa049478d763cb8800b4f333cab5b2c9cf334619250

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d8a97d75e468ef3f3f5c1d65ee84feda8c5cd1f2a1d6aade8238db599ceab59
MD5 dcb3baa079ed026d9ea2d61f705b1359
BLAKE2b-256 018071a6d4ee695bcd5d7dab23c92cd553ae9bdfbf1bd3bdb454ea8c409374c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80dfe1c661ad11939bab638030b61b9abcd9cbf80a05b1aeaed4c481a959e90d
MD5 10fc88976ee9bf3cb1be1507643e4a11
BLAKE2b-256 8d75c71a9d19996ab8732d2aa1c3225d47cac63c4579150daafca1f00c67b099

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd01c0513bb7c738e6ca4346f6af1d1b9a195c42c9133d7e09d86c55c18079c3
MD5 ad6fcb67b81fe50c350697bfaa486a52
BLAKE2b-256 f6680368b83f65ab5efe702922b483185ac42ae5842b24a1e44a09cced6709fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7b8e80bbec260d8bdbc3fabb929a42c041cf7c55b75a40cfc8d99a9d1ea670d4
MD5 a6863107d8da05b8b82953e1ecab695d
BLAKE2b-256 2e6ad5acdbea0365d18def53017b54cdd0316e5cfd719ad61304ec7c376104b6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f1fb1e96b1515f1f63f746683197999e6760b231506bdf8443017889e20aeb18
MD5 ee9b08becf72e6c2a490b7ba952b0757
BLAKE2b-256 8d55d421e8ba70aab2551c414b321d03637814a41a26385556980b2db8014b48

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0942ade96932a05f66e041d21367ba8466e3c88e27032029f100773ddc17a969
MD5 2285e355a67a1aafc9c6ccca21cf42be
BLAKE2b-256 4924133c7f92c224cb2731305f7db73ad3291140415829c31258599c7a1b8d0e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 46564c8befaefbe6bc329ff6e1bbc2b83359b498177992c41ab32a4ac4db40cf
MD5 b39cadded705072d225a3b2f28a5c623
BLAKE2b-256 9321d1bce17fd27452d87ff70cc0d97d1808f9d50351db55b9f324d529bd21bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3bc65ca4d191980d702124d1f543e9ad85446516d047c2e426a28e9c8615b4e0
MD5 54b5041028642b442e6aa805edb7066d
BLAKE2b-256 4d25d0c5ff6c3a1a1a787769d2b74a38506fab53b1b0d048d777df718010f92e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e3b200105c9fc09c2cbcd54239d22a14b48c3c81321050179ed03a088bd3db5
MD5 16d862b20cc7ff07b73430839d33d404
BLAKE2b-256 defb93076482b687a74ddf901de7a6c259a3f5bb1d1f830eed9fa18a5a90c0df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9fac0bf17fb4609e71659b92f58edcb6dd8c1b21e984d0a594e3770422ac9fc
MD5 3a3423bd4b1cc8aeee2902155d84bb69
BLAKE2b-256 f032cb2aea0abd510bb85df3fc162228e010a126868709e80aec56904cfeb041

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c503f63fd83fbab5d27bfd24b6e1b9ab92f8f45fd178cdc01cac8928690086d0
MD5 5364ffc16c710de8731589d012927b82
BLAKE2b-256 d9f54ed9726c76c96fb4dc04087168b05179922fee35fc48b428dab878ac75ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60cb6fb33b94b4c76fea7ad4029171c69daecab6d72bf6f61209ed35d2f1bdee
MD5 f8e3021d6f1c0d22c78239caba478acd
BLAKE2b-256 88a93800e106eb31ae068fb51a2132440d5e2287b9e789b537816d79c161c3b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c0ab307ca4ba3530d80da29dec9d4d56f91e533bd52906edee4f3565ea6cb22d
MD5 fc4b9c07e0fbee50b1d92058e5ab9330
BLAKE2b-256 a46d77243dda4d13ca7c7e9158e4077e46d2c5f8ea9501aaa02ec3b1ac430c4e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 35ce0e2bf2b1cb2e714fa9d2d5ea0f6a32b2499f2ada2b61d87f1256f83957ad
MD5 287c296387435361c445b7d1ff57e212
BLAKE2b-256 0dd2e9b1248fae93ae3ed15c2b41ea70de6c5cc3f775f266dd24297421df5663

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bda8bf5b165af1e77ff3dc58ecfc5fbb2fb784bb4f6fb6f92bcc99f1c745d9ca
MD5 58e81af4c7aa0aa9648463405781b972
BLAKE2b-256 b67ac80911515edf708dd36535a6645ae9451642769c597d992049ffe7413dfb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b991f1b754f428c59902ce724aec919787cdb15faa4a98b454580533d41f9612
MD5 80af1172954bd486e2d21004cbd5a58c
BLAKE2b-256 1a518a4803158b3c795d8a3277de80b0e229cbc3835cfc22a98b82e2a86bb5d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbb82be0f75056810a53fca183727e9dc4d89b5d2a26c2b0af77fa10c0336801
MD5 10144092eb4e1d09f9d6c551260fc7eb
BLAKE2b-256 e714eb6275838df90af9307303a96d80b4158e55ca962aa3b41cc58961bd3a82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 980a980658eecb5bd2d57005f3f07c8bddd2e34856024dfbeb56a291382cc6a5
MD5 00a219efb6d3eb93d147edde36d93609
BLAKE2b-256 66733527b87dcc22f37694b3d2f0379227bdc71533d73ce21a1c6e8ebcfb3972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5fe5ca89ec3cd572189e16838db0fe01216ba8017e80f8a5f4321b211df11f0
MD5 de38f0ff179ca0fd70fffd207968a14b
BLAKE2b-256 ad687b64bb1a7968d0bb885c5b8e92496ea90d9115283120aeec8aafabaa4989

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d67f3b6821c59d6abab5793f9a2e6afcc4264c000459a8d317fd5f7cd1f8adc
MD5 bef7e9e2a6acaf16ea5b3a3c4739b12f
BLAKE2b-256 ac71deaad089c0ab77e9086a4d866cac0d018506d2777d6cff50fd25502b576a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0864375390ce7df807d03e3151237f1f0bd0610872ee6f4c4547a19e6a659554
MD5 06c12c8c48d672bd9fa265de51a7f41f
BLAKE2b-256 2d9d9a487e4a0e4e03306097da1222559ee9567f2be729bc75223e690ccc9d05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 00510a142ab415abc98a33f89f0477eb47b35102ee75f677a5d42664d3fbb52b
MD5 3f1a52e59d72f529afe087afb1a5196f
BLAKE2b-256 3b2a86490200a7fe8ae1280996a96660802bc0c35361a91be8d06796de25495d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fab6639da03e2d006d8d70434b9b5494c62605fd32d8236b79c29c72058ab89d
MD5 11fd31983ee9d06fc65775b95ac64330
BLAKE2b-256 4724433eb1587f4c2d3705add4d55bfa3860a2d31268787e13957b11fd5c2434

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fb3467c12a2062ff4623e7c8ce446dfef3be00d6d4661974ce161fe36eed67ec
MD5 0790f35eb54781e14cebf67de1d13fe4
BLAKE2b-256 db2b71bb5b9314b6b243e6198a8d90bf5d8dcbb8037f817a52233e0869f40773

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e03ca436258745c13ce3849ec4c25ad7c0ef2d2dc36ceaa809b33d9664e6d1c
MD5 94b05330a444156fa9072bad5c519378
BLAKE2b-256 4f7ee9081b38308b7b2c279554ba35879c1563f316aba82620356e9597881c2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aad8cf35b27e46a9edb286aa1ff4608573e9001d94c8d62a233d66223cba1083
MD5 09e20bfd22c0c6b5bbef85e5963ce078
BLAKE2b-256 81822508fd6097e31dc08a60174fafb721a54607078994be9963718cd0bd3fe8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59d0da929235a6aa221a741c0099c12eb6103e0edfdf167ebfc51d20d1dc823d
MD5 740d4a3cbfbf5add866cb7d1e7860dc6
BLAKE2b-256 69feee7a23251c9e3acd5914975dbd1caeb6a6d9986786553c5aca4013405a4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd7e055c248d0cd8ecaf7d3f62aecc6adba4b35b9d239fcd3f9ec8756b968800
MD5 b5eab640f3199079ffd1c6c0cca4d025
BLAKE2b-256 945df5435f2afa5ecfc8970c812c07f559674bffc31567ef5f2617a350e4f88a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdd230c64fd42473ba7e4be80722909a017a02a5ad26034fe4e39b8c246b31ab
MD5 05b9d58b404306ab3ec75ec719d3bdcd
BLAKE2b-256 1f5738638254e71184db939efad8ac383b0d3b2874570c22369b8c41fad09f63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 26c222a6bb7fb8d0913b49519677c83b2803cd4afa3661e1d713adc79c5874a9
MD5 677468422da095b72527daf6471770b2
BLAKE2b-256 eecb1d6150520c1f82c0d96010abe1e9fcbb14c9c58e5a08fadb00052b5c839b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 61274c90231a872879f8c85c09ef7636177aa45668f50c7d35b46cfa59d40562
MD5 22df110cf5d575eab25089d8bbe3667a
BLAKE2b-256 6365f8057d2c6827317c83b4356f0743001869c174c0703387202a94e91cfbec

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 30ed717899776b846df714a40ad3dd7a720832db1af05ab9ae04637acd800231
MD5 9531c179026c280447084b2a12371b9a
BLAKE2b-256 59b2dd4314926355931ce43bfae6f5b9961cdc285ec2ee2044b41ebe757d5821

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aae26f7e37bb41792ba63d16c3d11e0f1df3c6face677cb6ca75e2f6f4733017
MD5 46e8784d1f008be31cca38696bd64eb1
BLAKE2b-256 2e5e84c9912b822956c60efaad116f0db9be9c58300ccfccb2419270b239b027

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 626d30b2bf86046517221d72607be1a203f2fab29bcab67a9a429830d8f215b7
MD5 c6cd4272e78330d0ba4d5175b1c6b7e9
BLAKE2b-256 54fc74b3b1c914f245e10c9ee754ff2d555a1126771944e509df07a282522423

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd8772ca1502985c6218d905262f1cc0fe7c8e3fbad31c3d88aff6a4c16b4067
MD5 7ea86e1daac0e161fad22f499ec264f7
BLAKE2b-256 88919c27971bb1fa15d2e96ef6873cd570bf68b4efb719dd1ca9246a3169af2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ddb45418b56cd8513144eea9dc7137a7582dd58d225d81b1d956974e912d26a
MD5 84320389226648aff6187e60217febc3
BLAKE2b-256 bb09886efc40ded53da9f5c07e5d87f76c8f0ee981af6c200372cae1b82b56e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e8ed8998f95e0e8e9fca69debe6a4975ff5e3b617208c290a17db55c5d7e116
MD5 d30118feacf0d3f7a4551e001ba384bf
BLAKE2b-256 402ffe7a1df9b8344604b03dded8830e3ef905c265c33623920e1cc6092bf74d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.11-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4347be9ce82f47b35bfbd7e15ae71001a0337eb186b34d5184a8a1163dbe5e76
MD5 ea6217566a0222ab3ba9adec18f281ff
BLAKE2b-256 a51bb4123a27f1baa989d044062864126f68d1ace9b17ecc9ffb56077256d14f

See more details on using hashes here.

Provenance

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