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

Uploaded Source

Built Distributions

lenlp-1.1.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-cp312-none-win_amd64.whl (391.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

lenlp-1.1.0-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.0-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.0-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.0-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.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (508.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

lenlp-1.1.0-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.0-cp311-none-win_amd64.whl (391.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

lenlp-1.1.0-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.0-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.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (510.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

lenlp-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl (511.0 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

lenlp-1.1.0-cp310-none-win_amd64.whl (392.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

lenlp-1.1.0-cp310-none-win32.whl (378.1 kB view details)

Uploaded CPython 3.10 Windows x86

lenlp-1.1.0-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.0-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.0-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.0-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.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (510.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

lenlp-1.1.0-cp310-cp310-macosx_10_12_x86_64.whl (511.0 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

lenlp-1.1.0-cp39-none-win32.whl (378.3 kB view details)

Uploaded CPython 3.9 Windows x86

lenlp-1.1.0-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.0-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.0-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.0-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.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (510.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

lenlp-1.1.0-cp39-cp39-macosx_10_12_x86_64.whl (511.5 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

lenlp-1.1.0-cp38-none-win32.whl (378.4 kB view details)

Uploaded CPython 3.8 Windows x86

lenlp-1.1.0-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.0-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.0-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.0-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.0-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.0-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.0-cp38-cp38-macosx_11_0_arm64.whl (510.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

lenlp-1.1.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for lenlp-1.1.0.tar.gz
Algorithm Hash digest
SHA256 f4089fe74ef4b3de15135e87c6e8506c671376846e5f5f4bb8a36a1f3b5ab5c5
MD5 7822c89c9ba56a51f3598a834ad60cf3
BLAKE2b-256 5552afc728ee2ef21c0ff7f83c003be59c893371e714aaeef83d4671a5b32671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b4bcafc127af55c977b68a44d5d85dba146aba7ced524b5052cf381cc7fd742
MD5 d98a300c333462a0ca40979686828943
BLAKE2b-256 fd10735448fa1562a607e20d9257ff46dd1698d83739d7a7ad3961fa321765fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2aa7ecce59680f2cc52237514f80f362cdb557fcd25c63564013debc17e15075
MD5 0749e6e6cabd9f93b1ad6dd35e26f85c
BLAKE2b-256 67e74cc8bfeaabf96f113886053cdce94020ef85022a29dfcb4e2f11cbf2bed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3fc0d0242dc3f0250ecacbdea04f2462d6bd92e2ebfd4d5e564e048e59ab2dce
MD5 bac342e9a0fe5a2a989e99af5c1361f2
BLAKE2b-256 8379961dac3fc94b3c38a72074a1fe9c1868b3ca77bc4d42892a7fcf5148d5c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d48188255f5aa570c6115513b7c23f6c507255c9c8fd1c1c6b096d416f700306
MD5 6cdb96971472cb522ce55f1b439bb08e
BLAKE2b-256 6b9d2e1e16501fc85a78cedba8c21af6044678211a895bf2eb2899971c71dbdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 490ddb8f6d2f8c74befd7c801f5b0668303e0b87427b010aa55639dce60c3461
MD5 84b7402dd3693d6c2f87d3f0dd0dfa21
BLAKE2b-256 e238ccf4c18e1533b3cfc2dd642dc3631db64a7cae6346d842632c3f2e676efe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfa210d5b0981dcc271237c308075916b357f9379a8d01aae21ff17f2ca833f5
MD5 7a6b9393652311c840c28c37dc514d46
BLAKE2b-256 6b8de23acae4f4783868868bd8313072cd2188170559ae8fd1d54826a87c9793

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32dd5a672c809f8b837006b6816a82df9ab56deb6fc7d696f45744a654940612
MD5 7bf56becea4bdaa2f39af37de58e677a
BLAKE2b-256 f4fb71d20f9e7b057efd090baa4c7dae5149f43f38f60a1d5ffee934ff3afd9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3998312160069eaa3634be7f159e42d748aa8e3eecadffc66c17acaa28ab5eb1
MD5 182087a95ab63fb6c78261edcee3c76b
BLAKE2b-256 f35dfa79e53f5cc86eab87127515cb7dda1adb7a257f853e75519c9ed708f14f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2831a67bcc16dfd3bb38bd4f9ad58ffc29cd05d626c45cf98fa8d9ad07095fe8
MD5 af7a0e2b24d5402a5606944dcb119988
BLAKE2b-256 37062e7dd4110077eefe85de0bf9f8695b37e7d892939fe6775c872a5d504637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5310ee8a92616d3eaa0c9749ca00783703dff08a28c3566d67ae5fcf4c36f19e
MD5 e69d3d645fbabfd0246f2d6341c9046a
BLAKE2b-256 f923eae449d464ddd3b7279ccf87200ff7472292b7ee5e7c9b429ffab205d860

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c454d506c1320ad95d95a6dd5a6ed629cc52024df2e9d78a901fccd341151ae
MD5 98fe70d437cf177ee56e42bd18d6ca63
BLAKE2b-256 f4e13bc81afdc3a392c9252c77816935e6fb864a2d818e021b7bbac682e50d21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5fdb58b261cc6f977eb5290347906e94721b5cd9603c3b40692031df1c38680
MD5 12eb662cfa53f6ab82f269fe97ba3ded
BLAKE2b-256 0bc119fc0dd3e1042569a2ae94a4b442459b32239ffb8d31ae6d764b01ecc44c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7c34c4813592a4d9c027cf195dbda5a3590b85bc8eba16a0d9cc778f4fbadf2
MD5 03cc67d334ed0e730308865279df3e2c
BLAKE2b-256 2d0b3d8a5e1dddbb2700755913b0a28fc534da7cc65797bfbc0927715e01e604

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 54c45df67a1f31b7580c77e71c5877bfbc92aa921cc28a1888b1bdb6e3b19cb9
MD5 38ed76520ab0c0cf68df8882acb4426a
BLAKE2b-256 20a38f1a552f96635840621e96aa3cc8f723388395ca18111bdc7de7a0bbf836

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e1be35104d5db70fcb25050c20eaa3ee7bb42384c05d1f47182a92ec18276a7
MD5 028d444ea3d68ad135c69d7c708bacf2
BLAKE2b-256 82042680fe9934f2d3230c090c7fb3b89e454292e93829f08e2e1c0e8b0f90a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 12348aa77c465c42a37af79b0be622806787fa0351954a83d1e272b0b6aed6b7
MD5 04c9d357c7fe2eed0d10fe9a9a77968a
BLAKE2b-256 5312f7eeb099ed82e0f3603da8a673ab2b1cc57b1b9ddc64ad4067c695becdb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 544e0099a5f9fa884246b6a5ddf4de4da21c6ed2be09f347d78149fb3fbcbd62
MD5 edb2397619769b30a735cdaf0420da2a
BLAKE2b-256 9fc5c66f9f14ff1a6527a2333c5b4fb08c1029f490b5efe6aec3222662a3ac45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5d3d2abfb0458d3765e61a79682f25816b5ad89962dbe420d3507513b20bad1
MD5 1c1067785f64d3db023a480d9606dd12
BLAKE2b-256 20d484eaff13984f9de971f8bf502c3b01cdedf84af1b8c841826b1748d4670b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.1.0-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 391.7 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.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 a31308d710416fcf06185f3dbb089e7d6af53a77657ece8321cbfd8c2f423064
MD5 9c31f7388ff18a8483bcdf7d2df47fd9
BLAKE2b-256 56bf53caa139526566acc9a20a5d940a1499a57d4a779eef798ccc9536f2799e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.1.0-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.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 a2345a6bff19f7dc1a25b9ade721aa239d09f386af245ed1f12a463d45d59b4c
MD5 fda11e2c14f9f4f63913566341a12924
BLAKE2b-256 16eea48ba224d7aaf81ce391739ec9ffc31ef0f53f98bb09f6f41c586fabd608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d791a08e98b91ebc5c603215f7aa87c7affee55089c6debcb31e8e91a519c9d
MD5 9cbc1c0c7276e125298acdac7dc83318
BLAKE2b-256 bd9420400c30a2a5ea5b71db5d887553497d8f408cb7cb5db81bbe7b682917dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f15df20694bd4beacabb1f4ed067fad4faedeb95dde4c3371f085019cdd6bb01
MD5 3a61678d9964706742565e5b5cd71186
BLAKE2b-256 13d0d7191d9d6e65c98fefba2ff2bdbb6c98b96acde0efef05ccd1398625345a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 00311aa8fd1c1cd639dc18c4ea365a0bb16e863ae0e6ba6ddc4c7eb2124f2457
MD5 a7fb519fce57095533f240ca71191222
BLAKE2b-256 75dbb48d500634cd7cf3e4c5c8b231930e10eb7d9544bdfda62c4c7e86140c01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a367334c4af322b1a818c13daf5d365b3537b6fac13348ab9e46e9ca5f78b109
MD5 bd5c374a3d79111264c494ac01f6baee
BLAKE2b-256 3057dddec41e39e98be685a178511ade08aa174f97926e4e8f2c52d3c19e1ed4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 05ef36afef68420e94211c384cb8b5d5602905393c7ccdcd30ec7867f5b6a842
MD5 63f74488f07d122de7ec928ee6c7447a
BLAKE2b-256 a5e55b47f5206e086d2c84c37a5ea20b8b8be6cb838baeecb0cc8316b296cac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4703db28d4d7ce753d5f3b2f350282e8b9ef8429322253292816f382bed16d8
MD5 7cb6e6891734cf6165a034ea2956764b
BLAKE2b-256 35f637dcdb6ad3763bcde80bb2d42113d5c8b60e6e62fb95f62c48b6fffc0bda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ae4b10e5d5c4c983092296a941d52bcae2e7706b400fa0c10fd78e95c5b7efb
MD5 28af34ff40f65e10431898aace9432c4
BLAKE2b-256 dbe998e9f003b3b996719bac55432be712f00926113198c7a6bf33db5fe67449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1739e348f65da7bcccd241f52b2b646e9fe0b9cc17ca8a0df4dd382afdeed6c0
MD5 b5c83d97fc117614394797c72aac08f1
BLAKE2b-256 ff6140e278594c4b478253347ec1edae49d2232d54e38d47de5bd2e556288bff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.1.0-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 391.6 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.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 9120c8943cd50c94697b8789363922287e3b6ab7201fffe3f2833973708293df
MD5 60df85a3b47baf516d7fcd487ac31ed9
BLAKE2b-256 503df9d9d7b3b9b10813f9c1509cc9db809bb3a1c830a551b5e72fc967205dbf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.1.0-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.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 c171aa570f3f6056311ec5dc1237ef7005fe70a967a887732a97497a073711ed
MD5 d802a239a2c4d37b3e2e9961cf973d0e
BLAKE2b-256 ea3d8b5b2eeeffb485fa552b305a1aaa72dd9d99819be01451286290d79eb027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5faf34af430f00c553ff478ea8d8157bfd69181a11ff9ae529ba35e94abefc03
MD5 134e947c1ed56032bd4ac4237be030af
BLAKE2b-256 0e4a60544008f58362e3cef0d662e5f0d197f6ea1fa89c2645f51e4fe2bc3ddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ca386990e5265bb74fe509f109206c964b317cf1ab7a106b173b71f3c248466
MD5 cf757a511b63f62489c6677dfc894dc4
BLAKE2b-256 ebcfc370d58f026cd167289bca1128c4e0959bce50a25252759617202f6896dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1f4f27d55e24550aa522c0b20fa432ef5c228a7cf3b7919ead76f49fad54c44a
MD5 a3c98ca6eb7335d9a46a5f9ae8af2df7
BLAKE2b-256 56ff8c1985e39a86771e89d3c8cfbfdc37b445bf912c8f3e4d30e794d620943a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 72fb961b3439fc2be15b896b010b06cb1e98e32b3346c849051c37ef7cd39458
MD5 a7beea9243b406df45539eacaf3d81e4
BLAKE2b-256 b8afc0b8fedff71a88b013855342b6f897dab43c3ba3999f1a7c8b32460100f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 57e4a3ef4c008cd6c1af0846bf366983763a44dfa52381e5422030507e9d152d
MD5 d11fc297a9c3306e0b891ecf5b2d30b4
BLAKE2b-256 ed3c21c0cf4762cb2d42842988fff4b7834f943a466f678caecfefcda2ca6c00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7543e9ff17add0551373a47c20c23d465a28381fbd5a3ddb4d97a1c8aa2ee0f
MD5 fb6009873e225f8a59f12c9b02401e9a
BLAKE2b-256 b9dfb9f2dee25efe9c1c5f96371ebf176be45792a9c34a7a3d0060ddc8f98cbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b5a093e148f6560243613e66ef461777d816ee858253bd3d3cf6ec51d1cc789
MD5 5050281ee3189e97da6277bc535e6446
BLAKE2b-256 95e52e14146761be191ffdc8e6edc833fb29ed4db389ead7a2483ef8441f9a40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 520747a3c240aa9aaacfc985d86c85fd5f7c0e616a5be662513d1333536cbf5e
MD5 b112321fbe3588b0eb288cae1db4a453
BLAKE2b-256 c055d79a2efdef5a0dfc493e07e527f760be6158e9a513129cc607bd2c80ffa0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.1.0-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 392.7 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.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 cd821dd515b68274728777267cce60484d45afd69f8f2449a3ef1abf6ffebe56
MD5 017b0f60f239ac5fb7fd70e26fc00bfb
BLAKE2b-256 d0cea283c6efbfdfbfca6df88f80d9c4b1e0e17d009fc18b157ee7ae38f78fe4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.1.0-cp310-none-win32.whl
  • Upload date:
  • Size: 378.1 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.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 0ccc3815f68becc65d1037a33141fce7e1065954537aae04f39bdddd1c97d713
MD5 5e61b83a69ada9b5fde746b170f5d58c
BLAKE2b-256 b007bd971b59c0d1e07d6413b3d7f3c02e751ecbfb2c8ed0bd3fa2e03cc5ab41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 143e57a4545974c099f07b69352395142d35ee51c396bd40c56a3f067069c1aa
MD5 8f62da365ab1ca74f04b841e7e087091
BLAKE2b-256 ab362310f39700ecc30661ff12925a197cbfecf589c6e951b83196466369d179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ed270449daf568cc72c035022a1a23079b07ced1bec6a9e8932fd31e34b464b
MD5 f7f9306a52f650d753fb9b9ada368749
BLAKE2b-256 0d1a24cdadabb0b72a6fb27b0c1b489d28e66f90987b9d4fa0f36f67cdd120d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b27565791005f5dd94755c78867805ffd32a9af37e04390c0cd73d95c7f47c6c
MD5 2f03a84642e459d2a6a12069f317a857
BLAKE2b-256 1e3837d01ec1f51fcfd198f83c1b952ab16e0f407c7be32d0fc1c08e505d12f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 904df6715428de91f0e916c6f536fbceac7f9a57566665f054ac6d63bb141f68
MD5 08edd4165a486110f7352f62b014e742
BLAKE2b-256 61b02d3293de1fba1a659f472c96df5796a37f482358a06b2864b4bc47ff742d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1030a24f8b858fee9055435aa22668b35cc0411999cdbe84caa189a7035d1f4e
MD5 8562f98338a204cdc12c73f0fe9ec330
BLAKE2b-256 c0ebdf64c27d82d45c88ba5cd4510da87c92385a5c63c4682ffc81591e5b8d97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a1fc5fa36c761da78611ac447a0c994556e2b6d4d75ac65de992acc42b9a618
MD5 677a2b375c83c88da1fc4eb6c6c99e06
BLAKE2b-256 c7e2e6e6d305e7a9ef41e94e32248765290497ec15a74a97525dc373255f48fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3480f1789080a10213f5059157b82adaa1105f48dfd2d23e17adb27af90572ae
MD5 0d7df9aaa8e2e0563e0236d09d6be8e3
BLAKE2b-256 40f0f34f56d01314dc7b8a63a9509436dc96ddcd31563fe9a2d43bb99dc29263

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 77b4d29f118b5db0eb74d2345270fe5e56e178cee331d3fb4a95da9ed770156a
MD5 5cc6ff6c511dedc3bd0ebb48b9b3ec73
BLAKE2b-256 3e0cb2ffa8691ca0147b3381e5c5bd11bf764178b01fb653c482a3f4b161a75b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.1.0-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.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 45172f23c3a5d58789b886e8c5543146b9ba432b2e72bcb2657d032ec126ad3f
MD5 70af575e890a971f116c7410092d38e6
BLAKE2b-256 79407ff89cd5bc6adafadef518a3119f6381393675f56f57c018c5571500c84d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.1.0-cp39-none-win32.whl
  • Upload date:
  • Size: 378.3 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.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 c820aaa9bf3325c3f3961258fa2263737ffeec21da356b37272dc6bdc0604cf2
MD5 0513c6830357cd6e7b4f91999f985ac7
BLAKE2b-256 a86b3306a4a3474ff71f787e978df18b408fe2ea20ef4ec42440fde541881cb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b18b7235a6c9c70e6c331cd8238770b6bc17424210407dce0def59ea6ea0aea4
MD5 e3840f5560fb86e1f4d3568ca2860aa2
BLAKE2b-256 ab9446ffe95908a6c49ff06ba417225267e1d487eccead6033c847c31dec648f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86a362e6ba06a0c0db7291ad9acaebb38e409efd71aeaddf3d062470e68f93f6
MD5 01baa9951d228db0a41d4958e29bcd2d
BLAKE2b-256 03cd1c793f34be9f59bbbbe36d42e2d01c6be83b172cb3cc033248fca859169b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3af7739c27863f96258d9a3e22287756c1f7212ae4289bb7aaef77546bd2fcef
MD5 870640403b59aeba20ce9e18aeda6329
BLAKE2b-256 5145315e958af50f491a126cac5f68f3219939d4e195888e9120a9b388c1a7f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 89c45a7f282ef2c0b5be0e076a3c6575b58a088410bcd0b50f87cb78b3c1251d
MD5 7d56339040e38978c1a55dae783d3ba4
BLAKE2b-256 943294e5c53b0961d4c12ec1e8275494b358a69b5a40f182d714fbfeee9e4c32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7103019fce3ff639010fd897d95b62ac01968dadffe1109a26d86a02a2d7a883
MD5 77a96b0823f2f17439a6cab8b4d05948
BLAKE2b-256 453dd6c694da5486c1339759124b3fcff73a169538498dedb4177ca4627b5d28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da6fb26e5a8d484f2514ec662c12bdacc73e555264c6f246a18b997bf7b00608
MD5 11fcf309f5df58c0a7ee19f60c3d0a8f
BLAKE2b-256 e02bf42aae2bfc418873597e7916edf0a5a7e20a054183a17862fa75774e7dfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc80d93c0644a0885b1f69eb8968ef7078d91186d3aaf4bc122bbfdf9063a463
MD5 3ca582dd9fd70bf7061f7700d3917894
BLAKE2b-256 1b2ebffa9cae4baee5b9339ece15fe170b25b1cd173aad9a9f31924bd21e9325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3d4a235cb7f750a166d724275757116879b844f0e760f37e02c5ca70e312c60b
MD5 023d98f8eddb7f9d91837c43a4c3f0f9
BLAKE2b-256 5b3934e161230cc3de1aea39944fff65f97be849519a836ab682589aba6bee8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.1.0-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.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 94abfca4fd1cc7a246d097ba453c2681103b5ff1db96a2c9030a82a4a9cd2ab2
MD5 d70fe50bf2c7c9114acec201f254aaee
BLAKE2b-256 9efbab9f0935d3952e825068057aaf722f80561c696edb3380978ac1af25333b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.1.0-cp38-none-win32.whl
  • Upload date:
  • Size: 378.4 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.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 0e0ccde05806456a0ba5258226bf9c935b75103c0ea9113d449c97a082720df3
MD5 d7ca8719df6a67bc4226f1747ebb81a3
BLAKE2b-256 be1cd9e006ad62f5d6f7648819ae2fc060a3ccd4351a78f5925b41efd483bd38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7e0297015cf76cee40cae0e10fab1316fa50136d75466b83ac30bd335621169
MD5 c1cfb8088efba72943470ba31bbd4ede
BLAKE2b-256 b32e3a9cdddb36bdf0fca93afefb5bdd3ba5df446e609b791ee35a73b36a80ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0871b0d11607503749453007680d92197c60c17d88ef8a405f1f07201313da02
MD5 ff4c4adf86face3daaefa418e4d3967f
BLAKE2b-256 8b3b0c1a1358b86d5c237b22cc726b6e51c915d27bf1211c4d224893f45061f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 edfc2802579af6221f149349a49f6e3570e43b98db95b2cbd6a378a83e694be6
MD5 56b1ffbdd839c7a8cbe2fe2fbb5c8010
BLAKE2b-256 50aec109385fc5cf38a2f4a6136e7368e08d926173426900620fba811a0c4d5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc03351ba188fc023738098eb85780468b9012e08f92cb11e3e25ae9e9d0b392
MD5 99ecc5551a3332b5f72e3cbe1d35514d
BLAKE2b-256 e82676a08a11bd6cfbfe616993aea0098093ef1c520637ee6c6e99f6a1e75957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b1b7f454f75f6cf4d6e933b19bdb732d4e639b8c171d9a1185b257979ff45189
MD5 e9582d1dca2a99ca46ac4608951ea87e
BLAKE2b-256 a0ca51ba19e525ff32acc9972ed20b3a673426a808d80a8a0b2a0d987925bc68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 717e25b80e42b3e41043965bb3b34f9bda0bb35e9040ec7f8e17655c22d37eff
MD5 9c43c6b554102b34505dca83192cb8af
BLAKE2b-256 9cc47827dc9ea9e3e6ff1b85e971d8fb807b2c902c8b8a365e65784d2f65bf14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccd99844d67839c16283972917150a98efa068e0562e4e70cbe6895578c21b69
MD5 781682b4847884b2188ae54e5b1747c0
BLAKE2b-256 07d587c9018ddf72c5087c8746f8019bc01c5389941b0bf788a58015795072d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.1.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b44b042ceca313056bc34fb59e875aa924ad0824d946581e2b130f4f66dbc9f3
MD5 7106a16f8af67ae7c40f38cf5ed1d6d9
BLAKE2b-256 f3785750dc98e20df0aecadd95b71ee9e0343fbe3525857ddca8afdb978b7725

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