Skip to main content

Python binding for nlpO3 Thai language processing library in Rust

Project description


SPDX-FileCopyrightText: 2024 PyThaiNLP Project SPDX-License-Identifier: Apache-2.0

nlpO3 Python binding

PyPI Python 3.7 Apache-2.0

Python binding for nlpO3, a Thai natural language processing library in Rust.

To install:

pip install nlpo3

Table of Contents

Features

  • Thai word tokenizer
    • segment() - use maximal-matching dictionary-based tokenization algorithm and honor Thai Character Cluster boundaries
      • 2.5x faster than similar pure Python implementation (PyThaiNLP's newmm)
    • load_dict() - load a dictionary from a plain text file (one word per line)

Use

Load file path/to/dict.file to memory and assign a name dict_name to it.

Then tokenize a text with the dict_name dictionary:

from nlpo3 import load_dict, segment

load_dict("path/to/dict.file", "custom_dict")
segment("สวัสดีครับ", "dict_name")

it will return a list of strings:

['สวัสดี', 'ครับ']

(result depends on words included in the dictionary)

Use multithread mode, also use the dict_name dictionary:

segment("สวัสดีครับ", dict_name="dict_name", parallel=True)

Use safe mode to avoid long waiting time in some edge cases for text with lots of ambiguous word boundaries:

segment("สวัสดีครับ", dict_name="dict_name", safe=True)

Dictionary

  • For the interest of library size, nlpO3 does not assume what dictionary the user would like to use, and it does not come with a dictionary.
  • A dictionary is needed for the dictionary-based word tokenizer.
  • For tokenization dictionary, try

Build

Requirements

  • Rust 2018 Edition
  • Python 3.7 or newer (PyO3's minimum supported version)
  • Python Development Headers
    • Ubuntu: sudo apt-get install python3-dev
    • macOS: No action needed
  • PyO3 - already included in Cargo.toml
  • setuptools-rust

Steps

python -m pip install --upgrade build
python -m build

This should generate a wheel file, in dist/ directory, which can be installed by pip.

To install a wheel from a local directory:

pip install dist/nlpo3-1.3.1-cp311-cp311-macosx_12_0_x86_64.whl 

Test

To run a Python unit test:

cd tests
python -m unittest

Issues

Please report issues at https://github.com/PyThaiNLP/nlpo3/issues

License

nlpO3 Python binding is copyrighted by its authors and licensed under terms of the Apache Software License 2.0 (Apache-2.0). See file LICENSE for details.

Binary wheels

A pre-built binary package is available from PyPI for these platforms:

Python OS Architecture Has binary wheel?
3.13 Windows x86
Windows AMD64
macOS x86_64
macOS arm64
manylinux x86_64
manylinux i686
musllinux x86_64
3.12 Windows x86
Windows AMD64
macOS x86_64
macOS arm64
manylinux x86_64
manylinux i686
musllinux x86_64
3.11 Windows x86
Windows AMD64
macOS x86_64
macOS arm64
manylinux x86_64
manylinux i686
musllinux x86_64
3.10 Windows x86
Windows AMD64
macOS x86_64
macOS arm64
manylinux x86_64
manylinux i686
musllinux x86_64
3.9 Windows x86
Windows AMD64
macOS x86_64
macOS arm64
manylinux x86_64
manylinux i686
musllinux x86_64
3.8 Windows x86
Windows AMD64
macOS x86_64
macOS arm64
manylinux x86_64
manylinux i686
musllinux x86_64
3.7 Windows x86
Windows AMD64
macOS x86_64
macOS arm64
manylinux x86_64
manylinux i686
musllinux x86_64
PyPy 3.10 Windows x86
Windows AMD64
macOS x86_64
macOS arm64
manylinux x86_64
manylinux i686
PyPy 3.9 Windows x86
Windows AMD64
macOS x86_64
macOS arm64
manylinux x86_64
manylinux i686
PyPy 3.8 Windows x86
Windows AMD64
macOS x86_64
macOS arm64
manylinux x86_64
manylinux i686
PyPy 3.7 Windows x86
Windows AMD64
macOS x86_64
macOS arm64
manylinux x86_64
manylinux i686

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

nlpo3-1.3.1.tar.gz (17.0 kB view details)

Uploaded Source

Built Distributions

nlpo3-1.3.1-pp310-pypy310_pp73-win_amd64.whl (583.3 kB view details)

Uploaded PyPy Windows x86-64

nlpo3-1.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (820.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

nlpo3-1.3.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (821.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

nlpo3-1.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (680.0 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

nlpo3-1.3.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (721.7 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

nlpo3-1.3.1-pp39-pypy39_pp73-win_amd64.whl (583.1 kB view details)

Uploaded PyPy Windows x86-64

nlpo3-1.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (820.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

nlpo3-1.3.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (821.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

nlpo3-1.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (680.0 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

nlpo3-1.3.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (720.9 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

nlpo3-1.3.1-pp38-pypy38_pp73-win_amd64.whl (583.1 kB view details)

Uploaded PyPy Windows x86-64

nlpo3-1.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (820.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

nlpo3-1.3.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (821.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

nlpo3-1.3.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (679.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

nlpo3-1.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (720.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

nlpo3-1.3.1-pp37-pypy37_pp73-win_amd64.whl (584.8 kB view details)

Uploaded PyPy Windows x86-64

nlpo3-1.3.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (823.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

nlpo3-1.3.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (823.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

nlpo3-1.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (724.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

nlpo3-1.3.1-cp313-cp313-win_amd64.whl (581.6 kB view details)

Uploaded CPython 3.13 Windows x86-64

nlpo3-1.3.1-cp313-cp313-win32.whl (516.2 kB view details)

Uploaded CPython 3.13 Windows x86

nlpo3-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (879.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

nlpo3-1.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (818.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

nlpo3-1.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (818.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

nlpo3-1.3.1-cp313-cp313-macosx_11_0_arm64.whl (677.9 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

nlpo3-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl (719.0 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

nlpo3-1.3.1-cp312-cp312-win_amd64.whl (582.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

nlpo3-1.3.1-cp312-cp312-win32.whl (516.8 kB view details)

Uploaded CPython 3.12 Windows x86

nlpo3-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (880.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

nlpo3-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (818.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

nlpo3-1.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (818.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

nlpo3-1.3.1-cp312-cp312-macosx_11_0_arm64.whl (678.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

nlpo3-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl (719.5 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

nlpo3-1.3.1-cp311-cp311-win_amd64.whl (582.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

nlpo3-1.3.1-cp311-cp311-win32.whl (516.6 kB view details)

Uploaded CPython 3.11 Windows x86

nlpo3-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (880.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

nlpo3-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (819.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

nlpo3-1.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (819.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

nlpo3-1.3.1-cp311-cp311-macosx_11_0_arm64.whl (678.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

nlpo3-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl (720.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

nlpo3-1.3.1-cp310-cp310-win_amd64.whl (582.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

nlpo3-1.3.1-cp310-cp310-win32.whl (516.7 kB view details)

Uploaded CPython 3.10 Windows x86

nlpo3-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (880.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

nlpo3-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (819.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

nlpo3-1.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (819.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

nlpo3-1.3.1-cp310-cp310-macosx_11_0_arm64.whl (678.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

nlpo3-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl (719.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

nlpo3-1.3.1-cp39-cp39-win_amd64.whl (582.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

nlpo3-1.3.1-cp39-cp39-win32.whl (516.7 kB view details)

Uploaded CPython 3.9 Windows x86

nlpo3-1.3.1-cp39-cp39-musllinux_1_2_x86_64.whl (880.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

nlpo3-1.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (819.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

nlpo3-1.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (819.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

nlpo3-1.3.1-cp39-cp39-macosx_11_0_arm64.whl (678.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

nlpo3-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl (719.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

nlpo3-1.3.1-cp38-cp38-win_amd64.whl (582.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

nlpo3-1.3.1-cp38-cp38-win32.whl (516.5 kB view details)

Uploaded CPython 3.8 Windows x86

nlpo3-1.3.1-cp38-cp38-musllinux_1_2_x86_64.whl (880.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

nlpo3-1.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (818.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

nlpo3-1.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (819.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

nlpo3-1.3.1-cp38-cp38-macosx_11_0_arm64.whl (678.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

nlpo3-1.3.1-cp38-cp38-macosx_10_9_x86_64.whl (720.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

nlpo3-1.3.1-cp37-cp37m-win_amd64.whl (581.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

nlpo3-1.3.1-cp37-cp37m-win32.whl (516.5 kB view details)

Uploaded CPython 3.7m Windows x86

nlpo3-1.3.1-cp37-cp37m-musllinux_1_2_x86_64.whl (880.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

nlpo3-1.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (819.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

nlpo3-1.3.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (819.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

nlpo3-1.3.1-cp37-cp37m-macosx_10_9_x86_64.whl (719.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file nlpo3-1.3.1.tar.gz.

File metadata

  • Download URL: nlpo3-1.3.1.tar.gz
  • Upload date:
  • Size: 17.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nlpo3-1.3.1.tar.gz
Algorithm Hash digest
SHA256 1673cd0940194672db7ddd7405f3ed6ad5450fe037ae6b1914655b9f7afa9198
MD5 431ac030722e96942e4f93ab5e2f8dc0
BLAKE2b-256 af383d54290ce574b32e193245b55f5f6442fd21901536fe5baec487b133262e

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 85b538c8b5ebbd68c438e969731326cbe94aea06acb755ebb74a228d3a3db0bd
MD5 fa78f07e3fe218ac3bff6ec76631a7e7
BLAKE2b-256 17fd9728d7827ca6c9d2f15305738794ee7d990c77d60e006628d36657b063cd

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe9f3e1c148fe7665ede60cf4418aa4ff752421f7d18099dd45860096aa78c71
MD5 6a658a7f3287b852cf539096c6c62544
BLAKE2b-256 b27bd388968a0a279174b70ab637746a8c536413af895e7a89521bc69512eef3

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8e07bcc2322ebee92e8591c1e2b24ee71acb974ed0b5183b18d6e1f0b242625
MD5 d35b1fae5d6f1224a734516e349cda69
BLAKE2b-256 04f1cda8bcc83300d68a96c129c1c83911501a6c5d88cbcb298aa6859cb381cc

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dd8824c39f81f52f8982a1d2374a03c03fd42ffeb3b33e5fcc7e74d0405e57a
MD5 826776bec9a2792ff9cfefc8eed07b9c
BLAKE2b-256 936a28d5621abc3dc28b52e0944e38165d9914e1dad367a60fbeb79436a30e3b

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2589138d37c9cd7c97ca936a63ce8f6e935c10f3abbf18fb62ad511c77d47682
MD5 aa2703d20ebc6cf6c081939d30115dfe
BLAKE2b-256 e603a3a6745d5b9b5c61a3e17d5ea8f19b749b1df4d8d70c71d6cf37bffd2f38

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c78404014deaf7ca7db4f773d4e2459a503bf45d9a36cafc27dd1a82d4c264b3
MD5 ebad1cedf681d9c7c38650235a9702b1
BLAKE2b-256 8d498cb38d42ea8cb0e101d097606eda425c28a2fdc6e8f0926e89b1c80362b7

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ed3c786db4431fe6a54164f2bdb376853e7314650be683557dd42652ce50733
MD5 f56ab1bba59150a0c6fb418c59c28c67
BLAKE2b-256 e1bd2eac70ba521f5fcdc4eb5d60f839cf92f2daf29add8410a67fa5f9035257

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17372274edd5755fae683b0bd571e76a91f36e8232c595592956c19c03ef023f
MD5 381e66062eabd06dc4dd09af25976f3a
BLAKE2b-256 eb5c00a95dc2f3df89748f3120d1b2f79be0dc68146a5b8560f3263c666e7ecb

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f5aaa4193e66b26770f60ff564fcb2c16c22c306b3c2777c2548d7c9b1472e5
MD5 c6771589813c1aa99a133702f8a1b1e0
BLAKE2b-256 c238db64c9a52044f055a6b1f714d161f7e67b99e53f89156b9512ac6e90ef59

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 29bfa4888ca1e6f0081e92323f2ecc9e763d170b6616753c7b35ee69043f8af6
MD5 cc8be028760c8551875c091fa902a471
BLAKE2b-256 4219c011242d5b15cba4f90280f9006d0bfde3857487e02c6594591c407fad8e

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 96b3b9a840a08671121a760f08b4b3a7ffd2d0e3820f12e50107678d27723fa3
MD5 d141cd54338e8729158ee25529983d08
BLAKE2b-256 cda5776b5da674a74ae6bc10a28c1854ce7da057d9a90aa274341b931d7cb975

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2967ca16f65794224855527ceb5a301cf886c066b848d004aefa8aadbcd1d35
MD5 0bc720d398576cf494713bfdca05aabf
BLAKE2b-256 149681783ef0dd37fe50b43b45adf9151f7db56a73694ec29640cf59e08a5ea2

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a3f1296c0333d47e789b8120b22028a02ead0b8ceaca31ba6badbe766fbe87e
MD5 0cc4ec26fb12a0227354104bf915edda
BLAKE2b-256 09f31d0c7a1e49bd0d4d90529e2f0eb27de84c28c22a6fba117b64075a9e7891

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c70a72e0fe0fd7241e4c1247de6098c23c002104a1139d506befd5c70247056
MD5 73215fc3b61ba874a3e02375b06c89a2
BLAKE2b-256 e5677c296301f612a82937b87f36bfe69b9d931c094b4ad07958b4c15dcb9ec8

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 731913746fbc9ae39d4d90f5117723164ca810513d2cb909ec1ebc7ec2b82940
MD5 f1da4137382b34a308c11a75e047da78
BLAKE2b-256 314b6fead4833f8086867937fefe40ed961695e6d355849b3a30aa9908d66af2

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 121053187042494126ec1e653cb881a9845604b1bc39ec1779bd4e1f508d9b08
MD5 64019c809ef425759063681399a91e4c
BLAKE2b-256 ba20a96cbf94979a5a08d6cc963fd151fe3987741edd1c722a1abb7e5c504d08

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd47d05a71f68f409522e24d04c47a682d3f3c837ef32ad1077ec1ecdf492bb0
MD5 519821b3610709c85e9ec1d2e5c525b9
BLAKE2b-256 9bb086496d2e9c9bc1a1082b734c27ee6c29418f697dc03a98609ea1f1570255

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d332baec7343cd84725c85959a6b51f212b5195cb33fb02b528711143c3fbe4
MD5 9fdbc65ab8920d5c0de3fa9713931495
BLAKE2b-256 30dd87af52578210699364cc7691cde9b60eebd18c923bbaa20b0a65ed96cf7b

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 94266087440c1bdb19efce5c77d44cbc3f9141a1113436d01d50b4bd11d11883
MD5 48f292021b3a228a5b22eb1733b51e30
BLAKE2b-256 0ea56005065f3e6e3be0a5fe54bd9710d1ce985b3cde0fc84a32029dc40399a9

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nlpo3-1.3.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 581.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nlpo3-1.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 695c85d7736fd32f78861f37cf7ec49048be6210c4389dab32514bd8edc36a20
MD5 317d5b9a02e389e66d9c8890136531a4
BLAKE2b-256 0900ca9fa4d81f231c1c04c152d7e9a30813454cf3dcf434bfe7324c9c27fe2b

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: nlpo3-1.3.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 516.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nlpo3-1.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 016794927eaf754adec1170769175d31b1adbfc6ee572e5d1d7eeaf7b4c5fe1f
MD5 9ae9feeabb503042fe207c1ed369550f
BLAKE2b-256 f685398fa9d983184a86f736d45030e58e9c0d0263d67cb939aa1d45b1c5bc66

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35484b1eb3dd78ba764eb40c04a701b1732df252a31f49ac414463ff6187c607
MD5 2a962ed072a45ce6f324ccb8ac8700c4
BLAKE2b-256 390902b775e39bda9ddff02b732988e0518aa1dabc25b7ba6586a28f5cb18653

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ea6ca80a73d4009fc915ba9fb174d8c538965b51511c39fba68dea7eb1c5240
MD5 f4dcce6870c2018944484f7c66b2646e
BLAKE2b-256 1b53c8750ad7ac4531d1c3278ddc1ba2a40d7d6ea38635edff55959463ac739e

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 139a080ef935d6e5116e47a86328b0aed5926cee63d1e353134e0b618cd998b8
MD5 5c3f39c1369884f2dae3ba451d6296b3
BLAKE2b-256 a445e951a88f90a237d03f645a1ba983348e88fe59231a2024240414bede82c7

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 beba1c32f3999b7bba59ac55255b24258eda0dffb802f04ec8d9047bc8aabf0c
MD5 f5ca4301aa6535737d6e706cbd76253a
BLAKE2b-256 3ffc0f175bb3ae9c5b544d2d3c9f84a6cfb8a6d99d6fb10457c4f2292624f1b6

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 31d3f0b60f60e416670f2725cc7a3f5ab1489905baf821dcea11050bc56586b2
MD5 d99fd41adceea9e9e14d51d64958785d
BLAKE2b-256 bbf6c92cdec74931e820413c8302c1dec996b812e897ecd46972b9c74f7445f2

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nlpo3-1.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 582.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nlpo3-1.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 05ff2020b390db6dcd2ef75ec275f391cb2263d006bf0e47f7f94f3f1d802f77
MD5 2763c9da5313e779a6a2fdd4512695d9
BLAKE2b-256 09d4dcd84df0955651f7375c4e432eb329e220c037a912927838dbf89c979573

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: nlpo3-1.3.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 516.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nlpo3-1.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a580ab16766cb949e3e029560659e22a9de258ac56db29b8c5ce2711b6509fb2
MD5 ce6d2740ba3fe92e4fb533abf588b3e6
BLAKE2b-256 be41b1b48a092499ebefde2ce0ac7fd716465130ef592f07eeef1a3ba6193a2a

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 591f42541daa5dd3623919f8330ada40131aa23531b75d773235d476fe6430e5
MD5 86d57562d8ceeadcaaa66f131bc2818a
BLAKE2b-256 99c805953fc80901a4ba89ae29730b3b2f1aee4d6126b31d3263298182c83a4c

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd9b1da1214d4635b6f2b89b42eccc6bd314a7cad170c16bebfbad791c592d31
MD5 f82e3e784dade2edee566adbb3729d4d
BLAKE2b-256 8e9d870659dfae8e9c7c5f44339a7e763d1519c458c019493a8afd951df2f8be

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db3117e768c164679c05d941a263120397096820a33534870e5a207c7340e9c9
MD5 45538d60018c0be8eae086b85838a444
BLAKE2b-256 50f3d95695a984661134b93c4bf7c9f117aa24f1f300cb7889a11f4b31ccaff5

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b0250dd7706906df88dbd18efa7ae5ae68935b0ce8fb8a5fe89509f939ff4be
MD5 4a52119f7287a9fea1c13741e022ad41
BLAKE2b-256 388720cc6edd4e1e61a8d11528a262d1447f722318a1b3c820c6f005593a8553

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 53eefb55cdce5c3fbff1901ec943f28569cc09d503bb40e9fe633d24e83f6935
MD5 2c2eca89e9efd0ef914c493b95696ce2
BLAKE2b-256 512a0f0d8b96e22013e3742ba26d5a0a504ac79c675fcafd7315c75f8605893a

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: nlpo3-1.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 582.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nlpo3-1.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6f34ae9603a2f59e8881b6c447fd5c95da2b0122469593d7957fb7458f8f56a9
MD5 1f6ea883e0fd962f0bce97d49c8c61a6
BLAKE2b-256 208bee4611b1740402e266aad552594a9f1c31fe76cdb492e7a1f20ac7517e0b

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: nlpo3-1.3.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 516.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nlpo3-1.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d0b76a323dc419b7ba55563d75b012c77172976d4426f65bc1636d75b2b1bcd9
MD5 e959b8de447df6abca80371343f8c19a
BLAKE2b-256 c89602f3d8539fd847ca2e530140c14d390efe19b99bc6a1b1fe9e90997aff8d

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 550c3153f32a6d8c557ffb83a47389f936a9919480248cd356a71bec30d71550
MD5 9e36425d2d22a59da1404380db99646c
BLAKE2b-256 895bb99a5e4e154bb4cd713b5e31f696f5941dea04cf40edf1ae700f02634777

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28913bdbd1666531dd674e43d13fa3aed16c45b0b621a263a3035598aae31c50
MD5 d6dba627165c921de8e88bfb6f394a43
BLAKE2b-256 b1922c29ee00b615cfc3c5ce5dabe9207d2ef69b7d2021e459f4fa80624f2eca

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 354b53d16db8207911259cd86c484b3ce0466ab073adbfaf5c71c9d227de3c5c
MD5 35239125e521b73a1af48e29c61c255f
BLAKE2b-256 b7cf108a72b038d260af9f4327af221c341959c5486040c299846e915ec488ed

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f19a485d7c57499a908206f2e16b05d5dc924328e39fa6d7398e908898b65a6
MD5 e0cf1e22309f2496f67b0fd1233ecadc
BLAKE2b-256 0f44d94a8dc0413b225652f008877ed3cd7b1bf1cd27d010f4061327df71c662

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4e136df86164cd84fb23c8ebba4c1a6d9b7ce499c5d142b6c55edc4031129c9e
MD5 3bafb681384ad051d4d6580bacf2b1b3
BLAKE2b-256 2af4de317b20de9cd65da3e9860c0f979e76983dea1a92483aa90b706d338f89

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: nlpo3-1.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 582.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nlpo3-1.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f154e3e153b9bcee4738ae1aac617e024466bd03e2a846b551d53c0e86779fc2
MD5 08b41e53a177bee396de63f2109dd327
BLAKE2b-256 1572feb829c1db3d1b648adff9e037d89aa0a88c97d5e8bf483794efc12cd125

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: nlpo3-1.3.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 516.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nlpo3-1.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3a9c81ccb554a35c8eedb8e05a93a2b09c779949fe2eb5084521a2503ca165dc
MD5 b83547d01ea2e540fe22d7d32386723f
BLAKE2b-256 6a948c1956a5360070d720061a53ae34ca6dae73fd2856fbe6138072034a4ae3

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2aacc797663205506a9450044b2e9c8e0d33c3928496fb390e535045118d3f6d
MD5 bf1fe4ca39afc9a8f3172520ab398abd
BLAKE2b-256 a3ab16f6d8c9a7b5d630cc99ab7665de2cc339e0117c9f3f9481e8671b515c07

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d8b235754bef7ef380b28686b585e1686ad3583079820854c78ac6db62077d0
MD5 9ae06436a1a762776d4c1187ef623885
BLAKE2b-256 91d526fe6412ce072b9088592857697aa503a135c302bfe7f226c37819314e99

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4989978e424a23e1428b8083a47a551679e3258272f26b325cfa30b85e6555ee
MD5 e2557bd01819bc51afa1028dd80df341
BLAKE2b-256 703cfcfdd2d099c321e78a8dc12313ffda4857282f583f0e6febbc8b47dab026

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fac981755e3cf1dd6c00771dd5845710439c27664d19499c95a7a0713d1a02b
MD5 68e5d77bf7041ae2ba1be6440876b46b
BLAKE2b-256 9b36c64a670907bca956d728b2ae610fe5352e1c141176b4d2e10af8cc4caeb5

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9bdbaecc6ac6a1e4d5fa05e4f3df354a8d16b3d4839696285ad53bdb104efbcb
MD5 e46fc90b2eb4de0c5f6013a2f7f49ddc
BLAKE2b-256 4ec73b423ff86f8752f419b5cdb74a1aa6ddfb7997b1292dcd12ad6dd80f2dfa

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: nlpo3-1.3.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 582.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nlpo3-1.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e13219c553764e654793d38c3003e9fc30492270a9aa8110dc09842e74e773c4
MD5 58193ee376edb9b2a37b4b3a8447de69
BLAKE2b-256 1a7541e0e5f91370c0a360479d0ad206f2850619924900136edf814a8412de4a

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: nlpo3-1.3.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 516.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nlpo3-1.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 09bf0487bd681740350603853efd5e2b6ab184cda0d6f489365f6f40540a11a1
MD5 891478601603155dbcb2570ba5034fb8
BLAKE2b-256 801718b8f510fe3ff6cd27f63f807c69a63fe34d885bab2d0c82d6abdf02472a

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b30a05a1cfdd8425e05d787742bbf442f9bfe9d3828e0868258196ee50f834a
MD5 1955f92256375896e98b97dd3a0c2ee4
BLAKE2b-256 7d393f9f09dba1ffb7e240ad0c92f4bc3225990621123f6d07ab0326c7dac3df

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3e9956a666b2180eabd3afa2f3ae4f3407c2fa338cd30e0c842f2c0f4eed774
MD5 0ed9db3eb4879023c06cda158c630a8e
BLAKE2b-256 901abd3c7c4f1e67d6d780dbdb1039b285056c97ef281fa1d6dd3cf66560a0fb

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 47766c15fba8bc0df405b35b3d04cee31f5a162ad5ef51a74bba4d3b65eb715d
MD5 0fbe722d4b59ef23a02c55dd16f784a4
BLAKE2b-256 6adb31d7fbf1399db4c631471b9157a7bfe49347d802078c28521b7d2fb4e891

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7598198f3d4567aa3185a768afd968184fba627c2c73d64d7333864a0cb82de4
MD5 4020a3cdce9293dfcbb7b6956c206f4b
BLAKE2b-256 a0e78fc1d13b38c1766f7830330208e7724e03bb080cf5252ae98a5bfb679ee2

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c5f7e075482d1696cb92e7045cb1c790b1f34998b7746a8d44334d5644e15df
MD5 5e17aab45b69eaa59842917303b043e5
BLAKE2b-256 cf0b88fdc8505d10d04764f39609cb0eb33dcf6b92ca72e74872d04de9480617

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: nlpo3-1.3.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 582.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nlpo3-1.3.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 16c698a7e4e4f0525ca7dd1f34ca69ca2b37cd4cea2b7eac5440ed7a3e80dff6
MD5 eb2562cf3b6c18962b820265fb683b02
BLAKE2b-256 6cf8509e7f9db3f0d1bc87748ff0cd3a958e97723e33734c477cf9aca9d8f1f6

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: nlpo3-1.3.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 516.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nlpo3-1.3.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3c69a63f5b540f2f8af204c96285a3496103d4e6fe297fed470d9a275a2c46b8
MD5 e5509a1150b2b9e2ce705949d08ca7a8
BLAKE2b-256 31d386f874633e889cdd056eaaa41a21e6ad1f19f4b791e5612b71b5d0a1738d

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec365cad86a340a21b22bb5348cfa08fc0bc530d136ddee6ff32c6d1d6720e5e
MD5 ab6b941d306e452698c798b410cddebc
BLAKE2b-256 c4a4ce4cfbf62086fe3be6d976004397a4f28f717958aee45aa180bb9687ee4d

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1b2459ede6cb72be7c25d96d99c17d15ce9d1559ab2b1d7ec5e30241ad5b036
MD5 1136f521d7bc6949883128883819ddb5
BLAKE2b-256 2b763088ee9b741c287ade22aa12f52f3f56b70c2e6fc22ce45c52acf8749dc6

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f6d3b14899ef02792dec27f07b651800c2f513f45d94b7c5e541fc23a0df3bc4
MD5 58ec2545c6c878be19ce6c2c736dde85
BLAKE2b-256 6900ef6c964e16c646ac2f4b846ab2d699a4fd41d10eb258226141aff2d963db

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14b5edea8b98768b89e1178792743880db750ad7d42ba7f9b6245a3cb0ca9e6b
MD5 c0c7c2631b0d7f2b6d24d60ffbde2a54
BLAKE2b-256 18134d00fb35dd3a3caf43fa51a34abcdec91ac5cc34209b6936e2c5d4dc0e07

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f386b23c506ea15cf21dc45c6eb91f97207a74dcdfee076226c921c9673a9a27
MD5 85d7d36cfbb880783ac9606a9a949349
BLAKE2b-256 2c8e982bedabe24f72f79744ded0504af6cc931cae6ecd532933f942bfe3dd74

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: nlpo3-1.3.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 581.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nlpo3-1.3.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b69aed0e1873096d2344dc1f29241ecb5439c5d84c3607dd2a378e4406c6205d
MD5 2832c0a4e8bf5a8d5c0b9aec9dc06800
BLAKE2b-256 6a2208455159f88d953058f3bc2b3b60839aa7211cfc8df6d456ae5b0c8508a0

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: nlpo3-1.3.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 516.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for nlpo3-1.3.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7813fb8a1d532f80ef81a14e0bab72f796d0ce3df3494e6d680130abc80da9d5
MD5 5b357996508d9924933f2acb625246cc
BLAKE2b-256 2304bb8f45e4361c4c6bb13fa9f7d85e966401c5fa6ac4ccc33c15d93710ad10

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9e892c6912489a55f84137d76a7f8616ab4a9a7e02fed65283b35f4c9a8c75c
MD5 737f90a468d7e4b937bf57fadb6f1cf3
BLAKE2b-256 6a8227ad7009ae13c88ccc9b49b8ba56802cd5bacc6a808ac090ea7dcb0e8509

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 481ade6d267935cc2ece0a8b8eea2963839958aaba345db8515d418918a5df06
MD5 6df11126e6d6aa193156b66ac8e0f7de
BLAKE2b-256 7bca05f660e1a56fbce46927115dd402401bc93756102ab4febc76fd93efce89

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1cc820b41108e9d072dc66c1f29bb5dab1e6e686ccd79e55a9fa08e356a0fbd6
MD5 9875a3907653184d6b6908b224668d8f
BLAKE2b-256 82ea4d927052ddf83a11b534c00b50a2d25296d8765ccf60dcb8df5e8f8f061b

See more details on using hashes here.

File details

Details for the file nlpo3-1.3.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for nlpo3-1.3.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8dc18bc7b0519580ffd3a6932975ecf5b1f8be34143ff420ed17497db95b6b2d
MD5 02fc8a862c219e5216c9c27cc5e70d05
BLAKE2b-256 78da8b0d35db1443b2e71e9c9783998b9997f32c9e17ba22c5a68de719ebea95

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