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

Uploaded Source

Built Distributions

lenlp-1.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

lenlp-1.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

lenlp-1.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

lenlp-1.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

lenlp-1.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

lenlp-1.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

lenlp-1.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

lenlp-1.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

lenlp-1.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

lenlp-1.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

lenlp-1.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

lenlp-1.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

lenlp-1.1.1-cp312-none-win_amd64.whl (391.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

lenlp-1.1.1-cp312-none-win32.whl (377.9 kB view details)

Uploaded CPython 3.12 Windows x86

lenlp-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

lenlp-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

lenlp-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

lenlp-1.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

lenlp-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

lenlp-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

lenlp-1.1.1-cp312-cp312-macosx_11_0_arm64.whl (508.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

lenlp-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl (509.3 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

lenlp-1.1.1-cp311-none-win_amd64.whl (391.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

lenlp-1.1.1-cp311-none-win32.whl (378.0 kB view details)

Uploaded CPython 3.11 Windows x86

lenlp-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

lenlp-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

lenlp-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

lenlp-1.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

lenlp-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

lenlp-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

lenlp-1.1.1-cp311-cp311-macosx_11_0_arm64.whl (510.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

lenlp-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl (510.8 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

lenlp-1.1.1-cp310-none-win_amd64.whl (392.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

lenlp-1.1.1-cp310-none-win32.whl (378.2 kB view details)

Uploaded CPython 3.10 Windows x86

lenlp-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

lenlp-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

lenlp-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

lenlp-1.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

lenlp-1.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

lenlp-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

lenlp-1.1.1-cp310-cp310-macosx_11_0_arm64.whl (509.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

lenlp-1.1.1-cp310-cp310-macosx_10_12_x86_64.whl (510.9 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

lenlp-1.1.1-cp39-none-win_amd64.whl (392.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

lenlp-1.1.1-cp39-none-win32.whl (378.4 kB view details)

Uploaded CPython 3.9 Windows x86

lenlp-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

lenlp-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

lenlp-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

lenlp-1.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

lenlp-1.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

lenlp-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

lenlp-1.1.1-cp39-cp39-macosx_11_0_arm64.whl (510.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

lenlp-1.1.1-cp39-cp39-macosx_10_12_x86_64.whl (511.4 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

lenlp-1.1.1-cp38-none-win_amd64.whl (392.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

lenlp-1.1.1-cp38-none-win32.whl (378.5 kB view details)

Uploaded CPython 3.8 Windows x86

lenlp-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

lenlp-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

lenlp-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

lenlp-1.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

lenlp-1.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

lenlp-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

lenlp-1.1.1-cp38-cp38-macosx_11_0_arm64.whl (509.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

lenlp-1.1.1-cp38-cp38-macosx_10_12_x86_64.whl (511.3 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for lenlp-1.1.1.tar.gz
Algorithm Hash digest
SHA256 2fb0baff26b18a97efbe014a1f482dff86910daa07e7c87741749731f2e421dc
MD5 044c7612d6cc5284ddaa7d157408d827
BLAKE2b-256 72aff9a5ad712faa3b1150265a86b2b2996e4b86282f9d5bc288235f6072fdcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff023cf547313f6ef80f02b36f3d267617f357934b9681e588390224196d363e
MD5 fa67fc184cfdab5e9d28eb859f470578
BLAKE2b-256 dd07a111e3bbf25d11587b1eb3ac763db27923e38fe190a28bd73abfd742b9d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0402c4da5c2484d5b32b55969ccac6f18cd2d61557f90e89de7a5f367fe719eb
MD5 8cc0bdb42b9ae026fbba777559c2d845
BLAKE2b-256 5afe3723bb8dbafe9e56fc7f2e3750a1861eb31d13e5b1ce0466216cfbc3da5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 22bb7d1a4b72b23f150bc0044ca4ca5f33a93f31e8fdfb7aa3893bd7056c4c11
MD5 8c8b686721a2920096674ba61f7eecc7
BLAKE2b-256 103e61abe8b0570db713df70536fcb3beb70821d7e854fb6ee5b4f8011403a5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 94e1f6ee791fb1a22b73bf476f4b73f45e599614f2bb497194e31cf644f30f6f
MD5 913e77ce7baa14e29f6b8ef8a40176bc
BLAKE2b-256 4462d5e0a575f836b6564e59b8fbff64da54ec6b9717b540977166bb7bed338e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6fd805a852cc081b7199fcfe10c5e90f6ab0d0de42dd4294a5a2927d93c731b1
MD5 76488374d354fe77496873c72f3d4f58
BLAKE2b-256 e8e8b1377c0dbd3ae28de7560ab76978edd20616b60aa6af977c187e1fe628f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d92f3cb21938462287d393690aa8e42ccd5fb31351d7cc871bf63bc69bd2e8b5
MD5 483496faee21cbdacce697e8ef6decc8
BLAKE2b-256 a6631da77b9ae7b4c4ef5a5b97a3a3813f1ac7e7b514a26404cc821f8ae8ec94

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lenlp-1.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e047cdef768b0afe05abb4c5a1299d301cd1f6c6fdd414f62ea348a81239d541
MD5 c64ceeec92c4b5ff5da0c78627afe0c6
BLAKE2b-256 743565c23cbd2f398415cbea1f136c21615b176276e1b35d9daf0f6b4d5a3343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd96862f63e1f0ebf1dd9f094920a1be337e37ccdeff20643c07eb131ac600ca
MD5 d2cba0589a50b02cb73d3cafc577ab8b
BLAKE2b-256 84a648a9f6c117ab4452d85b738f25a755df7cdf241e492b58d839960830f703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6af8d73a756e3e7914971badb9c6f00a9e4a23b3f9785089caed98535bf10136
MD5 b907672630cad7e389cf1a959a5fa385
BLAKE2b-256 0e310dbcc3bb2bacbf3fee1dd5bc2f4ad48ae1c47471a072200b31ff440b72d7

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lenlp-1.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c131120296a8d4999eca52f89743ee88c5f1aad3637c87c557c0e7890cb7bce5
MD5 94a50a88fd71f7cf47de86d2432d3b74
BLAKE2b-256 4e61d4aae4d94f8ebbb94ae9019e100eea118d1748bee3121af0044a81eea29a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f878ca0eed89cecf32367a163ebb0e1b5392b060c9f27c20dc4995586e978eec
MD5 636d88c5b560fad23197cd9036ddbcb1
BLAKE2b-256 be140767b8b66c499b7c5682c8cfbe7bbdcce1abbb8c026a77e78ea7855e941b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 acb4a3b487581dcb81746049074a66d40101ab0f95a62e21379666ae647039ad
MD5 cc9ef4e116c54ef7d4c1172df78b833d
BLAKE2b-256 7ab66ab13db7b6f443709c3d3bb490f423b21cba178e24093093ccbb6547e6c3

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2786e16197934705fb0eb2197df15c2579617047dd14ea4b96b45abcb553a137
MD5 b3d1805aed3cc3a4308085d8e09db861
BLAKE2b-256 095b036089ebe67d5df8c9bcfd2d85a48eb0e5f6e9c3eea405a20fc54a563795

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f6d739331651414c31ae0443e586d9fa3addc4e0f8749a3477b4a95a4f34930d
MD5 d5d541d9870821b20beae86b91c767be
BLAKE2b-256 5583a7b3bc403315892909a5f3fce6dd307e994423bae19e6a6213b69497dc5f

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 31302bfb4c9ef3cc16aff7e25c1a614df55c2c33594adabab7e71f64b10f0db8
MD5 ac57ffacdbf247b9ab63c3b70bb5c19b
BLAKE2b-256 a5d16495c9cf9df53dd8141f5da31faeb3762716cf7792fcabeca27c2a3159ba

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 88ac2506ca4e22fda81bd59f43d6a4f1b5bb938b09f477e23510abf3e976c916
MD5 bfa5857eac9acb0ca5fa1e06acc5c5f8
BLAKE2b-256 eab8df9ebee725ed7c32b4f4d63edefa678c604d8d44f0020ec45cfd741b3557

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20c081237389aaeb6b03845d972841fba3be871624b9f075adfecf9c805a8235
MD5 6d1f1b23589a9b73187354eafeddbbfa
BLAKE2b-256 60fbba89262b1d2de9e4ac6e4f107d24f04ba1e8abff5d64e549946736323bac

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lenlp-1.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9444ba47dd7f1effb0c19414cfeeb3d21e0de2b35c91545ca918db0341e4853
MD5 ff84edccd0b7a5a92b08c03bb0554a57
BLAKE2b-256 2183e5299ab54bc86995c9a2e603db3815363c09c7b4ba1eefcdf89065c4590f

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-cp312-none-win_amd64.whl.

File metadata

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

File hashes

Hashes for lenlp-1.1.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 71b1dc3ea7a6cfdaaa2506f326e047b660fd917da86c2ea2dc2ea1d0aa948b3b
MD5 7bcae1d2de9748cda3297637caa63c98
BLAKE2b-256 8a4b32070b1a70c70559985ea2896c8304507b4dce1f80ce45a93fd22c0fde9f

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-cp312-none-win32.whl.

File metadata

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

File hashes

Hashes for lenlp-1.1.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 8fd1b43508c4898a2252eca39d4a13fac14cccab789b6c7c733ae7285aff404f
MD5 e076652d71e466d1f525302b05afda72
BLAKE2b-256 614058d702298617f34cc26b9b7c8b1c99c79ca82893f91c32d48249a3f8097d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ef9a386bc7d4df7646d8911496afa1ffa38abeaa90399ba9744954444858f85
MD5 ceee6804a71c5fa40cc79303c4678bf4
BLAKE2b-256 2160bed606f76b6a2ab7d1fff252e85ba114ffb1e068f9afef44a8f86f8b720c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9653fe2e94fd551a05aaf4addb65586e4005f6a4aa9cbac50f1fc2129fa2186
MD5 18355dababce18a88ce068b54b0d8686
BLAKE2b-256 9354ea2840068eb08a4bd2ad0d22b3333d60e96dcc57a33f93ae3555bd5d1249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 909c8020e4b69b6704e2263acfd3c2ad3ee0dd244f32c659d7a8c69a7e945c41
MD5 e9045328903d2dad73504f8aa81635d8
BLAKE2b-256 147fe31f8c44c90324d973d53e555b6b869634cbd0359c90b9ce9a90dbcf75e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a9012d783b7228376e886a4d8f1590fdcb9d9470f904cbb860932f17662a3933
MD5 afd74a13cff7eba8a9c4ce4048fe6db3
BLAKE2b-256 84a3c8dbcb9be8ac3e017df63e0ace184f8be27fe9fde86aa7494ddae6be388f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 165c34ea25e0bd22254052d9098464b1739bcf915b894ff1648abbabe29ed358
MD5 8794dcab4552325022411d84294049c5
BLAKE2b-256 acf7c8fb04bb4fdcfb5915e826f68008ad2f2db3549da01d791b484a99ff2e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c473f0dc9deab1c2f6142b5e39a9ffecb3bfe6a8f0ea2fea21ce6da3ad6336ff
MD5 0c4d8a0fc4b76d1c08d71e742c1895e0
BLAKE2b-256 41e9232bb7b1c63648727b98c9243a1d434beb8c1bc05e6ee49705a91b8135da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfd847ee5e39de0e8cee5c11db4a5d1427206cb2caacbbd97c1990889ab449f3
MD5 222b62f8f2041cc8c2f3444c6ea801a7
BLAKE2b-256 f4a138bb9911031a4dd5ba303da84b42ffd15d42945543751c504a8b4b29c0c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 40d3a52c5538b7e60956ac7198f8d8e2e7bb8f700e120450a1432c2a4e6c2b7e
MD5 0ff858ae48333d533929f24578e6f815
BLAKE2b-256 d308a4505ad8197204e0e13b7f227347106fc78d242c2cb3c5edb52e05024a85

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-cp311-none-win_amd64.whl.

File metadata

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

File hashes

Hashes for lenlp-1.1.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 adcad96f0aa6e8831dd62b94286ccab9201960b65dd2ea8e2037f8f8da14f3a3
MD5 f0b1cc04899f5a3d8dbbc59f6f727970
BLAKE2b-256 74216a7bede5d7418a6ba11971468af567ffc9263019dda986ce995f4797cae1

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-cp311-none-win32.whl.

File metadata

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

File hashes

Hashes for lenlp-1.1.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 c5bb2fb0669b7f364928e6f5f9fcfb7ea64f0fbf29ee5741f181684a3562b22e
MD5 7ff9229a3f96c92be102e2c896cbd5a3
BLAKE2b-256 b2e95b6eb6108a9b65e96f339c7b641230c6ba6d1f4b3a9a23f5116d68265fd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6655e758bd33c4d34905da16c6c579f9fc96b0528a8d22b031b02fe9cea4814d
MD5 f905d285088803ef0e82d87457f427d6
BLAKE2b-256 b79f063eabc8a4eb17e053c690b59ec32564f9dd77cefd2e1e4fed8ed1b48e96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9898dcda184f1c9542743940df05db47ce97b1adad8d9f9e84260f1d7762b98
MD5 caf7c348d7471794b45c07450023790f
BLAKE2b-256 cea2cd26b0ce87b84cab1c3531db839a1d104b75e1e072635d0f2808efec679a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b6bbc004c58d9fc263e628851ae7c95b71c6c322142475d249f383ca9abb716
MD5 a100814fb21501f6222d972936941995
BLAKE2b-256 26aace7f020a6b2530e4753e01a654c13f9bf6db29e0a9326a2f463013290c4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9c42442b003bec98aa108e5601c9b1ab5400266644c4a58ae6b9c2edd72bd167
MD5 88464cf76833a0184f9bdef970c29bf1
BLAKE2b-256 42db2d8827036f5eb187916394b3dcd8f5ec8bc1d06047a1cb0e9bb93f90d266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 518e0db7376e31bf1459783f3c28d90a9fd3d68b19093d7a09cc02b98e824f35
MD5 9f9339034f914d5dec136c0ec8cbe1d5
BLAKE2b-256 6cf79cfe8ee0f752c1e8f9fb06b0b68464ac05c7a414dbbe8bb937fe282f9e4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ddb5bb010e543ee96be1e04fa425f16c1b580c36ebe79dd6de60e8a7c2d61c9
MD5 e4acc47b36ebe1531891e8502b1bad45
BLAKE2b-256 a040c5edb12f2afed69e5383428756e9cd7de49c572190143719a3f300daef58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6a42dc96f34ecb652a8a124bb8f2d8319131b8c365d2fbfa532ed30d981a7da
MD5 db185efe0a8797157be11940cc6ccce1
BLAKE2b-256 f8b5c2a207af78650b295ffbd582cb3c4fc0e496c7c005e615a64ac10f7a00a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d39b1d41f8b52c2ba56064a20c47fb0a925e2164735c2da697f9d94e55b83408
MD5 e87144f43fc11a9c4df576940ae3b6f8
BLAKE2b-256 4580a0e95fb4f8691683fc137e2439ec7c52d92dede62779f884b97283704470

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-cp310-none-win_amd64.whl.

File metadata

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

File hashes

Hashes for lenlp-1.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 c8212c376e1df32d3b5243810318e01a160c18be878c59ffdc226113518d0d46
MD5 deba87f8296ec004d1cf930f6626c8c6
BLAKE2b-256 d3c411c570cdaffbb62d3ea84e12813acad3e7736e2877a4bec642df016a4ce3

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-cp310-none-win32.whl.

File metadata

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

File hashes

Hashes for lenlp-1.1.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 778f6a836f55636059b32330ecbf941de47ce722f73bda1e4350d4214e269737
MD5 e6c382489606e7c081aa1b9be957b0a4
BLAKE2b-256 198ec97e11069026b433b47dc048cd3af12d4e8ad75b544aba963e8540f6b7a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc6d74f8a9e59a1f9cb49f7bdaeb02e8aeee0072b1a586baa95d51db72fc1420
MD5 3a755abb4e375689cf7cf911f40325e8
BLAKE2b-256 859abbdba9a1309464f7f726387a3c1b85aa2e11c9d9def0aafa67464a952e7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 025bbe6c4958ae6b7434d2b5dfc273814ee3e0145ded5b20ea3c14cdc22b8ce7
MD5 4410a1f98e492854188032e159847007
BLAKE2b-256 ac542d4abc34d53ff54c9b5d91bfdbd854bb492775e746dc45f30d96f7ccfa2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d7f2c829561bd5e1f0fe61a215730a84eb93bb5d45353c3732c9d3f3025dc32
MD5 6b6921860ce4c0943530d487c1ee1b11
BLAKE2b-256 6586d34a6828442311a9acad2b608f11e2f5dee671c4f620ad3159f033032278

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 605eeb2d691eb6f114d2cc50d4b0d6324f53d108d42b1a5eb45008c6c1196636
MD5 4998bf0e5ff8ac555b9ba1e37252b3c8
BLAKE2b-256 28d9c32e9e057e2059f6aaa84fb791b7c309f86431caa785b253a0ba516013a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ac1dccacca49f77ffb72250d2d42c286e806c3e1a97f0f85dc2189e6101d964
MD5 e4b8f16f35116b868773077208812004
BLAKE2b-256 ccf0ef92a4db63c0f7bca2d0d506fdfc08bdc2b83e89030431b3043100e258e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8fc7bd94d1d62ac358ff5d140f505aabd6ebb0f7545dafb14fdebf6ad3b0d946
MD5 f63e77f4f89cd38f1825a65678811608
BLAKE2b-256 324994a1bb9aa15911b5c73fad16fd2ce768a74fdb35e2eb8e641e6af23336df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aaf4a4522e5f3f5e0857db673463c7407d15117b66d24c77cf07a470676abbe2
MD5 48a0c50270fc30edf646ae263587b284
BLAKE2b-256 f8aeb8337e933378d8c5fdf9053d69a3025d409981047cee0565d9e75e772b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b853e921e601ab1cf48f3e66bba013e898f3648ba3fa2435507e287fb5c9868f
MD5 71410877c5d6be6577c4ef165a8dc340
BLAKE2b-256 4c801cb4abb2aacb00a6c0a6e20e349658402f4dd4bd7f6881d80f0720abf562

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-cp39-none-win_amd64.whl.

File metadata

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

File hashes

Hashes for lenlp-1.1.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 2ee802218f5a463432946f697aa140dfebf74b778a3594406dc97335a9528e88
MD5 6e048090deca5a60c3ca4d2bfd44fb26
BLAKE2b-256 9a9885e6a20e61f432580325fd41cdc4991ea727b251db2e60bbf46bc6790fb1

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-cp39-none-win32.whl.

File metadata

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

File hashes

Hashes for lenlp-1.1.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e99cbd6c53fac2bec10c5de99755aff536397773853eda2970d23748705b45ef
MD5 4e4672a4df37f0ed23fc5a35bc6903b8
BLAKE2b-256 af6142d4ccef4b0afd630396adcfe472546f82449dcee6e28ac1d6150aab2ea2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1cc46acaa69f15df10d3095be9b15874ba7e6e1abb9d09a44d911ab42abe861
MD5 2c2d1323a611a813e04dfcce6fed2ed6
BLAKE2b-256 462332985f31e9f088c727673a6c087b16209055bb68e22e61961934b85483ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 330a351ff80c65ed2636e02bdd83026ead23ec45310fda00b829dfdbff0c643c
MD5 88b989ee84afa5f7a014fc9e6897d634
BLAKE2b-256 725bcdadd891167f3d7a43002cc08f6ad780e78cc8e68be29ad7657b2bd754e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ff58f3ff926dc01564fb1d61e81c547b640f5a09f10757bfb8cd93e9c44b6c8c
MD5 7e8544e9083729a6fd3bc76fb962700a
BLAKE2b-256 45221f634879328553049967990b3bd1db2b87971762262846757270202418c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 89726f2048b082466ba57daccb6ac4c3ddb32c56e71040363f7d2610443b10a3
MD5 f8a20cfa8940adeedf75b4c322bab12c
BLAKE2b-256 ada07c661ae07de150b001d2366a98dd7d7517140e97e6434709778067101ada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 64592969a7e3f4f83ae5a2dd7ee1dc4684ac2e9e921de6dab21d862c7dff44af
MD5 6e5e16d54e30674a5f14641e88cb8450
BLAKE2b-256 2384e0385d0a1f3ae1369ba3cf3be4b159e54916843a9c6c509355f611f47ac8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea8e8e233948dff97cd073d59d3b088ef8d06eafab986967f21e41ff6c11008a
MD5 ee3f85be22f873266533d9f75e8f2020
BLAKE2b-256 c75f6b6b2068471e643b94b0b74c9d925464a342f117b278b60f42ca87449c62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b2cb4ee85aedba9bfaa9deee7a81fe74622f26f98e36de9908e3a5101ec6f6d
MD5 23a18e69dbe744d20478c489c54b1644
BLAKE2b-256 0e649c95959e6cccc8a798da00739b37d7a73017bd23cfaf40021ce72c533454

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 32547043448b1e2e97ecaccf869237eeea9dc5e2b2f749776eede7b3691a68f0
MD5 b79c93bd55bfaedd6fa68fa16915a196
BLAKE2b-256 e2e470d439e83f1779e97614be9eb7cc3659c1656ab233c0052f446c1ac8bef4

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-cp38-none-win_amd64.whl.

File metadata

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

File hashes

Hashes for lenlp-1.1.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 e4136d0cdba5f5a26011c4453b75d2397e59f1978127db7fd37d40102ef42619
MD5 222d30cc1f7ac216ae5243c2d209b4e8
BLAKE2b-256 9bf9fe4350b051e336fa4da3965c63d517e3ac8df4a345e21c13c6d551500e93

See more details on using hashes here.

File details

Details for the file lenlp-1.1.1-cp38-none-win32.whl.

File metadata

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

File hashes

Hashes for lenlp-1.1.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 e5a49f5c8ef69112e844c03dd3a8948ab9acc7d61a9ebae75ab99ee31fc03ec7
MD5 b4583d7c7e4bcf10fa11c81d6ad07542
BLAKE2b-256 694f768d0a277b1a05b8be3e3f1777c1d8ccc0ee4196eb28c7b2b5d97ff319d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49926de7b6117f390fe0d0dcba7f1c0001f0f64473712c55c10f6949f19bd512
MD5 1ab2420a491522c391b73ce9086577b4
BLAKE2b-256 87e25480698542c07aa8771a7de3ee0a03ffa9fabdcad26f5ce3ba7ea767e6a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5aef7e6aa4fc76906b2cf9c89597813bb3a8e015ec67a2b52b6f02eeefc67e7
MD5 3a6fd594cd2e1c68d8646c22c8a1d544
BLAKE2b-256 d8b2793d19f9670c0ce27f5833072868c455277120b9f2d8aee333bd83e88bc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e1b128705c6dcc3d336861f2c529604ff3d7c345cb45f15e3a2506d58d9c9cf
MD5 07e315241e5d8c4af30915bce13c928e
BLAKE2b-256 7f1eeb3ad6aeff8711c2e24c0081abe1e39372a1f1f0ce885b9134dadc736920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ecc8b87cf8e4ecf048b7867fb0d461c282d0fa11a030a161e671f6e9ccdc9d6c
MD5 0e362e9e438d18f0667cd7efe5b6a72c
BLAKE2b-256 fb0a8208126443fd9296259dbccb766d537c56593635ea19e48386facb080d00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c53ceb8904e6711a4bafce51e58b39e6b7f2e1ee7cd8c3801ce7c1e02dc820d
MD5 f65375bb2632a544e85f1f038be5b9bf
BLAKE2b-256 377a6afc36f0f6ba9d51fbf7445aaa28f34ef007e02aea4ba63ccb69dd9944d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af21c0928850733eebb101a6390390dddff1a90c735399f5c3b816b13c0ab40c
MD5 811c03596857c9773c5eb7448ee485e6
BLAKE2b-256 2f9871a403d4c5565d65254e82aa15258007f24173348148050382aa81557c3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ccf651634fdf8b6e2a8d1a9e2f26b3fd61818405ef891aedaf37d79195b8043
MD5 3050c5bc35021044dbe28f38738426d9
BLAKE2b-256 75f6c082757b19740d763626fc6086d4268d2620ecda03783ed500f2f225b95d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3464857c0adf1218aaa8806310afa5b831a9457361e5960c084e88e9ef77cc9f
MD5 a571e387ca489453cdb00b4ca944748c
BLAKE2b-256 a22d8d14c70819ea764b1a5c8ffc5fdb46f19c2da299c8dbc3c838db699ca7d6

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page