Skip to main content

Natural Language Processing library for Python from Rust.

Project description

LeNLP

Natural Language Processing toolbox for Python with Rust

license

LeNLP is a toolkit dedicated to natural language processing (NLP). It provides optimized and parallelized functions in Rust for use in Python, offering high performance and ease of integration.

Installation

We can install LeNLP using:

pip install lenlp

Sections

Quick Start

Sparse Module

The sparse module offers a variety of vectorizers and transformers for text data. These sparse matrices are scipy.sparse.csr_matrix objects, optimized for memory usage and speed. They can be used as drop-in replacements for scikit-learn vectorizers.

CountVectorizer

The CountVectorizer converts a list of texts into a sparse matrix of token counts. This is a Rust implementation of the CountVectorizer from scikit-learn.

from lenlp import sparse

vectorizer = sparse.CountVectorizer(
    ngram_range=(3, 5), # range of n-grams
    analyzer="char_wb", # word, char, char_wb
    normalize=True, # lowercase and strip accents
    stop_words=["based"], # list of stop words
)

You can fit the vectorizer and transform a list of texts into a sparse matrix of token counts:

X = [
    "Hello World", 
    "Rust based vectorizer"
]

matrix = vectorizer.fit_transform(X)

Or use separate calls:

vectorizer.fit(X)
matrix = vectorizer.transform(X)

Benchmark:

LeNLP CountVectorizer versus Sklearn CountVectorizer fit_transform with char analyzer.

TfidfVectorizer

The TfidfVectorizer converts a list of texts into a sparse matrix of tf-idf weights, implemented in Rust.

from lenlp import sparse

vectorizer = sparse.TfidfVectorizer(
    ngram_range=(3, 5), # Range of n-grams
    analyzer="char_wb", # Options: word, char, char_wb
    normalize=True, # Lowercase and strip accents
    stop_words=["based"] # List of stop words
)

Fit the vectorizer and transform texts:

X = [
    "Hello World", 
    "Rust based vectorizer"
]

matrix = vectorizer.fit_transform(X)

Or use separate calls:

vectorizer.fit(X)
matrix = vectorizer.transform(X)

Benchmark:

LeNLP TfidfVectorizer versus Sklearn TfidfVectorizer fit_transform with char analyzer.

BM25Vectorizer

The BM25Vectorizer converts texts into a sparse matrix of BM25 weights, which are more accurate than tf-idf and count weights.

from lenlp import sparse

vectorizer = sparse.BM25Vectorizer(
    ngram_range=(3, 5), # Range of n-grams
    analyzer="char_wb", # Options: word, char, char_wb
    normalize=True, # Lowercase and strip accents
    stop_words=["based"] # List of stop words
)

Fit the vectorizer and transform texts:

X = [
    "Hello World", 
    "Rust based vectorizer"
]

matrix = vectorizer.fit_transform(X)

Or use separate calls:

vectorizer.fit(X)
matrix = vectorizer.transform(X)

Benchmark:

LeNLP BM25Vectorizer versus LeNLP TfidfVectorizer fit_transform with char analyzer. BM25Vectorizer counterpart is not available in Sklearn.

FlashText

The flashtext module allows for efficient keyword extraction from texts. It implements the FlashText algorithm as described in the paper Replace or Retrieve Keywords In Documents At Scale.

from lenlp import flash

flash_text = flash.FlashText(
    normalize=True # remove accents and lowercase
) 

# Add keywords we want to retrieve:
flash_text.add(["paris", "bordeaux", "toulouse"])

Extract keywords and their positions from sentences:

sentences = [
    "Toulouse is a city in France, it's in the south compared to bordeaux, and bordeaux",
    "Paris is the capital of France, it's in the north compared to bordeaux, and toulouse",
]

flash_text.extract(sentences)

Output:

[[('toulouse', 0, 8), ('bordeaux', 60, 68), ('bordeaux', 74, 82)],
 [('paris', 0, 5), ('bordeaux', 62, 70), ('toulouse', 76, 84)]]

The FlashText algorithm is highly efficient, significantly faster than regular expressions for keyword extraction. LeNLP's implementation normalizes input documents by removing accents and converting to lowercase to enhance keyword extraction.

Benchmark:

LeNLP FlashText is benchmarked versus the official implementation of FlashText.

Extras

Counter

The counter module allows to convert a list of texts into a dictionary of token counts.

from lenlp import counter

sentences = [
    "Toulouse is a city in France, it's in the south compared to bordeaux, and bordeaux",
    "Paris is the capital of France, it's in the north compared to bordeaux, and toulouse",
]

