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

Uploaded Source

Built Distributions

lenlp-1.0.6-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.0.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

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

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

lenlp-1.0.6-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.0.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

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

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

lenlp-1.0.6-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.0.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

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

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

lenlp-1.0.6-cp312-none-win_amd64.whl (391.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.12+ x86-64

lenlp-1.0.6-cp311-none-win_amd64.whl (391.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

lenlp-1.0.6-cp311-cp311-macosx_10_12_x86_64.whl (510.9 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

lenlp-1.0.6-cp310-none-win32.whl (378.0 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.12+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

lenlp-1.0.6-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.0.6-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.0.6-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.0.6-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.0.6-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.0.6-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.0.6-cp38-cp38-macosx_11_0_arm64.whl (510.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

lenlp-1.0.6-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.0.6.tar.gz.

File metadata

  • Download URL: lenlp-1.0.6.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.0.6.tar.gz
Algorithm Hash digest
SHA256 ad5dd0541b9256f862d3e45a85542e0b5a038fe3640fe0937b99ad43d857d217
MD5 2b84247cf2916c4d333959f668b1ea60
BLAKE2b-256 50440b4d2e2d7deff1ebc83dbfc5663b6aca616e69ea148f0179239d53284904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9684ba266c25ad5d6282fa13e7193f87af46ef769645f7f474ef8e3af1b51f93
MD5 b55d0c9784bd0da7133423cb7365ab7f
BLAKE2b-256 4fd10dd331097a760147224c342b98c1afe61172830606c3d629ef4a2493ddec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e43a15aeaa600a50f15e29310061eabfd02c92d355697b4637b8429c246f1fa0
MD5 fccd0064dd878ade03376194031c2564
BLAKE2b-256 e25ffd93954ededbf4ecd4d4e51c329bb3d4cedadf3ef71d862498fdf003521b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 410d59abf2e9fad40f8a8a1ab536ceb6515d7349683771a68af7c132061cca60
MD5 389a824cc467e79e9f76dcd18a31b365
BLAKE2b-256 434f28578be632336fd21594ade09026d5e5c7c548427c1113caf0e01b05444c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b5f06ec7546dba9b014344b60ff17a7b7ad7bebfc18f95cc174ed0e4cf631447
MD5 c363e1fbe65281299018843dc81f31f0
BLAKE2b-256 f724f9eef9e0ca252085a9b2ea84cb144596a785debfd2e4603311f7ed54f19d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb76d2acebc751fd635ca216417eadf14c1ecc9f123336635b4f15690c3cda83
MD5 4a1561773051e1e73510e1077d29f648
BLAKE2b-256 e37fee978e2d58dbeadcdb6752fd7e3c76f0aad2d2eac9d1daa34f0bdc707c12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b80249dbf3858f77c53968016cfa15b872bc90bfbf0f3828bd48ed54bee946b6
MD5 ad6bfd309536369c963694ed23a6d084
BLAKE2b-256 72b9f420338099e7a6a3b22e4552ae495bfbff111cabd6dc94466d7d05ea6ee9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ff00376f332d48c8c34853d30a0a57064d3bd21217f680b56977a0c18e2aefc
MD5 78bd0327cd8bf2fd1289039619977d20
BLAKE2b-256 7d72f9dca7966b8ebd9b0533016834fb21e09337b21fb63dfe6756bf9b168fbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1a744167315c9d53f7c3f8923cb2330cfc70834ce8bc31d99092bc8f18f7104d
MD5 96ff6363bbe1e647ddf678ae37083bb0
BLAKE2b-256 39a3b9fdef01ae71c92b1ad272848e6a48d45387a66f003a8372a9c4119fcef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 70c522de13aa8b71d9c89b0930dfacfd90dca4f379171798d7ddd4e1d13bfcb5
MD5 dd6c62e3e3dff40613327dba7d9322e4
BLAKE2b-256 b85bf98cefd323c9a7704fc489ce40e036cd8d678fbf5514f6a918852fb98809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17c858e73dd52db8e59856c1527fd20ba392954163b8f8cabf969041bdc1633b
MD5 e95ef45327c605ee70a99c744f7cb127
BLAKE2b-256 7222560a7bf5971d920d1565c68c8be81c54510af376d20f70bcc40efdebe6ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f2eef3f6941425ac6006f8d303dda27f7acbdc0ee8bb203abdf519891c97b11
MD5 20cdf7b5b0d48ac1c657da0fa8705bb0
BLAKE2b-256 705a4961ee553569d42cf798f2f80ff738045a635a4312fe382fca6172972532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5192e835055c81d736482d171ea39b93a0f75e24dfcdf4e0e16e621524d0bb3d
MD5 6f611f1288ac1c133dc46006e67476fd
BLAKE2b-256 bf31684c0f1b1792690a7b98744db141566f9f91ccba9807bae6cefe2935478b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89dd68304f5e40d083d8b4fe4c3312d802572225caca642059d3f67966696451
MD5 ec7fc246e6488d65d5aa6880ddbb9ce1
BLAKE2b-256 7b1606a499637a27c9844912e13e2322ce5dfca2379ea3d68708f4653692a9ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 285b69429703ee16f1230feaa4dddf049bbc0909960ef6651e949f1759bcaa4a
MD5 633fe21fe5bc985631b88923b5bde5f9
BLAKE2b-256 529be69e72eef3bc1f11195433a694c4daac027ffa3ff714ec0dead49946fe24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ea0f2c414535a3ec4ca8827ea40580e57228986d9dfe815ab3edcbdd2672063
MD5 b97103004e1e64a4c3efbad9896bee2a
BLAKE2b-256 666d08465e792139a15a17607e12389cfbdd168d8461ad69fd8bccb18ce7cf72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 83fde916b7a16c2e3a7f632ec456bb4c2ce2d4f694e053b21021471b40c3c416
MD5 14d513e96fecf6c5d179f06ab83ac076
BLAKE2b-256 f39b27312935a7a23889c6fc63e210f7a5f22c6ad0029e036d4438c7aa232cbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2cb3122d170694ebfe6eadd3bf6a5e71d2298761c663be919c99fe856554957d
MD5 8ae83ec9812ad8d68424a5e94fa1582f
BLAKE2b-256 482ffcfacd3fa8ff991da1dcf4003636bd6deea4d059e664e5667c54593f1d43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e6fe9cb1bdeb984412e6b3cf05266a15a79bc0438a7e024cca03cb50ddcdd2d
MD5 c62fab68c9097d25eb03bf52d1075ef0
BLAKE2b-256 8684b6d2cf180cc8c4d9d6a76320e53771f5bc4f778204d7a2499d7af7c59b86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.0.6-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.0.6-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 89b43dcad5d6d9f9362ecae670b08a9e72414c3dffa6a5a132bbf1d7fae87419
MD5 e1ffb1e8e9ffa59f8c66482fc4fd4a7c
BLAKE2b-256 70cad00212a6f1619ca7aebe4c606a089830f9c6a44554148ffa5f9d9f1cc75b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.0.6-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.0.6-cp312-none-win32.whl
Algorithm Hash digest
SHA256 7d4a24c6bbbe1f082c2e832d8db9d5c46ba9320522053c63441fca34a040afbc
MD5 9226a02b2fe8e4630e20f7841cf7468f
BLAKE2b-256 a61b24a4506e737c4be3a9eb21ca341b414ad3ffaaaf368a531d38bb389d85c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd6b465d9c35bcc0a6938ce5dc216fb80e940d26bf206cae248def3fd0f318d8
MD5 c884fa0965bc584797981d0acb9f5cd2
BLAKE2b-256 6f8dc421390d7b5e4493ba815f5959b828b3aa832f3b568192f2f3807a731e0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4b11a48e09d6b36a40c5a8e85bc3bf2dbf5277b41e04fdc3362f1fb80d8cf77
MD5 e37ff4a274902fab27853227d958539b
BLAKE2b-256 3e6ba55421316438b1f4ebe3118dfa089a3ffa63e7a385552ce39e77b005ecd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a5f9237014069d96fc20c80e18660c74334b7552e5f41a5fec1fb1b679937378
MD5 ea31fb7fe6a5a0445bcc38db6a6f8b69
BLAKE2b-256 4dd2da540ffbfaf1515ed30e3aab8061326f8a1795f12d51f16e2afbcf2a31e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 854f3b82d869e3540bdee39e4fc5066e8755a23f22eaee236d0b5eaeacfb26bb
MD5 d976796e67c26eedbcb7e05d99abd560
BLAKE2b-256 59ddbdf5753cb223537cb1dc2051f9e38c99d5b731c288cf712c2c51e4e4aee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5fc9c6c3c83751f39faf274735566031ebcdb953ea829954730801a49dbb3dc
MD5 1891bef7c49b8d03f2968277c04802b6
BLAKE2b-256 46a2a002667fa1bcbcdb3d9ee3f1d6db890168129558025dc8acb12bf6338c8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90beae125dbbb9f324ef06577f7cbe112e12d21e152c27dc64d91e85da6bfaab
MD5 fa558546bd1aeb5fd98588a526682fcf
BLAKE2b-256 4a1d753e32cf63d82eef027eed3c0981c184b01ddfa7f182fcafdc0ed4d9b255

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c71be08620e5b2fe14a61c23adf5aaf439546293e8ad1394bdf1a0eb9fb544c
MD5 5d82f569c80f2efd7ff784507ce4dc3c
BLAKE2b-256 912df1f713262486a837fbdbf3c0f88d6e0db9a2ef644e3e7406bd35db18a3f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c26523d3a27d0e00879b77a90c9d35a80842c2e8eb5362d6bd20f822f3f8055a
MD5 b8836355c8d30c1aca00097fa236239e
BLAKE2b-256 5210ba9a6b6737eff8d7a35aa240f446e70e00a6d068a5b1feb8da40544d9e71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.0.6-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.0.6-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 60a98d2383a0269a8a0c9fcfd12934c15cc5906641e73f375e4b3782d80c0bd7
MD5 0a5558b028e591a8e411484fbac8dc5f
BLAKE2b-256 d75d8e630837e2d6740d0a7a966f891ff0e65be284dd3a6d978954bc72f5a9e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.0.6-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.0.6-cp311-none-win32.whl
Algorithm Hash digest
SHA256 e36afd2d09a2a47122578ba68db47ef40277c893d95d39328e077dc0625756bb
MD5 d6bb2dd0c5628b6bbb40f7151ce831e3
BLAKE2b-256 333b118f5d67a256bd9b1f737f576f72cddeed7c6e7e1ec380705a56f798b476

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b73c92308958a0c851ebb887a2e79a23f6280b17736113da8a0365b285f0ccf3
MD5 7391fedbace8c37968a9eca6b153ec8d
BLAKE2b-256 07deaa03fa53905656ae4bba2832aed450e7ba060af178016e6bbf1c01e6cd9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ff5a897dee76edc5556c48be52937b35e162730b8617f4d39e1e294b0a80f108
MD5 e1b732d85004e7f3c0c0c2172eabccea
BLAKE2b-256 5fe4ed1fd25f3ff1d72af28dbca785ab0c4a5ccafc2f5ab1de0e1a8cb7fc75c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3db56f5d1ff236f8c5735df8df3d4bb8999dd96096702df3c2f53aaf1d260663
MD5 1ce62f8b59f4dc713c8cb2a7514b946c
BLAKE2b-256 d1f59c2e50fc6a49a4366904d5e450d055d48c15c03123a5d0ba2be841dd348e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4acf6a4f76e5d7348828393bda9f89177fb77d843500af1d89f4ed33d822eb22
MD5 614b671fd88e1cc4857b3aec9b648b17
BLAKE2b-256 f8100f36522cde21a8d418f2b71f7dcd0f288373dcd6705913822880d08de6ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 baae342097c778db82cfaba099524f02c027fd4900e992e8bac7be4a8c5f2c74
MD5 6aa1780a0083e0c0de3c87b8f8e72020
BLAKE2b-256 fff2e0f00462a5941b995d14eea87e70b685ca9145fcd0a2a107f0a7d5494e83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbde7c9dc70f5e2ed6980321b41fce7c87bb30748b90e2c61809e8e1ca6c427e
MD5 21c4aa3b1da78435e157e96a8e59f853
BLAKE2b-256 4388dcf5e0b8d1a9ef4124515b21e7040275d780856af4cd381033db569b70ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86ec0601de75f7e62f94f0e7d3c7fb33f21c8315b2b497cf0f7ccd3f9348a256
MD5 0f7f589b860e3456c9a85fcaf9f93ef1
BLAKE2b-256 322bc17f671db2f5202a65a198146b8194123b46c817ee96bc36e0ef42004d50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e427f26baab1dc1eac36ba1e8f7bb839c754b14bfbf1af81891171b92b6bd483
MD5 e30abde8f9df366122b2403e194bbceb
BLAKE2b-256 e929757f520a1aa0d7784e769f225e17b7c0271039c2fee3e59b9c0609106a5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.0.6-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.0.6-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 0968327c15efef5abc65df75544c6a6f45656135607ad6499f8cf4587de944f6
MD5 318273a7c7142bea924cffe1a94639df
BLAKE2b-256 312eefda8d202c31e48f4c4347efa838207b0d33cc1599ab5b9290436d24a465

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for lenlp-1.0.6-cp310-none-win32.whl
Algorithm Hash digest
SHA256 16aedc90e3bd7d4e6525faeca9543b25904864d30e2e98bf7d5d9044d096e907
MD5 3960f9529e77f7c1d7a2fbab1076c094
BLAKE2b-256 aebd76b78291cc9a2e4284c0c7727c8621e5140312b6fef557c5197c0ced7599

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d10056befd47772118cb6fca4eeed872f77cdb3171d854ffb97ef47a77c23ba
MD5 9883e75323995db903c19145a38a6786
BLAKE2b-256 056d7a4e8b23d363c251fe05dd8fea980a2b1eda19ab5dcb8ab21df6641dffc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 851951a32a74ccf7f9495f99047f7810e1da38de9b6cf5b7b468ddbb4c4df4f6
MD5 f051ca80abb69e0f96bc6995dabc8ff1
BLAKE2b-256 58602ed7871884cee5c7c0791a92d3a8d852e6822df24071c67a5cdfc996fc02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f93f7df485cd4003db0e47411719bc8a7ebce8d61f1739116f7d508c4044906
MD5 f16325d88db8d18eea9070b7ccded242
BLAKE2b-256 d6d889c64864a0c4c3653ea224ce07e68a8f872ac0bdd2a507dd0506dca46998

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b11e0b20251ffd8e3b3c28fff760bb8dbb717233f6f8a56507c2603baa75d0bc
MD5 ce6e078c3a53691dc796d66ecf218acd
BLAKE2b-256 d693742498f7b62e0211d3ce8b7ee3012f3f5ca56978678e6e9ca3a871690aea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11fbfab80e0d996103ddd76cee2afd2925036461d1cb5ffb06e42de32577e95a
MD5 7f8b6e2ac76906ed95f01a31c65d270a
BLAKE2b-256 b31253a947d35acf5f9307b505f0f13c0b116f492c32cf289f0efa7641ab0dd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aaae27045e015a9e4c8a4ae5fc4857ca3fe87b0ef217abce6621036cc5db61f4
MD5 fbb7ef91eb1cc5fa5a0256583da33796
BLAKE2b-256 19ebcafb67e8720544c12717c3a0e0569c4aee8b56d1d40769c52b9f6ebf6af4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 318161a1ec7fd0e09dff032397d2f7195ab81c3881a2674176ddbf9e5192bcdf
MD5 20947bbf9d37ed22c29d5155357c42f1
BLAKE2b-256 ee288659af9eb6500ace84894af77a5f5d8c32584464914174de76d9b5af18f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 adb10c0b45aad7e5e25daca32b6f97715081aa7fc890ca8614880f19295be849
MD5 d9033c7a320e4e7eae6f2e13d4956913
BLAKE2b-256 6cce9be2619d5fad6cd31c70b47815498a90b223c6cb1ac4b5b6614595b57122

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.0.6-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.0.6-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 5b26fbbc4744edd22668e02d70a64ff9c9c39aa5a48d35c2d9a9796db73e0e16
MD5 db4b1a64ec60c23dce0c1f7767f98944
BLAKE2b-256 fa67bc9d415cb3ee48e40ca37f10499bb2aa17bf98ee1defe5c1ae8a10c666fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.0.6-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.0.6-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e071399f651de9aa197c18f23543773c144f060082307f81ec01643fa5698c18
MD5 aad0493de07c2823310e3321c2230d6d
BLAKE2b-256 459224219bfd016b0fa28062d5eb116c5a4de3f435102f66029b166e0b10a692

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce639e00c1263308a02f03199c9e3ea5102ef0a4be6b74869c82695df62191bc
MD5 139b3656093830bc365fd28971853789
BLAKE2b-256 72e45546c4a7b140cf219dd3309612bb001b86d926973ccdc81cbf920399df18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2783b6bc77675023109cea40fd8056b2fcc326b988e560bffd22ccf66ac9f230
MD5 153cb15e77682ef2feb52828f4304b76
BLAKE2b-256 ac937bfc351c21609ba13d3f54fb07038db5f210c331586e1d92b7bc58f74436

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1dd2e59f5b120bb144873a39c1ecf004dcd994b16ec5150ce49d8f1c73cb9826
MD5 40c141e2d6f397bcc533c60ea3bc4fe9
BLAKE2b-256 2d93fdceb58dcf407ff318a1d384342888e83985479f931e267ed1a3c1535190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7176e83fe4c38aaa84265a3c371c3d488627f8114b500b7ef6d0f2764b1e96a
MD5 1fa86b08bf0689a10410f2d6cc98c3f5
BLAKE2b-256 881a041de98ae123d88e9f72169f554fccea8eb5e9042b9df9d0be0ac0aebf93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b603635e59f7cc754348fd625a010673a9d369e0ab4a54c67317739700593450
MD5 f6bd4075345e356f41fffe14dbd93c5e
BLAKE2b-256 2c596c412b29212e9c303dde2c78cd3c414a18ff9600b8fbbd6aec58809725f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d08f3776f8837a192ff6f86ada48388442eeeda6dc0f031d27ce4233b1cb8f8f
MD5 55a93c8be35b15f5496727c21cab080f
BLAKE2b-256 81051f43d6b9181028073d36027cee943e66da291cb887e7c042c2245d221f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abdbcdb4a850ba8dbddc82ecd755e700eaea3ffec140d81ab0b4ba5d8f66a34b
MD5 6876f7700682918fb00fb3b88f710171
BLAKE2b-256 c0423b1a4f6c98531817026d853c374bb5f739f780d1b5e7a522f5349c09bf74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bea17f067e9d1da413b02c2ebda9ab6d8d264cb62739cc15b0f7d69fb7490ea4
MD5 c096f6c0dba5bfc2e71d83cfecfa980e
BLAKE2b-256 0f322a14c88b940be36bd59f3491318a8291234c164329af9ce0cedb8b80ab02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.0.6-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.0.6-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 1b4d6e77949a747b3dcbd3d3ec3becf4c6fa52f360afac5eb51b6f272c2c9a26
MD5 431e400714180d86da37a4ce9c12f649
BLAKE2b-256 513f19e18da9309b86e7ce64925695277828239dbae3d3f395808420ccd48b36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lenlp-1.0.6-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.0.6-cp38-none-win32.whl
Algorithm Hash digest
SHA256 59efe8075d4321e6aef6dad907ef42f0939dce6779dd89d5756b1b30e163fcca
MD5 74139a4480f0f3b5a98805d1aa2393a7
BLAKE2b-256 1aa82fe8136769b75cf2348089f8a92e526a89dcddcbf21a193c6ed312ba147b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82f6985291182912173c08f4f55c2d3ee20215ae80915f7d98c3f8ac32a5711a
MD5 384f8a93b0c0c0d6e9a364ae738ed351
BLAKE2b-256 6d841f1fd17f3d98d351caa345ddf141d46068fdde3cfcf42bc00ff284bcfd1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6bc22031591e125f014f75a4214631a81de5572503ed6b23ddc91d3975380633
MD5 86e53a149775e6069f151e041c1321e8
BLAKE2b-256 ce7fff2cf1b25cf009c521a4477a1281785aaa71085dfc05536f8fded724a478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 77228a7ca2bca4a9544d35488adc55885dd6fbb37a460eb67e52e6c167ca95de
MD5 9d86c334f48a750de1880e8dc9b90383
BLAKE2b-256 a0407ae99d45b686aa650f08982558b2b7b14390701e40982203bdeb281fbb08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 58a260cddd6e19ff4a0b711c53460f25a53b11a90ba1871ca5550b7b02cac159
MD5 d0e4c2c51d8a79662029c186d089c01b
BLAKE2b-256 758f06e04f2a53222c872439493ad05d5116d995615fd615d6c41f5b3d139dd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a1cb9d931a44c76c13f4808f82bb6d020c58c05065563b92344d933d4b428ace
MD5 8ba635e92db2bacd48ab46f6c5aaecc2
BLAKE2b-256 9fb40a76c6e9bdef3da11788601c66e3db29665e3eb52a23cd8ebb8f2d49175c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8893ed8ba41657937fab53fb1f8888c563af9b7dcc8a7190011157e035c58af
MD5 a00d0bbf910747222fbbae53cea73b2e
BLAKE2b-256 2cb797e8177341d1b72db766a66bc683899d475aa823005d3b68fd10a20cda7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f525a2936d6fc99388086e61fcc2b26df30f575a5797e3d8e26314d1cc511d0a
MD5 233fca3df4ed33bea069c881bf60b3bf
BLAKE2b-256 a85c114a8dfe4e74e3c2d41fb659f087a62fad714f2bb62f538b4249bcb4e897

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lenlp-1.0.6-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 13304527dd82fcb2d1693a0c03c3b942e029fa97e1ffeec0eea350ab8cbd4540
MD5 40b8c8ff29a29f21d0f2a041cfc80dfd
BLAKE2b-256 8bdaddc94d69f313f0a33d0c357fccbc92608a398c4e218d4ae1a6307268f9c5

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