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.12.tar.gz (200.3 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.12-pp311-pypy311_pp73-win_amd64.whl (423.3 kB view details)

Uploaded PyPyWindows x86-64

pylmcf-0.9.12-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (522.8 kB view details)

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

pylmcf-0.9.12-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (499.5 kB view details)

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

pylmcf-0.9.12-pp311-pypy311_pp73-macosx_11_0_arm64.whl (465.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pylmcf-0.9.12-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (499.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pylmcf-0.9.12-cp314-cp314t-win_arm64.whl (412.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

pylmcf-0.9.12-cp314-cp314t-win_amd64.whl (432.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

pylmcf-0.9.12-cp314-cp314t-win32.whl (420.1 kB view details)

Uploaded CPython 3.14tWindows x86

pylmcf-0.9.12-cp314-cp314t-musllinux_1_2_x86_64.whl (977.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pylmcf-0.9.12-cp314-cp314t-musllinux_1_2_aarch64.whl (937.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pylmcf-0.9.12-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (527.6 kB view details)

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

pylmcf-0.9.12-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (503.8 kB view details)

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

pylmcf-0.9.12-cp314-cp314t-macosx_11_0_arm64.whl (469.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pylmcf-0.9.12-cp314-cp314t-macosx_10_15_x86_64.whl (505.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pylmcf-0.9.12-cp314-cp314-win_arm64.whl (409.9 kB view details)

Uploaded CPython 3.14Windows ARM64

pylmcf-0.9.12-cp314-cp314-win_amd64.whl (429.0 kB view details)

Uploaded CPython 3.14Windows x86-64

pylmcf-0.9.12-cp314-cp314-win32.whl (416.9 kB view details)

Uploaded CPython 3.14Windows x86

pylmcf-0.9.12-cp314-cp314-musllinux_1_2_x86_64.whl (974.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pylmcf-0.9.12-cp314-cp314-musllinux_1_2_aarch64.whl (935.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pylmcf-0.9.12-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (524.8 kB view details)

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

pylmcf-0.9.12-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (501.3 kB view details)

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

pylmcf-0.9.12-cp314-cp314-macosx_11_0_arm64.whl (467.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pylmcf-0.9.12-cp314-cp314-macosx_10_15_x86_64.whl (502.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pylmcf-0.9.12-cp313-cp313-win_arm64.whl (404.9 kB view details)

Uploaded CPython 3.13Windows ARM64

pylmcf-0.9.12-cp313-cp313-win_amd64.whl (424.8 kB view details)

Uploaded CPython 3.13Windows x86-64

pylmcf-0.9.12-cp313-cp313-win32.whl (413.9 kB view details)

Uploaded CPython 3.13Windows x86

pylmcf-0.9.12-cp313-cp313-musllinux_1_2_x86_64.whl (974.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pylmcf-0.9.12-cp313-cp313-musllinux_1_2_aarch64.whl (934.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pylmcf-0.9.12-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (524.8 kB view details)

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

pylmcf-0.9.12-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (500.8 kB view details)

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

pylmcf-0.9.12-cp313-cp313-macosx_11_0_arm64.whl (467.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylmcf-0.9.12-cp313-cp313-macosx_10_13_x86_64.whl (502.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pylmcf-0.9.12-cp312-cp312-win_arm64.whl (404.9 kB view details)

Uploaded CPython 3.12Windows ARM64

pylmcf-0.9.12-cp312-cp312-win_amd64.whl (424.9 kB view details)

Uploaded CPython 3.12Windows x86-64

pylmcf-0.9.12-cp312-cp312-win32.whl (414.0 kB view details)

Uploaded CPython 3.12Windows x86

pylmcf-0.9.12-cp312-cp312-musllinux_1_2_x86_64.whl (974.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pylmcf-0.9.12-cp312-cp312-musllinux_1_2_aarch64.whl (934.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pylmcf-0.9.12-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (524.9 kB view details)

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

pylmcf-0.9.12-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (501.2 kB view details)

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

pylmcf-0.9.12-cp312-cp312-macosx_11_0_arm64.whl (467.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pylmcf-0.9.12-cp312-cp312-macosx_10_13_x86_64.whl (502.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pylmcf-0.9.12-cp311-cp311-win_arm64.whl (405.7 kB view details)

Uploaded CPython 3.11Windows ARM64

pylmcf-0.9.12-cp311-cp311-win_amd64.whl (425.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pylmcf-0.9.12-cp311-cp311-win32.whl (414.6 kB view details)

Uploaded CPython 3.11Windows x86

pylmcf-0.9.12-cp311-cp311-musllinux_1_2_x86_64.whl (975.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pylmcf-0.9.12-cp311-cp311-musllinux_1_2_aarch64.whl (936.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pylmcf-0.9.12-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (525.8 kB view details)

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

pylmcf-0.9.12-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (502.2 kB view details)

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

pylmcf-0.9.12-cp311-cp311-macosx_11_0_arm64.whl (468.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pylmcf-0.9.12-cp311-cp311-macosx_10_13_x86_64.whl (503.5 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

pylmcf-0.9.12-cp310-cp310-win_amd64.whl (425.7 kB view details)

Uploaded CPython 3.10Windows x86-64

pylmcf-0.9.12-cp310-cp310-win32.whl (414.8 kB view details)

Uploaded CPython 3.10Windows x86

pylmcf-0.9.12-cp310-cp310-musllinux_1_2_x86_64.whl (975.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pylmcf-0.9.12-cp310-cp310-musllinux_1_2_aarch64.whl (936.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pylmcf-0.9.12-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (526.0 kB view details)

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

pylmcf-0.9.12-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (502.3 kB view details)

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

pylmcf-0.9.12-cp310-cp310-macosx_11_0_arm64.whl (468.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pylmcf-0.9.12-cp310-cp310-macosx_10_13_x86_64.whl (503.8 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

pylmcf-0.9.12-cp39-cp39-win_amd64.whl (426.1 kB view details)

Uploaded CPython 3.9Windows x86-64

pylmcf-0.9.12-cp39-cp39-win32.whl (415.2 kB view details)

Uploaded CPython 3.9Windows x86

pylmcf-0.9.12-cp39-cp39-musllinux_1_2_x86_64.whl (976.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pylmcf-0.9.12-cp39-cp39-musllinux_1_2_aarch64.whl (937.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pylmcf-0.9.12-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (526.3 kB view details)

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

pylmcf-0.9.12-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (502.4 kB view details)

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

pylmcf-0.9.12-cp39-cp39-macosx_11_0_arm64.whl (469.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pylmcf-0.9.12-cp39-cp39-macosx_10_13_x86_64.whl (503.9 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: pylmcf-0.9.12.tar.gz
  • Upload date:
  • Size: 200.3 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.12.tar.gz
Algorithm Hash digest
SHA256 194c5d5059b3a4b659d02226a99b3059cdeca72425166b207464912ec1906c47
MD5 6ddc00e9f41d54aac2810cbcfd28df49
BLAKE2b-256 666a4c7f8a643da2caccca64b6b593bef9d7f6a7c8819c1477bfe698c190a981

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8cd67ead3b2d2e74a02e0f164e8a4bb117bc13fea6bb57e3d9d2d1558dd1a3ec
MD5 41504e539d165189e60b1e47b2b472d7
BLAKE2b-256 28db9ef1e6fd993c9524968e5018c116a497dc3aeff530227706fdad89c15411

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7cc88e645f4059ac9d0a616dc63a3f8347ad13561f48b7fb8c49d1a0627af7cf
MD5 ba7bbb66028ca35fdbbdff0cacab7aeb
BLAKE2b-256 0f364cafee2e2909200720ec3d67761e4493322620c4b36a5e452c0d4d24345c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1542573b01231eb18e4d203869650cdd264c063e036493089042aa79ead448d4
MD5 1b69ed27702b38c24458d57827481a2e
BLAKE2b-256 6eb93ffd615c5c8cffc52a388be7cef3ed219b63e598e94abd01e4bfba3b39f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a760e52ec8595c03f998c82fa37edcfa4061b98b63b06e3be653de4eb5ae1eb
MD5 9b33be835fb5438951ee382c4f2550d6
BLAKE2b-256 1f0416beb2b61157cb890f4c4a16c3d3493c43d37559696abcf0d6c0c6b09e4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4d33ca5b13ba32f3ad24da804a93daf8cb1fa25cc436308b820ccd1ddc566a2e
MD5 03d781f4829ad144e033a74ab912a639
BLAKE2b-256 af5e75a279385f488eca67914e1e91a0aa7c08dd8fbd45e8824403c3352189d1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 412.9 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.12-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 65e3990770c3dcd4a95b61aaa746608f09fee674d613594b4aa717ea01f42ebe
MD5 c778aefbc5b52eb46ce6f6687296f647
BLAKE2b-256 20dc8849e5d22ce7c0d1353afa5fe6d3b7c93d14b0a79b476f6fdf628e265556

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 432.8 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.12-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6a459cb2ee32b5531cbfbc08f3a674ff6d43fa1a25985574089d3043735cf621
MD5 30f7156f877d23b17d01b65537ca3aae
BLAKE2b-256 37915878c1eb52b3ff8e0a7eda052956d489e8e138f5a3bd7ab839130b4bb610

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pylmcf-0.9.12-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 55de21360263c172d88850341190bd1d7677990d14ec46958bae1a4579903e03
MD5 6611371b2aa3ca406fda4d2433d7c625
BLAKE2b-256 0b584daf5e5a3c5a2f6997a8c7ba1bab9dd9eb7a9640f46d00a8ed58d90d76ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4928066a8a8168b0db9c85f2f05ee81fd33901ffdba443be2d2079731ce3d576
MD5 60eb6c8b62bacb0a5e78064d0427fd42
BLAKE2b-256 ce0e8a16d2ab10763139ce58aeff983a2805951908636adec68516207d47b202

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60ef2dd665d85b58f80db1a94608a93deb18509000b201d54f9ee59d2e1d151e
MD5 ed71d795c7b7354df997aa617f0de039
BLAKE2b-256 030afc057e3c1f41ee2b9d4e3d1bfef2239ffaed855e27f00dadb756996c5ecd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12d3c36dd5d8b9f5f319fb55d6a55edace7b26fc88b9298d9624e26a55019b84
MD5 5d382734ee734633a59bcbe3eba19e82
BLAKE2b-256 4bcc44e205af221bc354ed5f35c8c8460161da769b664a70d48fc9bab9c12d17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2fa32997c12dd449b6f1c7d42f701b39e9060d6615800b74aef591000f7a648
MD5 8eb111fb38afda8db4ea321040c57556
BLAKE2b-256 28c2e6db4c7d153972af561cd005d50df9221b046e7e308a051fae9f1c829a16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7780aadc2ab5b46b1f31cfa459ee8d013752d13b263384fcec60473191613600
MD5 7defd12caee5baa5f7081daa5434312b
BLAKE2b-256 9de0bec387602239ddc3bfca08f879781dce90e99dd9864431a4b38d5185c188

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1fb8e615d01b510e5cf05d83927fdc6c18eaa901d7438487cdfa5dce7e842380
MD5 7f98cd2f95b60c406d0e496aacf95dc3
BLAKE2b-256 9b756ac80a300314147ca740c0fe04510da5aeeb9e8a8ebea97e9620dc472483

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 409.9 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.12-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a1e3a89afe1d66bf9588b96b943177f7ed09daad6c6ef8c035905a732c6b8c8d
MD5 6765c5eac513534d3c436fa7baa75c7c
BLAKE2b-256 9171a7be7acfc1f0ef0559ee12b2206ab9c8106fb5d98655f8f915a8f90fb276

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 429.0 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.12-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 00d9819791125d3628f5e2e98fd8f7d1279aeed9d87381854051a7254f2098f7
MD5 9ef62e2d8df5c3fc42200b1978338bfd
BLAKE2b-256 c4e4395a9abcf2b23bfdc3d2f397515f0bd9ee07e499fcbcc841ac9ce62cbbc1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp314-cp314-win32.whl
  • Upload date:
  • Size: 416.9 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.12-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a7181da123cf49ab0557a894b9b9f6b164c4e9516f3256aed548c2850db54fd6
MD5 87f5303cb323e4559214ba8f61ae3a9d
BLAKE2b-256 2aea210eaf5c12b7e62f2695951777a43ad627b441ad8b44628e1849030e230b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad43c23c0544e83bcf213d63e9c5f346d05498c175aadad3d26fda67b47f0f8e
MD5 86568464a98418678587626fcc89c4f5
BLAKE2b-256 b83dcad90247ed817261ac9a6c0c80c1fb20cf75ffd4bf1bbd44e4d22fff095d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e5d626aaae36b2fd4b8d8da5b8169532544bf95f3fef8cb0a902f833bb47be7
MD5 2bc7b325c41d6ce3dc459d0bb7c48365
BLAKE2b-256 2143488e8d782d82839fc913ddad312ab3c6b65ce5fc08f8e7e957793b759ea8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 948d766b23ab92ea0dc9f84161ba2938cb09f228abb8ba69590bcd6f7915bd48
MD5 12c7749d42bb683f7943e7a26223430e
BLAKE2b-256 2e6e6b3f381f763e3ebae8bb447df1f6b40563cc1d09e21f426f8c7b14b58146

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f392950856773be0c0bd1e9777056e09ba537f1eea92d11c180db0f85e5640b0
MD5 e8a06341fb33234a429b74b5cf2131a9
BLAKE2b-256 54e45e7d27fc7f0efccb0123f3bc670f5f524f6b9aeebc1d1070bba135a500d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80570ad08788e807be1fdc57206ae8807188697f3732fb9172d71e8b8018daa7
MD5 c5b2d1b33c1f3f1c983d17e31d7f7307
BLAKE2b-256 1f0c9b64c9b721631e513a57175e33a920ed19696abf77e50baa1fed0f4e7086

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 920583eec287620a919e88eadbaed90f14d15711669b8026c2b13b5b572bbae9
MD5 ac6091345ca67b9d8b0effb01235dc5f
BLAKE2b-256 6d34cf3719842ce360d05067b68266f791c6e31e260177465af6d11d2f303f4e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 404.9 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.12-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1a418429f9d16b0f67638e3cc68c21481404682c57452770e2f63deb642e5cc7
MD5 75d77a402fe601bb96d9b6bff5f51a93
BLAKE2b-256 e956311885797ec8e2cee32c75a4d95b4507f2c3103faaa18b8ac9571a0d4ce5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 424.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.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1fa0b7c26914c033e3aa851710445b74020c18d6dbe0afdc8a9b4c4263635ecc
MD5 242f87f326f86316d45c94a965d549e6
BLAKE2b-256 391757de6e6129b138a4c037331bccf56ae971116827a369a73c9440084fc33f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp313-cp313-win32.whl
  • Upload date:
  • Size: 413.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.12-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 76f8cdcc01723516d899c0bb791741d35d847868c687e659421945d0d9b4a7dc
MD5 1544441560660cf0ff50dc6ad3d701d7
BLAKE2b-256 8efab84038dfd1024e5b29bcf955e450900897bb4c77a8b8e70625b367135ba2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 967a30791d89666bb961f582b91711c521b0426fcdd00a9f91484e0401a5cad7
MD5 d202fe91c32805bb4520a76e951bb86a
BLAKE2b-256 da1584d9ecd6191729135e9c4ba04197d86504f5e4c0200ad335a4d2c0b7bb2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf07caa031350bf05a55cc7459c61bb52b8cc5690dcd9ca85b74160c81118420
MD5 155ddd4e09d8e31228bc62413d9ad879
BLAKE2b-256 7b52242ab460eece067c8ab22673ede647a20e30e8ea7d0b25d10173bc74e597

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef692efe6c9e3202bffaec271cdc64097c08496b264b7efbcadf8ca2ec4b604d
MD5 ae4b56d70af8a669eba15ef5f7822ec4
BLAKE2b-256 effeea75f67c26d5c2b068f8aa9c83733147ad2dcefb3852850b48e7d63f3ab0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c75eb7d2b6562c7300754404ae103f08f9b3b482cc3ed59ec21fac9885158785
MD5 301a4b20af68076be645ce69126fbb9d
BLAKE2b-256 eb3f3c404d0305fe61005b9d25a8478932cfa84ef0bffb12fc53143ff05e0616

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4afd9b8efe326580b2db96bfb495a006c94a8c1d6b08463c4587c86a7a04737c
MD5 bbe3a79d3c8249907e7a68a889082896
BLAKE2b-256 b9beaee4204223ef216849fd14bea5104c17c1274c0313e26d0b539a80e91c04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ef78e5d17883d14d2624bb5a0c53efde02e5e0f34cf6e91383e8729a7ac8440c
MD5 491bd76e5f43dd706728a8f2b153a0ec
BLAKE2b-256 efdc360eb7af376490b117f0b5899da08737382174394db21f2162a840cb43b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 404.9 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.12-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b9d4f04f1fdb26eef0851fab9d18f091d4b93c689fcc63af99603ea256849c1b
MD5 f20c8ca56171ebc207b10148ac511447
BLAKE2b-256 5e8c0b3fb4d76595cfe93a78bb95c9dbbff9553bdfb6500df0cd8d1298fcebc0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 424.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.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 55070a7bfed0d94fe704d2889a0deed6f36217dc0c9a2454418ea60b00e8db6b
MD5 d07d2aef29763410a5b77f37f94a49bd
BLAKE2b-256 541d4f8cf86c70629f860f0e2ef902fc741b722412e47b335deb67cfcf30381d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp312-cp312-win32.whl
  • Upload date:
  • Size: 414.0 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.12-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c35b763ac90449530a55a619c1c3b41e0f7f3c466a9d4c24d8b6a50edd99767e
MD5 8e04213f1b440310cedba6b72b5f21b0
BLAKE2b-256 176c97902bac5a4ad0baf0934e48389298fe6fb5751784603ad09f07f4bb4f2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 673bbba82eab2a9fc60d22244fd2b9e8f1eff13cded4293f174b5d7ad5a89146
MD5 02852135de2e6a17b1d780119a109131
BLAKE2b-256 46377e76c1f154505afbfbbc12880809fca9b80b4a7cd276ef2b1fb8b93bc964

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9aa28693f845150d61eb80fe6376fa00c7c123c2795d4f62aef5717498b7e850
MD5 160381a6871b709e0824441890471b6a
BLAKE2b-256 ce794147c664201adbd974c56bf69bfb506ec15251ff0842139b7e08a3155018

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a437636a8426154caa0af47f7e7eb276e8641321b431839260421fa9be34001c
MD5 0b61c81c8c1ad659e6cd2bfd2a8e4097
BLAKE2b-256 d0761f244b2220ad7597e7ea179c2f7f308212d0aead05825103b39ce4964338

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8307e4c4eda58fe4ff63977037e21f583af0e446a8143cd8b110e791cd1bb7f
MD5 3f86e5fc749df9b634f1c092bf4e846f
BLAKE2b-256 9bb38b59d2eb90effb150a0dc0e79ba8ab7b3b879bad96581f66fd10c17b5c30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7177a650f321c9c760c1f95948117195aad17b68262624aa9ce2a9cb8ba8887
MD5 d4d4cee75e5c8e9331469654885669a0
BLAKE2b-256 9489a3f48b29afe240942d3b8c2d4e0efa57076049cdb69ff1f4a6bae997c5fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 66ba23a169e05d401e21ebb1e0c9d45a4625e799af670a5c5047672d8273d7dd
MD5 52ad60a5995749d3cbef6cf5dc9214de
BLAKE2b-256 d91d77c33cbf36f7208199a0e1d4bad0ee52a0262d80e28f433fd6d0b11c1e7f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 405.7 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.12-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e1af24f4a648aeabea5224025ebf40cea6ee7f97c2d972a6834a2d55a9ee68b2
MD5 d6983c566d61e3b2b4ad892f2b93acc9
BLAKE2b-256 0d31abf660a14d0e894714cc7cb610a88a97efb217172dd3dda129982dc409bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 425.6 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.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0aa46597da743b06a64126b431cfc6afd9198b80cea9f939e821a81aa506ebb9
MD5 30e9c8a63ad98145ba3fdeaf57cce5ef
BLAKE2b-256 3379863ee3d4e508a4842e00fcddaa3deb11dcbaca26c01b613904abf81db2d5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp311-cp311-win32.whl
  • Upload date:
  • Size: 414.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.12-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b4b5fe8fc36b87f7c7f0a5803c4c13ea61dbcf77da92d8b44be73d5f2680ccf7
MD5 af6f056eded5e5ce770bd3253afaa84c
BLAKE2b-256 37a4bb5fb5dbbbe29a81b622fbfc2272efefc0a3fd46cba4da4b628b6e9dc3e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37f40452eea4e2abd8c230474fbe755e2c18f0de0db4fff238f250311179a96c
MD5 83d71b6e3c4ba150569bfe51f340937a
BLAKE2b-256 4bc2597fdc764f932fe8feaedf31872711109069c074078e5a954466c66f1de8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b5fa6447dceb054a3ef6544bb32f42d7f88fb3b139b48ff3b2cd8368468a7db
MD5 926f39bf21c728ca32e49b8d81cab844
BLAKE2b-256 030a350a7dc83b819f3df3df6d5c5eb49998539ed2ee03d54cbaca1f33f7a7d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c3764b353f7837ac5e5b2ccb0ceeb54ad8118f38f55888659d3220558c53532
MD5 e1a87e7ef85e50efd6bb9f646c5fe397
BLAKE2b-256 316c2de99ea5d6ad1c6ad85eb1d527de3ca2b29acb209f43264d97158174c495

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e5ecc49b3bb0f1763594b66d463a57c6a83b206e98592f5e62bf37ae534ce3cd
MD5 3cae961a377fc05f17b43b401f7c1225
BLAKE2b-256 4962aa972e6e0e0fc0b0eda7951889eb7ac9c1465b030198107cef13312b679f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64262cb47d8af08d985b236bc5c27752a4a7a05b518fb4b82519fe4f30ae35d7
MD5 349bc89cb6f04f829cc04f2b61266e70
BLAKE2b-256 9bfa4b6a6df141b89fdf4e25614085b820149302d2a04985edd5531c793a733d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c863e06fa78f3a1ad6752d03b7ee66c6a263875ec76f050b76447348692c0556
MD5 006989d64513b82f47ada1e33d2c41d8
BLAKE2b-256 5f39947657eaa0478b91490e1bc9813fd9779ae47cbec6789dcf60510e3e5702

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 425.7 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.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d96ffd365bd8e6d952734717e5990b24ecf07cadffd21b65019f25891220aa19
MD5 267e8d7d3cd729b8447722406d06483a
BLAKE2b-256 c3ac7117a5fb3f9ed2c1e17d2ff6d2fd9f03d773a33e001ad8628d1cef9b1647

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp310-cp310-win32.whl
  • Upload date:
  • Size: 414.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.12-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 184bd67164e87c2150791dede1054cb07d8253157cb8b007a2052d897528947c
MD5 1d5bf788222488b5e459d9159d4dd5ff
BLAKE2b-256 8ef086318cff73f8d1e67967e67f679b3e1664f3ff89d6daef33b7f6b56d025b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4578410af029f0cf8529976769b778dc0462520abbd0cfa2adc7605c9e9a7513
MD5 df929177cc1256c9f36c14ad7f564a61
BLAKE2b-256 526556fead69285fdb335e834cfa231accfc01201a9b49ca2b38cbffed3d4790

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f531ccade837a45cf3ee5c429247876ee8e181b51888f13781e9c1404911fa60
MD5 76c3e9e2ccc5a15ba967378ed125f0b1
BLAKE2b-256 f4b900ed70f375e308a3ce6ebca20125351e4beee9abb36641c8dcaf5b42e46e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5424dac71427772ea40ef361b5f77c406924e5c99214412748b9444098ce06fa
MD5 ac6d0307905e588c21f68c2318b13580
BLAKE2b-256 177e8df4a48dcf35c533c7300b78d747bba5b77b7a48e8c76234f41eabcc74d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7cc4f757adcf82009988c04af766283ae44e19aa72b0e3d450d2b05e47bf3bb5
MD5 f3a2bee6c88e816b73d67a1e70fd73a7
BLAKE2b-256 f0b88260ceac6db5a318a1944e825fd9870d491a3733f0c22b99e460a6ee4360

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 365f9aed2f63eed4d977661f58fb6bb4fb158f516ed11f3d5774738b66df1711
MD5 5b06c46029d949aef48a6825012d4950
BLAKE2b-256 4a0eee0c001dd4512481b8941cae772448372713bb9509e78712da04bd8ca98e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5e668b5692ff7c789f7f4bde1be9793fcedc515787443734a1665c07db52a854
MD5 441bc960316931e9817f65e3ca61b179
BLAKE2b-256 5fb8cb8a535e140e7af803609d5d56f870406529b8ebb186cde80d0deb489955

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 426.1 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.12-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d95691a9e4270692f144279adcb87c803ae559c06fd8caef579193c90402a25d
MD5 90ac264b2033114cbc53506ed32ddf96
BLAKE2b-256 643a9162347bd9f2249d641f32ef08f888a762b5f8d6203d49c1ea6205d7e67d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pylmcf-0.9.12-cp39-cp39-win32.whl
  • Upload date:
  • Size: 415.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.12-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3fe5e6157005afb497459653030dda337e0fd351ec49f97986364f8302f723e5
MD5 676c97ebab8302bca12f9ec097d20867
BLAKE2b-256 955448dab7fcd933ad8bec9dfaff8592611af7ccb0f6547296822085503f0cef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ddb99046f6a2892897c408c0bf9243bc8c0988fbf7b8cf7980eaeba52652d20
MD5 b87d531dbaae209de7f34896561c905f
BLAKE2b-256 24f95136c413521420291c2c58f66ae008ae7ff27a5a7191c26f584f0e121151

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e74ca93824c0e103679246c99bffc012feeed373a19ea6bff6a9a0e9f0f0b6c
MD5 1eb658e7070e19e974d323cca7adf3e4
BLAKE2b-256 fe96d1782b9843e93cc8237a7543f25fcf267c1dca94e4532aab608f72a08031

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e1b66017905c47332a62b5acd2b5c6c6adf09d5cdc50ce467f0a1bb7b41a88d5
MD5 6912b041667bbecf8e1938284e546009
BLAKE2b-256 016cf1c840d6393ad8ebc9ae0c78dfeec18612dcc0a774f8be9ae9ad37861644

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 abbef36d90db88fc3ff4f67813dfc21de35266b2b3cc0925463ec50580787d44
MD5 9a3556b3a26260b350d4c634ecc9f7b9
BLAKE2b-256 5233b1760706d2d8d9b94e135d9e7113fbe3eed44b95e5090a9f7f41c7927f1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e94086f196cc9578dea0f50c7533c1798e6889afa5c8b800ddeb2b0eb52e716c
MD5 5d696e9152f0c465f57a3dd742eb00aa
BLAKE2b-256 7889f7210eb0efda3a322a27742de8f8f7f02c38c02d9e17ea3468f9af7d0791

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylmcf-0.9.12-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 24dca859b211bad3ebfec415861ec30563f433b5e2fd8572d00e454b2bceba94
MD5 b42cde5130f1581363c10aa3d84f30b1
BLAKE2b-256 d30c93cb343ede21e058ac6a79379b4ce9ae79205ef4b4f4b1c04d16f12b6fe3

See more details on using hashes here.

Provenance

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