counter.count(
    sentences,
    ngram_range=(1, 1), # Range of n-grams
    analyzer="word", # Options: word, char, char_wb
    normalize=True, # Lowercase and strip accents
    stop_words=["its", "in", "is", "of", "the", "and", "to", "a"] # List of stop words
)

Output:

[{'compared': 1,
  'south': 1,
  'city': 1,
  'toulouse': 1,
  'bordeaux': 2,
  'france': 1},
 {'toulouse': 1,
  'france': 1,
  'capital': 1,
  'paris': 1,
  'north': 1,
  'compared': 1,
  'bordeaux': 1}]

Normalizer

The normalizer module allows to normalize a list of texts by removing accents and converting to lowercase.

from lenlp import normalizer

sentences = [
    "Toulouse is a city in France, it's in the south compared to bordeaux, and bordeaux",
    "Paris is the capital of France, it's in the north compared to bordeaux, and toulouse",
]

normalizer.normalize(sentences)

Output:

[
	'toulouse is a city in france its in the south compared to bordeaux and bordeaux',
 	'paris is the capital of france its in the north compared to bordeaux and toulouse',
]

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

lenlp-1.2.0.tar.gz (915.3 kB view details)

Uploaded Source

Built Distributions

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

lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (774.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (904.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (841.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (680.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (669.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (793.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (774.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (905.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (841.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (680.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (669.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (793.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

lenlp-1.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (899.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

lenlp-1.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (842.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

lenlp-1.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (669.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

lenlp-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (793.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

lenlp-1.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (895.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

lenlp-1.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (839.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

lenlp-1.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (666.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

lenlp-1.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (790.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

lenlp-1.2.0-cp313-cp313-win_amd64.whl (402.2 kB view details)

Uploaded CPython 3.13Windows x86-64

lenlp-1.2.0-cp313-cp313-win32.whl (383.0 kB view details)

Uploaded CPython 3.13Windows x86

lenlp-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (770.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lenlp-1.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (896.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

lenlp-1.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (841.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

lenlp-1.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (678.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

lenlp-1.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (667.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

lenlp-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (792.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lenlp-1.2.0-cp313-cp313-macosx_11_0_arm64.whl (517.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lenlp-1.2.0-cp313-cp313-macosx_10_12_x86_64.whl (521.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lenlp-1.2.0-cp312-cp312-win_amd64.whl (402.9 kB view details)

Uploaded CPython 3.12Windows x86-64

lenlp-1.2.0-cp312-cp312-win32.whl (383.4 kB view details)

Uploaded CPython 3.12Windows x86

lenlp-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (771.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lenlp-1.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (896.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

lenlp-1.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (842.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

lenlp-1.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (678.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

lenlp-1.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (668.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

lenlp-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (792.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lenlp-1.2.0-cp312-cp312-macosx_11_0_arm64.whl (518.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lenlp-1.2.0-cp312-cp312-macosx_10_12_x86_64.whl (522.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lenlp-1.2.0-cp311-cp311-win_amd64.whl (402.6 kB view details)

Uploaded CPython 3.11Windows x86-64

lenlp-1.2.0-cp311-cp311-win32.whl (382.7 kB view details)

Uploaded CPython 3.11Windows x86

lenlp-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (773.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lenlp-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (897.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

lenlp-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (842.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

lenlp-1.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (679.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

lenlp-1.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (668.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

lenlp-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (793.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lenlp-1.2.0-cp311-cp311-macosx_11_0_arm64.whl (524.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lenlp-1.2.0-cp311-cp311-macosx_10_12_x86_64.whl (530.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

lenlp-1.2.0-cp310-cp310-win_amd64.whl (402.6 kB view details)

Uploaded CPython 3.10Windows x86-64

lenlp-1.2.0-cp310-cp310-win32.whl (382.8 kB view details)

Uploaded CPython 3.10Windows x86

lenlp-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (773.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lenlp-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (897.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

lenlp-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (841.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

lenlp-1.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (679.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

lenlp-1.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (668.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

lenlp-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (793.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lenlp-1.2.0-cp310-cp310-macosx_11_0_arm64.whl (523.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lenlp-1.2.0-cp310-cp310-macosx_10_12_x86_64.whl (530.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

lenlp-1.2.0-cp39-cp39-win_amd64.whl (403.4 kB view details)

Uploaded CPython 3.9Windows x86-64

lenlp-1.2.0-cp39-cp39-win32.whl (383.2 kB view details)

Uploaded CPython 3.9Windows x86

lenlp-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (774.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

lenlp-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (898.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

lenlp-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (842.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

lenlp-1.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (681.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

lenlp-1.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (669.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

lenlp-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (795.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

lenlp-1.2.0-cp39-cp39-macosx_11_0_arm64.whl (524.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

lenlp-1.2.0-cp39-cp39-macosx_10_12_x86_64.whl (531.4 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

lenlp-1.2.0-cp38-cp38-win_amd64.whl (403.0 kB view details)

Uploaded CPython 3.8Windows x86-64

lenlp-1.2.0-cp38-cp38-win32.whl (382.5 kB view details)

Uploaded CPython 3.8Windows x86

lenlp-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (774.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

lenlp-1.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (898.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

lenlp-1.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (842.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

lenlp-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (680.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

lenlp-1.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (669.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

lenlp-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (795.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

lenlp-1.2.0-cp38-cp38-macosx_11_0_arm64.whl (524.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

lenlp-1.2.0-cp38-cp38-macosx_10_12_x86_64.whl (530.9 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file lenlp-1.2.0.tar.gz.

File metadata

  • Download URL: lenlp-1.2.0.tar.gz
  • Upload date:
  • Size: 915.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for lenlp-1.2.0.tar.gz
Algorithm Hash digest
SHA256 25c0f876bf4bcbc5c71a8f6b0297d1eb6781c6df7ef1e079958a8d238f42fb4a
MD5 3ccd25fe7b953ca55001861b6cea0445
BLAKE2b-256 e240a632b41333e55bfb5185ba05b5ba631518b0121ef50e5799522ed572d400

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 740ba55c9f434ec9e8b7344c3892d9d6cb862ce2219996eef14b60a7befde342
MD5 12b0a28c9e634bcf472ea87141c582f3
BLAKE2b-256 186c92bf8156c9cdcb741fff5fe4133761261f9f7390803f06f9d4311eb52824

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b80dcb44d04ab1486ead4842473aaf263246953712517bb92ed19f54533722c9
MD5 f3248bef15f18e57b9fbbfc169683377
BLAKE2b-256 05b520708e6eadd09542be3e29fb748cc8c694c3cab0306c2e4dfba27145e2db

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a79e1961eea57d391f493f97d8f83c35fb1248ba71461ca6b1b6abe8d18ee59b
MD5 63d5125a40302a43b834ddd40c6dfbe5
BLAKE2b-256 a2f978b52bfed0b1934f25c580c04077f41b1b9329a72cc46a21a149153358d6

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0aa3777512038cc983c26100b9ebb59d388017d5ca57b35b1df35c471c27954
MD5 1ad09e36f6d59933a88fb17171022206
BLAKE2b-256 dcabef37e1bd8bcec4f8985d63ce2ad8063380ee559b165dc49a62a69e431fdf

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b8f476564312bf6a324bb920993f56aae4e18e8c49a1dbe1bf91cfbe3558340a
MD5 c29529c82a156b0b7b24b3d5ec2b9e60
BLAKE2b-256 d44c23bb5bb1c845faa2651c4742f1e795257f6ca1b4e360376576d196eb97e5

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52ea5a38070530526b166bc93511c638dd4d4d9b6ce72a9ce0d65988b3c2d2fd
MD5 8031c119fb513f6815b06a01673699a6
BLAKE2b-256 d3f73883cc53e3e3c8880a4c14dbf92567904e26a48af863880749884b175a66

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03bb5e547fa7dd0e6641c9d90685a8add28510de454e4ec3e84446bf4ebe93cc
MD5 ee3204982769673467967975b04b3fff
BLAKE2b-256 f177d4b10d0ad32d91b10091a9b4b2c78fc3b2dbb674360ad3a345a3d18be7ea

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 00f9d485845f37c2d27309e265c65754b5f8e3fbcccee143f2897aebffe2fdf2
MD5 8a81102a00f019e2084952fe8a0fb05a
BLAKE2b-256 0dfb08d04ef5ffec882febbb133d237b3cd27fed958240b820f51717e061e662

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 126543a9047facd17176370b395715b0e87817439d28ae5ecb0f389277a22fcb
MD5 c126b5807503f2e9e91ddab15581508d
BLAKE2b-256 f7688e15f4bf5ed9372a03e3e4ddc14c6046449a9e12c29759b67bb075344814

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 284add2ce5c910503662b052f4ef166ac31530c786fcc2024d4e1376fa0274f0
MD5 b7949af2dfd14af122ee18b57ea66618
BLAKE2b-256 bb23a59d19f53bcffe25429267e0a2572e211fc6c0eefb5eb0048bcb3527f6a1

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 19feafbd8c9fff3b01c0fffa0f19c6791a7db41f3ee1077525972b6a958992f9
MD5 92a8d4b98b34062564b3ab6b7ac95305
BLAKE2b-256 094afde8fae61120a94331aa5690b7b3262c6fe8e76a055c0dcf24d12ba681a7

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a04917dcd618205e93f3cd5196a69b7c814f05a3eebc1dca4a3c3c1d5cd75089
MD5 9bc011d8b7c42862deb7e0be551e542b
BLAKE2b-256 d200cc4f98ff9bba8a21d9fc8048dacf7a2a80565378434bdb8b563ac297b7b0

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f83feb8f9cf9cc69afd81df4314fc6b12bb88ab73e6028402aa6a6606448243e
MD5 b338a41f0ece7cbc3c7499ab3cd98a36
BLAKE2b-256 b8ccc7d06099ac34d83c75f8179bad5ee845a9d47839067165d54e768d13b94e

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81a533cad227d49c0198dff6420f0f290303443484fd2f73a833404c99194a02
MD5 4fccd235cb94ba329558a0af3f196a40
BLAKE2b-256 2248f1bb826b970d11c041c348a5f109f707bef9367672ef5a7442f33f9dc328

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f938c6c1f170499ae9ece5bb4a960b9e3dbbfe9f62f80d05926a5d721e83a3cb
MD5 99c555be1de0836fa94b135a588e3fb3
BLAKE2b-256 cd49af0a9ca481457c7e6293a8a9ef776163c6b63a34472285f72a06a7530813

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e297725d41652d0b3463cbef4a065455938ba4096014b740a3b7b261cc17ec6
MD5 14c23aa743448110d230fe0b14784ae3
BLAKE2b-256 68ed1065b67ce592e6062e87dd661742456629ffa4fe9c2a307728b41ce5c495

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15631748340cedff76cf6411958bcdac1eb67871d3893819323b449e941a169e
MD5 4650ca5974e30ca120cc9e9c0704b3f2
BLAKE2b-256 39c79f89679093e9700fcc8af84446f790d346173d40f454bfff9c8ac45dff4c

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e793932da32609eeeceacee056f62e8cf12fc7331a6d886bd9768c39f2afa35
MD5 a1d591c847d337513afc7a0383cd8bec
BLAKE2b-256 23766fc670a5e5cd36b813a3def5f95fdeb5b75265f1e7b6e72e4d6964851c2b

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e42f8768b7ff47faf78e6a9cc5bcefdc9c69b3682e7c3c30213a81951813c01
MD5 8cff90d44be27f0206e3347a6bc9f547
BLAKE2b-256 0b9064c2a919fa04023e397c00a7c9bd72809aec5f71f5e593a70d360323b03d

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45d73256fb41a35b852c528bd31a6e1fe24428ed4dc9a8c75cc59df17b03b6f3
MD5 e4bec0935a1b99013e6615a83aac6a26
BLAKE2b-256 eef8c5b2c2298fa72c2d74d17d135f8b64825ab868881c72e148cce084a959d5

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: lenlp-1.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 402.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for lenlp-1.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 02464c089e79160f3e44735d3dfd3828ad431cbae06c8dcc65df0857fa586528
MD5 1eac5c5fb1e395d8bcb8c87f248c6cc9
BLAKE2b-256 b7ae0cb7596fc64d06899efdcfa52fb439cd6b8d1687ad2f3070b2058522484c

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: lenlp-1.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 383.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for lenlp-1.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c6ae7309af933def927b7c57a91a2be2bd0191f2fdc18d3409718111fb414aa9
MD5 9b6dce4d4f9dadc812d5eb3ffcc2c16d
BLAKE2b-256 75e553eb428f329076f0f01604bf5fcb0b387f512c5647a977caa7afbd31f331

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1005141b2421e946389c8e50a5c8793a20dd3836593ac061f74464271732ce4e
MD5 fa9d56c9d3f0041f7132e09043ed5fa9
BLAKE2b-256 eb29dddbce825436e68f0689c465324ed7925ebba8d859acf631b2ea71f064cb

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ffebdbd1881e3c48521435a6623dfcfd158fd47f53efad7f803f8c0cf2ae49b
MD5 ea972ce219e2cb477eb11ee48684aaaf
BLAKE2b-256 e32abbab310eea351a993cd8f7cf471c2502a72d32e013e8b54ddbfa6a99fa61

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 946f632687cd4353015a78f2591ab218679d14a7b2ddc077888389fc6257ecf0
MD5 e999a3e555fbd2aa7279a27a4d3ff7a8
BLAKE2b-256 2d5a1abe8a309beed6a0aee210d97a8c447c280f7174260c753718da30337047

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a6d9b5b822b44195c508a4fdc04ae52384b31ee50e3313f2a4189f09c9c06902
MD5 970e4118f515c7841d0a339445c489b2
BLAKE2b-256 637cbe913f8e83c9ef856f2fc24eda45c83bfd6736790a4dc6bbf512f987f1e1

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e8d6707d8c869838ff127190de8bf0ff81cbb4f1637049dadc4cd317ede1b37d
MD5 19fb0e63d5eff0b772c8d412eff4ef19
BLAKE2b-256 94d6bb1858e91d49c92d6d8346263ad78a009ee3627d6cc98449ebf2965989b2

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb3107e991e13e2561c1ab333f1cd9033005caed0c07b6cd19cc0d599e95c8d0
MD5 8c8fb7f4ec12789ac42a289ad3ef72ad
BLAKE2b-256 0e26c6ddf76547578f20c308c6598851a33915b9167be021dd62b4bd3a03516d

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c5d89ac7c35da58f7f691d30b577ec01c4484a411234fadabffa645b7e51c35
MD5 b5f66ad94d58c18441da2a3efc77ffa8
BLAKE2b-256 a394eb7c77d1df3eff5a6b257b2a2a9ea64e41dd49b5f16c95b213d0bc6386b8

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eeaf509fb7f8941441e60f89c2c7a33796cdbb496c587ea1e5304f885e7da2f5
MD5 b69bce6bf6d7da786030e928867b4c4d
BLAKE2b-256 25112a3388e4c28e29f2d5500488898556dc1f936fc7a7c2b833ccb6ff3cf705

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: lenlp-1.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 402.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for lenlp-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 86455bfbed7159e2cbde50b70b690abd9a7c5a76564054e961bc29c4456c7e83
MD5 ac106187e09ce977f459e65a7dc44d07
BLAKE2b-256 3655cf4e282ec50ab61e6927e6b1afb7c34157b2e9bf51385a2c6fa0c2de8cea

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: lenlp-1.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 383.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for lenlp-1.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 01ef14e2de7e6899028b32fd7d10b1583cf65eb7c01baa293426a689bc7703d5
MD5 15bcbc7153cccb1438ee630baecd45b5
BLAKE2b-256 3f6b79dcf305546d4ec9832d78c146522dc0dd9e4f8b44d027b45af7930dff40

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 612d485352dc4ac62d88aa207c294c3db93ec8eef1b9765cadad6cfa6e8f3ac5
MD5 1f0b5280a9a3174b481bb36db1f63a73
BLAKE2b-256 4cd1877e4944a341d752151d486fe1363f1ba4495144cd44cc2cb172d8950126

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a928b5b257c567038d3802d29951a502bac1c11ddcf38f0c718b9c396665ab10
MD5 09b73ac2555e68a5d5242a5e5e5882df
BLAKE2b-256 47ccbf8ad129027a92e4702495641eac2e27939cb738db9e68da15755b1292a0

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3bdfb342fe7db0918dc3783cdff07b552edc89a41bde543262ce8c94efedaf2c
MD5 d0dd98721e1305e9eedf427cf83994ab
BLAKE2b-256 7f777bda2b40b30254cc35ef377488652fde4db0eff738fc9ddc803ad6f4bc30

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c1665b3b00700cc9728c6ebb8e49bcfc0391b8765f9c70a188b664504e3a82e
MD5 13c1967750d58392a76042d8aea9b621
BLAKE2b-256 413600a21797cac745f6ee090f7ac56115f6ae663e7e8c7b3f16af7fbfa39a59

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 08f1f586c6f4f34b6a5659fe05169daf43d2bdf2c959a1d0cb7c85c96efce980
MD5 0f222b4b70ad53e80bdf785eb2a822d7
BLAKE2b-256 ac61429d636ce052fbded1a76ac70547d7f48d41c4811764d7377799936a0a59

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af426ebc6d247a575b0cd46cf24d6d37a23fcd23f9f2d3dc4494f2311ac5c674
MD5 a3b37684e36e16cd48875291085ff933
BLAKE2b-256 adcadb01668072f4521414ee5aa7ca3ef21ce3fa58fbf23f6f3d959fa6dfad33

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e0b9535ec126d8879429ba134e0edcd03fd46c81217c3e56cc8dff60210fee8
MD5 dec488fa8f4191a63a26dac13d7927f8
BLAKE2b-256 2d21d5a6a66a0dfbc913cec4ac89613c4a843b604e66e5ba666724ed64cd6510

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e50725373b2ff9521ac284daf38167d991efb17c014d7e534fb824498b00975
MD5 22f24d165e8ee35904b48d221c47c705
BLAKE2b-256 08be498d2262d0fd97f18aa9e05a7099114e4c0020600b442574df3a4c158dff

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: lenlp-1.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 402.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for lenlp-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4bf0935af0952f1ba7f222c0a0fe308ec4cedd7e40b8c723bdf594b20b4b8e34
MD5 65c1def7bad90f203e82ad0057cd548a
BLAKE2b-256 7a38b10e595b0398c201c6fdd8612669426688d611ed17bd66f2746d0ddbce37

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: lenlp-1.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 382.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for lenlp-1.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7dec566120b31dbd8a32c8ff7e298283cb368d705d99aee3d96c84ff43019604
MD5 af4fc40192615bd89e53bc9907f10960
BLAKE2b-256 8bd40b8074ffacbb9ba245de7f853eba87169f7a357b6dc9d2775a1cd2c09038

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84f363b6563843dbd78f615c69f5fd30d9206036aee3a56ec9f30a1e382664c3
MD5 81f794693a5cb776f8d11ec8e39a67ae
BLAKE2b-256 da3e557ebeeed1199ef7f722949f14f071f55604ac8e93c27d69fedfb3ae38d7

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e00e9bb764d92e652ac8b59c44d66f91e57b28c585226055865cce5ad37f547d
MD5 6c84ad29e731cfc39e4104a3cc3b52bd
BLAKE2b-256 6b327be5154eac4a41b69a96b10aef32400bdc4017af6a01f27c38787f127005

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e1ad42709e6bf8f68766bf1c3817e7c92502158c769e75396db46b1fa99f1e0b
MD5 284e214e8dbc143eece5e3f555950c86
BLAKE2b-256 9dc55f7ef30e288b25743b1fd7a441842f9e824c58ab46fa07ab3b32d232171e

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c4d10702fb0b7686aca8ccc0699852b50e4270de159ba11c57b273b547e47064
MD5 2091919614934d59ca53bda627b1bf99
BLAKE2b-256 dada9c63862e2a0dee2a4c6461f00d2dcb3719ee011f1b03e396d3c99297fd01

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 db7e866b56c0a36731f9a6a07a47bed3229d193a73b582928a4767ed58bf112f
MD5 95b943e94075b7486b014aeceee16221
BLAKE2b-256 a22895ea9e1d1ec91569d4a2df720b65b2ae8958176a920693b0c8cc7113936e

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd09f689865966325092b82d7bfcda7f0e725828abbb4047d37b5d9f34128db4
MD5 fdfd18cdd3865a54bb44d0fe526108f8
BLAKE2b-256 8325a7c3adb3aee166bce46bcb8e2d279f45695047697cfda00f14f2550c7004

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 541e3dac0d3e9983e4cb3dad05095b6af2c1945eaffe8e1638f94212daa54753
MD5 164b06fcdd8841f52f183728ca4ba29c
BLAKE2b-256 27e3e5755a1210d9d692c9723bd53408ab5849f3f5d2c2188fcf3f7d656184e2

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b69a70b3b0065bca233e52c4b6858bcf06d04b68dc4e070919676b2ac3cb5104
MD5 1f4852870dd60878b17d08e57602b1af
BLAKE2b-256 f725e513f4b359859aca2ec1fef01801d382b4f95b40b5c6c547a7ecfafc63d1

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: lenlp-1.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 402.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for lenlp-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fc683ed78b571e19e76068e2c8706c0a37b922fd226daae30ee8ab54f4159df9
MD5 fc42eb01bfff9f3b816ae1de65c27377
BLAKE2b-256 6ee7905af9a8719439f24ed8dfdf1919dd94f9eb573acf194d2ac574e1448461

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: lenlp-1.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 382.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for lenlp-1.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 00db350918ad054d3eee59a0f65212eac2326d439d879373cb2e599327519514
MD5 d38f608c293766b4efdd267357f7d5ac
BLAKE2b-256 c576704904cc583064becc9350ae5ee14f6c0e72b009136151792be7ec3a8fdc

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1ba16c01f920882af73f95e555a52b10d20d95072af54672b3c13ad1768a1eb
MD5 778d1ecf3e305d177092090fdc012da8
BLAKE2b-256 edbcce63c23600bfed868669b03eaf3ed66132436aa53e1fcd5998ee2249225f

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3e547ddade8c4da6cf753df0ee71ee357e5f7743174ad052b255fb888e2827ae
MD5 bbfda35061156e64d68f4695c576e230
BLAKE2b-256 9bb168300cfe62fc710684f88efd9f23c1781e5a0a6fe224d3ffa2bbd5f31ec2

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 95d8b9ea0a72d4062466979e7685c3043ff1aa1bbbf73a78c337ba5d622ec61e
MD5 7077dae664dd3b6b098be61edb9ceb88
BLAKE2b-256 a05579b4b3b4bc39f509773aeb437625152bab73326f7062a64a582bcda1d445

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a3b40da64d5198fece4b831e0d07ab5604f2b12e120510c435fd532583312a2
MD5 e3d1aa350b38e85121f8afb0752d72a5
BLAKE2b-256 cc886305f4679f023c54da203b0ed67ac555b2ee9e3ae01f7d869be59509fdd9

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af444827171e390d0549cfcad31ecb361b034b61c81be0a7fe0005218e8c6904
MD5 c57edc3c7bf505669db4fe48702ed6ab
BLAKE2b-256 7bb752b6a5ee708ff8125b60719892b1d6bd1378f57ca1f2060c560ab4e0c94c

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67780eafeb94ea89b22ce6da2acc1c23ae36ff1e9973f3910f3c026657ce9621
MD5 9793e26740f953962bfb85de5764e189
BLAKE2b-256 f3b55b6b8ed4215f4f962edead084f939ab67fc222c74d46fe691ac9e3390f0e

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 827dda96acd91049d6180cf2ddae14525973903e205abab4d33a0ba5149189bc
MD5 adeb86cbed1e141e0702f35e2caac1f2
BLAKE2b-256 c38f7de4d68a3e3ac521ab1cb507df4f81f08baf6974b7d1f7a552a08be2bd65

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e9bf67603f8647ffd7d80abcec4d80806bef907e94b0ceffcc35ee2e14a8f1c
MD5 304a60ee068998c10150a1f53ce47bd4
BLAKE2b-256 e6ff82e942c79f3ec89c308d29704e1ca2561fc82ae747bd64e7322676da1fb6

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: lenlp-1.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 403.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for lenlp-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c566b8653c0db6d395fb9adf11da78e743b03e7f6d3e7d266e74d580e7e1654d
MD5 2ac8aeccd33735dff1acb7368d20123d
BLAKE2b-256 be1a3703135e5674e82324a5dc0fa885fc6e2891593765a0583c713e4c3262c9

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: lenlp-1.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 383.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for lenlp-1.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f2d8de18d9d3a1e1a50264fa851c6c356d6c94a0a97d434e85ce663afc82e08a
MD5 f9def9a2f42d73ffb460564b66151286
BLAKE2b-256 f62ce7b69960b9909ae947f017a173f7757c3fa8a50dbf9f0bfa926dc2ba5491

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d6458b1afb80fb347780f26481a415c5f8d34dd4c2f840dde6961d964bff9f4
MD5 806191a125e01c31e22425f5b8f27765
BLAKE2b-256 66f7aaf93ea52ebb0a0060aa3ee5c3b77e7561670583d5971c75786fb78eb38b

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 054fe599da3f155232213e2d7c82eaa6e9ab88d16b2d3b2e18deb053589671ad
MD5 dcdab76f400f7387e8b0a7a4d2f2caa5
BLAKE2b-256 3545d77cf93fc8f6d41b1beead1daf1fd75c994b8b9300fd14c0e6a04f4e2b82

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 09295b4e8c2460a9292374eb3a45daf3b7e46a715572547f9273cb150b21f914
MD5 2adb2adcf8d1029366e21ca6803c9a06
BLAKE2b-256 e8f346f4902ffa9f1bd72cca14e38f03bfa6b57d9ff72c415b87d6066d8457d1

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ad21d9cc23917b6b98304852409708151c26f11c43f9f692ae79b8c8f304a91
MD5 f72a70ba80460b7c91251df6beeb5731
BLAKE2b-256 af6bd5c506c777256dff550ed157d83f4665aeeed123336c7ce22efcaea82248

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 256b85a40b695b99c59440f6eb5c88b92a290438ece9e6a63a57efe82aa460fd
MD5 3979b4fb5dcc1a0736cbe7b2b629095d
BLAKE2b-256 3fcc886e52abb8ada7a9e75e7fccc64755721e2ea4436977951d7ac309e08053

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73ea6809458a1844f51614bc294def4782bb54a1e4ddc4f98479a0ca8896a6e6
MD5 9d8eabd1b81157f55cc29f24d814300d
BLAKE2b-256 5b9611618811fd31c5aa407e4bb178de7ff3b7e5fea99354812e7bde009b4560

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d10afc245605c1a3918e27067ce571e80b867bad4c310d35d61b76bd0cb9e7b
MD5 7a67c148b29852ec3bc1cd26dd06b748
BLAKE2b-256 69f835f7186d9498ad32d6e1b8deae968a20015af919df2cf55669c59e5456d6

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f5ed64d4c186a776b4435c4dad2b6a59b620b7565e9f786adf8b4f9f0bd79e5
MD5 3068b9e61ed2f2d091e1cd9fc5275bb6
BLAKE2b-256 8db1984af62a4f1c8fd2cec5993f121d06abae5c59ef6089e22f0e413375549d

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: lenlp-1.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 403.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for lenlp-1.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c6ec0c9e71d1dfa5069f4fb63df487e5a65ea2309776aa9de4e528498bec6690
MD5 72aa2e0e3afff544ea8515377d318af4
BLAKE2b-256 aaca5b55972bd56dd0ea30d2a4688579fc80522bdc5d7dc7c5ed43ad92b9c12f

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: lenlp-1.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 382.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for lenlp-1.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a7c1896350fc1bdb8845395862f9f8bdd4274c53f6de36fcbe3f72c6d06ebceb
MD5 f544aca6c68bb3b9727518c3c8a1f5cd
BLAKE2b-256 e424612b75673c9dbbde0471eb81d37fdbff7934c7ffc32f8f6df6ba0ae635ad

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3139751119519c1cd1127bbbf0d3e0dca932aa64797b56c4a7a3fa12a3a36751
MD5 68903f664f9a249c1b8e0dfde0b6e44f
BLAKE2b-256 4efbf66470292405b63f757191a57db6ce5e91b53eb9dbb44cc9b74e68b2ec81

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa16f366bbcdee77ba9a791e2e5cd61cff5f9befb661b53284a25c6a565a43ef
MD5 f4b8967e3fb1f02a74debf1278489bd1
BLAKE2b-256 7c2fcc26c4a7233fafbc782cabae13e7cb1268be601eecb533391d55943535d6

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b530bcb22fb2e1e27e0e31d8108f261cb86af5feeb34d960f04e3a24babbdcb
MD5 2e9d82b77ca24f71ac232742393c60fc
BLAKE2b-256 fdb20496c7e944f6e74dfb0e8d5c91685385f9d10207af32f1c8955f9f7456c9

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 014e6c3fb099b87ce14e8bd3ab0135ac6452196a1c5534906be07a3f8761fb2f
MD5 759707b9f125b30cb349e0556bc01da0
BLAKE2b-256 29fdf12f011f0d24c802139043d27013ad241d539c8a19104952d04df2f669ad

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ca5ca1eb7e0804c3720a43547256045dae5e2d2c9188cb0157db0b9a1eb3503f
MD5 55f867269b6f9245ff4fa17c08969ff8
BLAKE2b-256 01338fc9a8ea716d4f22693b0bddbf18048916a2280c36253faf252efcb93569

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e06b98916fa07a6e4a4e8ac7d32a58cf48b81b01ce102ee7ef01795e05aba53
MD5 ddefdd3079546c38b9ab5924f9641df6
BLAKE2b-256 a9000b70e8091eb13766a54bbf4784ba81c54c74d015b71350693794274a4669

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b0949fe6563b60df2dcb5ee0f687d490df8afbcae26a93eb89879c5adc0cd11
MD5 2ebb64d02a33db6c343e4f46dfeb3e7f
BLAKE2b-256 156a6bab51ac1ba634c9ace60aaecd0818dc63e118ac62a500ab04dceb261720

See more details on using hashes here.

File details

Details for the file lenlp-1.2.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lenlp-1.2.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f6d7c5def3d5f9e6f76e048624042a8f43fc7cf83050e69418e1cb34dbbc6ad4
MD5 b90dfacb8dd333edfeea429291d44fc1
BLAKE2b-256 bf4c464c96b7ecbaf749239689465ef026787b8fe49886c36faac78112550b72

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