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.2.tar.gz (61.9 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.2-cp314-cp314t-win_arm64.whl (162.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

pylmcf-0.9.2-cp314-cp314t-win_amd64.whl (177.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

pylmcf-0.9.2-cp314-cp314t-win32.whl (170.4 kB view details)

Uploaded CPython 3.14tWindows x86

pylmcf-0.9.2-cp314-cp314t-musllinux_1_2_x86_64.whl (660.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pylmcf-0.9.2-cp314-cp314t-musllinux_1_2_aarch64.whl (634.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pylmcf-0.9.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (210.1 kB view details)

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

pylmcf-0.9.2-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (200.1 kB view details)

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

pylmcf-0.9.2-cp314-cp314t-macosx_11_0_arm64.whl (164.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pylmcf-0.9.2-cp314-cp314t-macosx_10_13_x86_64.whl (199.2 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

pylmcf-0.9.2-cp314-cp314-win_arm64.whl (160.2 kB view details)

Uploaded CPython 3.14Windows ARM64

pylmcf-0.9.2-cp314-cp314-win_amd64.whl (174.0 kB view details)

Uploaded CPython 3.14Windows x86-64

pylmcf-0.9.2-cp314-cp314-win32.whl (167.2 kB view details)

Uploaded CPython 3.14Windows x86

pylmcf-0.9.2-cp314-cp314-musllinux_1_2_x86_64.whl (658.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pylmcf-0.9.2-cp314-cp314-musllinux_1_2_aarch64.whl (632.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pylmcf-0.9.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (207.9 kB view details)

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

pylmcf-0.9.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (197.9 kB view details)

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

pylmcf-0.9.2-cp314-cp314-macosx_11_0_arm64.whl (162.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pylmcf-0.9.2-cp314-cp314-macosx_10_13_x86_64.whl (197.0 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

pylmcf-0.9.2-cp313-cp313-win_arm64.whl (157.8 kB view details)

Uploaded CPython 3.13Windows ARM64

pylmcf-0.9.2-cp313-cp313-win_amd64.whl (171.0 kB view details)

Uploaded CPython 3.13Windows x86-64

pylmcf-0.9.2-cp313-cp313-win32.whl (165.3 kB view details)

Uploaded CPython 3.13Windows x86

pylmcf-0.9.2-cp313-cp313-musllinux_1_2_x86_64.whl (658.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pylmcf-0.9.2-cp313-cp313-musllinux_1_2_aarch64.whl (631.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pylmcf-0.9.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (207.9 kB view details)

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

pylmcf-0.9.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (197.7 kB view details)

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

pylmcf-0.9.2-cp313-cp313-macosx_11_0_arm64.whl (162.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylmcf-0.9.2-cp313-cp313-macosx_10_13_x86_64.whl (197.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pylmcf-0.9.2-cp312-cp312-win_arm64.whl (157.8 kB view details)

Uploaded CPython 3.12Windows ARM64

pylmcf-0.9.2-cp312-cp312-win_amd64.whl (171.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pylmcf-0.9.2-cp312-cp312-win32.whl (165.3 kB view details)

Uploaded CPython 3.12Windows x86

pylmcf-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl (658.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pylmcf-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl (631.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pylmcf-0.9.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (208.0 kB view details)

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

pylmcf-0.9.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (197.7 kB view details)

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

pylmcf-0.9.2-cp312-cp312-macosx_11_0_arm64.whl (162.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pylmcf-0.9.2-cp312-cp312-macosx_10_13_x86_64.whl (197.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pylmcf-0.9.2-cp311-cp311-win_arm64.whl (158.7 kB view details)

Uploaded CPython 3.11Windows ARM64

pylmcf-0.9.2-cp311-cp311-win_amd64.whl (171.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pylmcf-0.9.2-cp311-cp311-win32.whl (165.8 kB view details)

Uploaded CPython 3.11Windows x86

pylmcf-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl (659.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pylmcf-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl (633.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pylmcf-0.9.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (208.7 kB view details)

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

pylmcf-0.9.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (199.0 kB view details)

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

pylmcf-0.9.2-cp311-cp311-macosx_11_0_arm64.whl (163.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pylmcf-0.9.2-cp311-cp311-macosx_10_13_x86_64.whl (197.7 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

pylmcf-0.9.2-cp310-cp310-win_arm64.whl (158.9 kB view details)

Uploaded CPython 3.10Windows ARM64

pylmcf-0.9.2-cp310-cp310-win_amd64.whl (171.9 kB view details)

Uploaded CPython 3.10Windows x86-64

pylmcf-0.9.2-cp310-cp310-win32.whl (166.0 kB view details)

Uploaded CPython 3.10Windows x86

pylmcf-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl (659.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pylmcf-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl (633.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pylmcf-0.9.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (208.9 kB view details)

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

pylmcf-0.9.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (199.2 kB view details)

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

pylmcf-0.9.2-cp310-cp310-macosx_11_0_arm64.whl (163.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pylmcf-0.9.2-cp310-cp310-macosx_10_13_x86_64.whl (197.9 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

pylmcf-0.9.2-cp39-cp39-win_arm64.whl (159.1 kB view details)

Uploaded CPython 3.9Windows ARM64

pylmcf-0.9.2-cp39-cp39-win_amd64.whl (172.3 kB view details)

Uploaded CPython 3.9Windows x86-64

pylmcf-0.9.2-cp39-cp39-win32.whl (166.5 kB view details)

Uploaded CPython 3.9Windows x86

pylmcf-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl (659.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pylmcf-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl (633.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pylmcf-0.9.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (209.1 kB view details)

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

pylmcf-0.9.2-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (199.4 kB view details)

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

pylmcf-0.9.2-cp39-cp39-macosx_11_0_arm64.whl (164.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pylmcf-0.9.2-cp39-cp39-macosx_10_13_x86_64.whl (198.1 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

pylmcf-0.9.2-cp38-cp38-win_amd64.whl (171.6 kB view details)

Uploaded CPython 3.8Windows x86-64

pylmcf-0.9.2-cp38-cp38-win32.whl (165.7 kB view details)

Uploaded CPython 3.8Windows x86

pylmcf-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl (658.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pylmcf-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl (632.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pylmcf-0.9.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (208.2 kB view details)

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

pylmcf-0.9.2-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (197.9 kB view details)

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

pylmcf-0.9.2-cp38-cp38-macosx_11_0_arm64.whl (163.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pylmcf-0.9.2-cp38-cp38-macosx_10_13_x86_64.whl (197.2 kB view details)

Uploaded CPython 3.8macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: pylmcf-0.9.2.tar.gz
  • Upload date:
  • Size: 61.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2.tar.gz
Algorithm Hash digest
SHA256 2a2ca7aa1fb9baead61883537cac64cd5dc77f30b6fe85d0180aa89c57303893
MD5 a093fd9e04a173d5b522c1ee30ecb15d
BLAKE2b-256 834fe5bb2ac8b15405a15b3a5795b7525e65c9223a881820aa52702a6f5d316a

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 162.4 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d0aad8a65b829b3ee1528b814ff4a3fbc93e0dad805e41ab9f510296aa311ec6
MD5 9bcbc4dc541d973e68c8c4eb0a4038af
BLAKE2b-256 db0669f49734b82826848a0dd7fdf85a4c9a72dfcf73cd8464ec6f171c488c71

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8bcf775cc803b964da14ef9bd523e6c368bf82c9a9152c085c688a133c23307e
MD5 57f448d01e1dcf7753b4ea85df347a75
BLAKE2b-256 c259d4130cbd10839e78c03ac015fff522fc1c457a6e366269f56c00d35e4f1c

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 170.4 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 589f99e44f4b4a9e724ad5882e5e69678f78e973ea2d5a0d7306061827f6c49f
MD5 8cf2959818e2cf6925ff32bc07be203c
BLAKE2b-256 8d459d577e92bd1ef1155d437e717295623a125a2d1eda024f9a337d6e47f6cc

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7919ec015955129e5f92a9cba21f80cef62e0ae5954151fd473190073cb6a6f8
MD5 4f8a0ce3df87b79e9975c0985292dffd
BLAKE2b-256 b4f507b62184e220f64f973922f5129d3e8513fd354dcc11abd2e066ad4df445

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dae2d9097b4acef9f0e60c088cce233993be9ce2fcb81360abda183ef00e9c40
MD5 937f0424dd6f850dba3e83914ea1baf7
BLAKE2b-256 1c1aeaec1f3905feb06688a69144173e1fc7d02959ba0a0d0a0b871e1ff9e629

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1aa2947b7fb66ec9949e0f7d00ee13be5dd97b99fa331c7d4e1167771863020e
MD5 5507cf450f3532054fd5ce7301dc9537
BLAKE2b-256 a587f136fb83ac2cce04e24d1891ae8b96ca14d29572dc5db65bf3fd5e218c46

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 035c62eef24bf7cd1d8c30eb146e6d0e3a6488d3ccb96ae869bbfe32e27f9ca4
MD5 89ec45e47fb468cbf8d6efc0baed23a5
BLAKE2b-256 7b922f8b4412a6b1b4559af0317f23195c56601ecea6d7e2913d8f5f049ca261

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a80516c106feeca80033d51291f6d97ab5859d20339e709b6950c89351fa9a45
MD5 98a5e5f819fc9a971b0b421f931d4a9e
BLAKE2b-256 f218f5f2291d9cb3fe9e91d5e6d910815ab49d1aa2c4f574f0e7c45b9f9b752f

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7b2099dd18a0d2221268a8fcb95de197947e8e5c707aba214831c01833af9c49
MD5 c02f1ae484aa569c28443f9299dcb8d7
BLAKE2b-256 9d99aecd697b0832c7b62b0a6e56c36500c716cde77b4cd60458585f9ac52e3e

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 160.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 17e52bcfa90db0ede4ae04e13e29c5cd33da0dd6a869b03239037a96cf983e30
MD5 3831d95e786413a64b8d31c61a360772
BLAKE2b-256 3f6a548476958f3261daf1592dc077ff59825c7b83313d3be855545107a28445

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 174.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2e1dc3c3099e3fe07af68e2217f019e10ed3e389889059415c9b056e80f077bf
MD5 657a76c3a6c4e10b318bf6f4cdd2980b
BLAKE2b-256 6d6c5b55a8c994468ddba70f5bb6e52fe8584e861e037ccd0bf17cda403cd128

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 167.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8a5665333c0cd8487c6de67e265769036663b508eb573a682cb5fc1c0119c53e
MD5 72d409d25fe56a32d338537d3883e894
BLAKE2b-256 3d4c807982d43e17e7adbedef11a71d818dc2c913dacb930bc4db4e979325413

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe383ce26cd95500b8b2a436f6e38d761c6a9f17f39a37da983e0adaece5c57b
MD5 69e0ebf212f33ec82171f8d7edaeb146
BLAKE2b-256 ce7ff1d0bb8247a0e4aaf89e39038385e97cc40026139a3af17f4ea666e6f786

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9cf46699e42c32392f329f0fc890b40ab3d96160efa34fa7140dd2258b52824f
MD5 89ce4afbdf2e8c7e07aed5ee2cb3723a
BLAKE2b-256 56cf2954f36054775423cf4031ca816b924e489a9fc3bab3838c5ae53594c6af

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 747faa2e1567fcdf8d1657e35957407efc11c7fe68759e826233495e7d5f2be1
MD5 e9ce6149c9f6a7f340c698d1b46b367e
BLAKE2b-256 74916f69aec43edf63b341a5423d9f5a7edabe8533e6aae0a7f70c19cedf4e25

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c80321047253c5ef001cfb55f76658702a1578f6c2f1a6d9aca761306bdcde9
MD5 97ca2eca6317078c094604db0e162a95
BLAKE2b-256 127390e1ee8fe49dddc8c6442f8de0a3c79de89d219a93bd14aa51d88c82c836

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38798541a10e28b912e65db4681bf03cd8682c4c49a77d4a7ae4d35519b4b5ee
MD5 6bc466817ab2eeb914f0daee67587d4d
BLAKE2b-256 efc20208e2e49df5f441bc56262939239b2f99abac205d436777b5157b19709a

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6edf6f9ed940e7fd51420ab5a8e0b698c6e49f0e35654b3f67dcc532b8b0433e
MD5 a377b9df25f15cff57352e9f0d5e6684
BLAKE2b-256 b349f9298d81c25dbdda259477e458f3a5ba1e9423ac6605375729c5a477fe37

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 157.8 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c13f7762ec75169103112267bf35c01a55a8c199a590acf9fb8acd0301b6f8e2
MD5 820545634825b9146da42c664f316d28
BLAKE2b-256 df51966ee3b7961eefcb0108c7fe98079454017d3e24e29ecdc3fb775f82a1d4

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 171.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 451b5e753bac60daf277c3919097c5955fd3ee3bc56da923f4a7face30bcf77c
MD5 853f33d16b46e121f0a670cbf3d2dfd7
BLAKE2b-256 a42b307499c064ce440b2210384885a0c313febab96d005492f46e94adf000b9

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 165.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8795898f15e61783c5e7c8961d686a85cfaf089f087b5f70e674a687b6e82052
MD5 e13bf78d57a981b18ba5ac8690f6d697
BLAKE2b-256 0ca69b666e6b3b447c5ca51adad754daadf419c7ca5694a4d0c3d1e041340258

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e52114889dbefcef008692512116513657c2e996a9c08ee147b360227737fd4
MD5 7b6abe8ef76683a57c4f3925fa0ddf49
BLAKE2b-256 0b5d0734fecd91fbd5d879d7835707199206e4c7473d56a8469b799c97e0c214

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2abc1c4c27ac7e56de23fea3fec306245cbe1d8efe410e02adea7a224e847fbd
MD5 68952f9644ceedefa3045c3759316ec2
BLAKE2b-256 9458f02b7703d918d0bcb4c2612546204f6fbb007f5b1cf84f122a11c7c6d18c

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a1d35f0a30b5fd584960baeeee3a6e96c8680991b99b3ff9939f4fe23c0603b
MD5 67541234117c8c7561f89aad55a56654
BLAKE2b-256 ad675ec1338e6fad3c1fe8bf58b78aeaeb9bf10798c7d53c75a006c73e94bad2

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e117d75e10736d03218bc17a9b901cdbbb959739885c394abba8a745deba113d
MD5 e2dd2bb2f7e86867f43c328206c6e158
BLAKE2b-256 c6336974c6087e4914349a645612661943aa9d053b5d645c479d7b55917bd2ad

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd433c26b945d51ff5dd68623b8a1235a4d8fc999b66c340954465a5a954d650
MD5 9a1ff3afd0a8cf3a664cd8f9ee2e4264
BLAKE2b-256 c3d584e724b9c8a56a5493d4634e5313e206e62966adb978bac00210e535a06c

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 936e5e7ee8e531727140e62cc96d0b393522d195ec02bdac62832111fd5882c8
MD5 ec0fd3598c4e45ddbd81ca1fd4e294ae
BLAKE2b-256 6def027dacfc5b5d3e06383ccc71d456e5a9ba129f50d4c0d1ab104f2738e557

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 157.8 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 09c555097499e273bdbd733961c9d1ba2fd5c5e6c4ec176cdaff10ab072ef936
MD5 b44c51e25fdccb20ee1819b5f98505ac
BLAKE2b-256 0fc34538ee9f5b4ddbca074c0823a330c954732c077b98bd11918ef3299bef3e

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 171.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2e8c5a691e0d4697fcff14fa12cc8da4f3cd5d5ebd016315ad7b6a235592a167
MD5 bc1a41b8e627b51de422ec330614c1d8
BLAKE2b-256 a733ad96e841dbc111bb76ea2b786d73d6de38bf46b58da9cb2403c5473c0fa8

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 165.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7c8b3e7fbdb051aeaff2fff1b45c7775b93e4edc8840e5d69efb502f284aef0e
MD5 c2facce3b46c49a0e0095004eb501fa1
BLAKE2b-256 5db9e01c64bb35fc73a65caf91efcc9c3f4ed98cb335ef7f8e188f8c1c7e0832

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 068f6beaddd96d6147099bb126c52eb85603acb6ef98df339752cc4ee1892b21
MD5 7dba532289d23270c431c1b2bbf48b20
BLAKE2b-256 90d1082a8633b49daaafc2714226a53727bd3422d93a48760bb7118c8e532141

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b55ea916b7fd993c53c3ebfcc2cb426076c7332192b883eef9e6f3d2e45fae8c
MD5 334d9b4f84dc2a6b74899363bb87d5fa
BLAKE2b-256 10ba244d8deac722d1f713a11406c3fd2d529c4f38cbf0da438c83fcf8859c35

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb3cd949eee84825c74849f08717e5f11915c57bfdfdfe5eb6d9378f846e80c5
MD5 91494120a5b6be0da5751885c98f8660
BLAKE2b-256 6b36ccd68baa6c01888195a6e15fc6999eb1e6394790b0f91d7f817504435bc6

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d4faee7c805c13c8d1849185999240f741710778b6b672c237790120e59534f8
MD5 0d3f96d2a4ce8859b7c1302b0475c9e9
BLAKE2b-256 924a989e666aa56910167403f39317fe5e66463ddc06aa68bb6823549c5cb466

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d08c105b52d1b687737f6993b9781b1b383675ca23af0db0b3423063c93ac42
MD5 43194099c22aad398dd90696f6cff186
BLAKE2b-256 41ae64267d22acd2f999545194f5ac8a38b820a3d7d75513509d013a3d9e207d

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 83f45b74340f0b89fe368a8479b62a2c6190772fd5769c42a1d44317df43ffda
MD5 2e45717bd2b96308e37b30317fcc8c47
BLAKE2b-256 55bda654c1fa981317fc897f3c0369b7f48c95f70f7bb0bea1fae8384f4309e8

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 158.7 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 98fdc28b689e697df187308063cf4c5a8889cc71414c999873d7e2357f52af0d
MD5 6fe46382e3c1a45695b05f71b352389d
BLAKE2b-256 e5b09a512ce3183d48d5f653c9b22f8a718a0db4cda9f0f86307220b87a2ffee

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 171.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2d6130afc7fbc33ff57b3df6ede3e4f7d9bc322ddb5e93737349dd5b9ef58c9f
MD5 6de109eb5dcbbd9c5646e8fa3111141c
BLAKE2b-256 ccc47497c0090d9cfaf8307c357796633f21ece472600016b7af1a1fe5874e3d

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 165.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e472a330edb4da3f8432a0576e4399acad1d5c5f7116608c1ac434696a6fb757
MD5 a9cc0d8052d0ffb05ce52924a68b4961
BLAKE2b-256 db7d922c3ba251193f4a27b62175e8b2e7d3b88fc0e08233990b43d2af8c9fbd

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0c1cf669cf473cfd19516fbbeca8af8bb7e48a0ca39811faa976efd6056d628
MD5 270658c3a962a3f62365f734e56b63f2
BLAKE2b-256 3d2a4fdc896b0d7c46fc86e7dfcef907c7f91720b4365f304f264da1fa70ada1

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6049254832f132408ef11191aad5d4b57564ea284b71e03c3d2d93d6adcef66e
MD5 8abc866cc94d3d479d180aabe16be8a8
BLAKE2b-256 80a2e7f3e145299f8ec5ad09f249375db530c2870c8839d119a77dc278a31a74

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81372c5d9f622a3d8fbccdd7be3938ce192d56bafdaed712f1426bfdcc114e00
MD5 d7db995409e9587216289ee0b51417f3
BLAKE2b-256 b269e7318c62802556d8fa40dcc3b5766b791fc4a83a1854f42291bf2f751644

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1dd7eed0146dfb2f9a7fbd40801f07f04de285bb7ea20a36a0adec02dfdad0b
MD5 8913130d9f520bbbed6df6e56b7a6e8a
BLAKE2b-256 c1be18f80a8d628b964076017fae4c80f4f4dccc524be76586807ff5bae3d51c

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ba89bffb23b4ad088fc09f6bf450383a27f43bad41b9f08e74b9c9bffafe7a0
MD5 9da662bcd99bbd8a38a4d14e282a2c4a
BLAKE2b-256 70830ece3a66b09869be941ae2c810bfd528d3676f419ec18c3d5e9236f34a2f

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2ff01ac7d86ca7cd482e227afacafacfd164d0ccc6f245273773a2af4673e56c
MD5 843c4538869d23acf611d27a79d7e1c8
BLAKE2b-256 e5c0123c88abb5f62231157715e7d9a721a3215615b53a5c8a197cf952609392

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 158.9 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 7aed8cfa4a0ff22506b276827e51788a624b869cbba6cb472c9c95b1dfd94ca1
MD5 3fafe01461247e5dd80be545334ac216
BLAKE2b-256 344bc6d1deba8f19eccfd0ad972c23265b727a4d4e5d1a9823fb798a214158ff

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 171.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 78e09f6007300a9f1b72de8fe6ef9bfacd40d87a25605e9c374eea59d6eeb1bb
MD5 7799d3167a75a94735c442cbe3e7ea34
BLAKE2b-256 4f0d335ebd7fe786611ed3200d45bd3b9bb33aadd877264e2c267ee4e5352ed3

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 166.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b0dc7a5a60f5b9d53cd7ec031f9bf79a6fccd4b8d77be6be7bb744fa46295234
MD5 c51d9c73bc6bbce28b2349525f650b66
BLAKE2b-256 a833c55441819f0a0d9838909eaf0a1045914b55d557142b9d259b8bdc99ecd0

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc8f3a287b7169a14a4a35aa764619e53ff3b923a187c39357d902f60dc96782
MD5 f35e331198832e8db73d48852521abdd
BLAKE2b-256 7ad889fd6c0981b95b06fd0de23bed2097e93d80dd12de4bacec6f0a3b90e15d

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 99e168f9720a9995285a8d5607b8cb441300e6a9183b97cbcbdce77438bab519
MD5 7ca2f5914e6a23d7180ca0821fd4d2a4
BLAKE2b-256 8c42e44b4f26b98ecaee1e2b6dd1bb52505dcea743d4b9f6c8cf9f03f08128b1

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 86d29709c09a05d7aa4ecb702d4dadcc41997cc8ab41d1fdf4def213e481dca3
MD5 1fe14eafebdfac9fb85c8ffe72427c25
BLAKE2b-256 a97f5a5a01ef33436bfa54f0d3c8f6164e2ad07b9a52e1efef252756929c9061

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bed7704b05438512ba60e56f361188553dcb333aa32a39f4cdaf7e6f00ff014b
MD5 e245e63e9cbd7cad7ec9fd524ae2add8
BLAKE2b-256 d6aac21e32d8d0537474415c2a8f74f6dfa33973d20895fa459077f380168fa2

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0eb7a565c209760a0ded6ef28c9054c870fe51ecb079f9eb7c833e51b142789
MD5 a5be2244e6875da020b387f871536184
BLAKE2b-256 a855e2492d32adc4a451fe9dae662a101972abbc61bb329c071f0e5d1104d3cd

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f5b16e65e5523a17a42e8a752f9f657b5e8816be983195d1189b446fef3b96e6
MD5 0c0d7836af0f80d5532bfdc28e241e17
BLAKE2b-256 acf493a91a6959cc3be01f5407903f41f5332c02fb88bd039e5e07430f1e1a7f

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 159.1 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 ccc55a2463fb56058729f8900c3d8a057e323f4c92f6de4d0982b2ea2f98d0ea
MD5 9fe0e0b37c3157e5913cec89c9b139f8
BLAKE2b-256 6785485af14dcdd0588abd2edc9cac9e259cc1c68a99322f2f99f73cc0f331d4

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 172.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5de2449b1a44e9696a3ad80050858a1d7bd11b12915979f140da715ecae2d38a
MD5 e30a000a95f02fbd7ac99d29a28c9aab
BLAKE2b-256 53fc7fec602f24e6e5167f13579e4272447b982ab28b5be56f06aabf10dcef2a

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 166.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a3a740cbd1a4ebdb7b162dfea7d6c3c1ab2e696d7c704537e9cb5d57e7fcc2c8
MD5 fe3f9ae0b1e890f4a861677864e8938d
BLAKE2b-256 bffab88c1f44e15c69e8b6fc9f3c0397201e581e56c48c43088ff074335daca6

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95a05b19a6c5c2c14c81eced4b917d29359cc79a5e54dacd4d4806f89163b22e
MD5 25b741288b4d221786fa744a03385589
BLAKE2b-256 8aed90f5999a15756afa4c4de4c8d8b832ceb696bb7c3f804d978bdf29fb17c7

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92758bdcf0afc12e3d4bb3382412e47a857863643b0ef289239c57c4ff342641
MD5 e27eeacfda0dd5d6bdc8cba0f545d79e
BLAKE2b-256 78daf4603a84952d71c8d35cc503ea06043e6041ed1916ba2e271b1142508b3b

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 218f80e64bcc8085772a4ac18ab0445e18ac0c32652d80390efc1cf04ec0cbe8
MD5 3f00c103ef9453367494e88fce2bea8a
BLAKE2b-256 3bbcda5ac29b174ba359fff30b38bdb39e0c0b9339a86e5255b5a68a39c33426

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e4cef25b973898ddb660427e7b6eef374cdb5fb2a00396b160a4116182cce35
MD5 806cccc454cf663c64460dcc6b30713c
BLAKE2b-256 327fa1246dfb1a4432f180617157e9e7672e95080f6450988ddc28341988ecef

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20f7b761c40b91d3484849f39753437598bc4135958da384222dbaad57094d82
MD5 386cbbf63a9a77f9af2a8e78dae607a2
BLAKE2b-256 cd9b3de16321329d22e31bd16f977b2d771c7d19e188c86667ac987d58b20ce5

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c332ed9ce3a39eefc5abfeb3a7e102b502eebb8cf11d554d02d6598b1614087e
MD5 0628ac730a747c899630a3407e0c7891
BLAKE2b-256 876235e9b401f04f9c12c378d8a5fefb9c57a766c4f7fba8a0a84ff137915057

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 171.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 379c58ff83ebd6d99f47cb78818dc6173ea1fea161d46e66a549b8cac46bb461
MD5 78e364a2dd00ea2fe2ae9fe69bb3d84c
BLAKE2b-256 3066d2dcc9c8f9b8199000f837161467843b33f2b896eb662bbc65d039c5567a

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: pylmcf-0.9.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 165.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for pylmcf-0.9.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a622f45b41532a62bcad000e1aa2dca2c81728122b132a9bce88790ba02d950f
MD5 db1911bfb7489e80143ca7d5fa628c6f
BLAKE2b-256 b1e91dd97b7b338e0662b8eb53b0d7ea2bb9367776aab705bab13868794f98a7

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7353112b778d5079d09757359e873068e7f88d339a72a0b83535179badfe36a8
MD5 feafff71942e7ed758e531283255ba3f
BLAKE2b-256 ba0d22bd559c8b9c103eaff8749de6b2b5590de38249c8a8eebb0cc786cafc9e

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8e8e68aa21d36c3d16546260642254f7c8a947af56bc5642eb610578fd229d4
MD5 54c97ec7d4b7a752f7362972004cbd79
BLAKE2b-256 bfc1e9045bfbb71242f7461cf7acc0e4a49008674fa6dba1f10f2867906677ae

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9e1d2338353b87c66f32996602adc678bb0f0511aee18290731236d6ba6d1de
MD5 33f26118b32baac1c682b15c9891f80f
BLAKE2b-256 6e540f4fbd51fb33187560d81b006df1800dffeb7e1235759a065448b809f1a0

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d285ebbd49cd44d11970b36bdeaf352565e10f0ade2d9986357827b31a5fadb
MD5 7e3dbb7b7587137f18f35ec03b149d80
BLAKE2b-256 2899f0e2aa9ead0de6ab2be5e6c775f8dfd06a64ccaab4017b989beee8ab8cb2

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 810adb99b46bd8076ae7e7bc21899bcefac72cf7b3eb2b716427ac343eaa595a
MD5 bab3dba46ac594144f2d91d1a8fa301a
BLAKE2b-256 7f347d92694f99ab548325f0f32f02c890ba67ca29de083944c6f5364afc3035

See more details on using hashes here.

File details

Details for the file pylmcf-0.9.2-cp38-cp38-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylmcf-0.9.2-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 66aa67b87a64e4903ecba4c4f173a6facbdc8750b40e334f8c9d735665b5680e
MD5 244aad6eb9b672714e1e0a15e6c05e18
BLAKE2b-256 97f2b9f470ba8f88ced0943dc646873c51b3e68c9e02d5621e4b2e9b0d50328f

See more details on using hashes here.

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