Skip to main content

Chinese tokenizer runtime

Project description

nexaloid Python

Python bindings for the Nexaloid Chinese tokenizer.

The wheel bundles the native library and the default dictionary, so normal use does not need a separate dictionary file.

Install

pip install nexaloid

Usage

from nexaloid import Mode, Tokenizer

tokenizer = Tokenizer()

print([token.text for token in tokenizer.tokenize("南京市长江大桥")])
print([token.text for token in tokenizer.tokenize("中国科学院计算技术研究所", Mode.SEARCH)])
print([token.text for token in tokenizer.tokenize("中国科学院计算技术研究所", Mode.RECALL_SEARCH)])

for token in tokenizer.tokenize("昨日中概股集体跌超百分之五", Mode.SEARCH):
    print(token.text, token.source, token.flags)

The default tokenizer uses the packaged data/dict/nexaloid.nxdict. Pass dict_path when you need a custom dictionary:

tokenizer = Tokenizer(dict_path="data/dict/nexaloid.tsv")

Whitespace tokens are filtered by default. Enable jieba-like whitespace retention when needed:

tokenizer = Tokenizer(preserve_whitespace=True)
print(tokenizer.lcut("中文 English\t混排\n第二行"))

Jieba-style API

import nexaloid.compat_jieba as jieba

print(jieba.lcut("我爱北京天安门"))
print(jieba.lcut("小明硕士毕业", HMM=True))
print(list(jieba.cut_for_search("中国科学院计算技术研究所")))

HMM=True loads the bundled BMES HMM plugin and artifact to recover unknown words such as short names and domain terms.

Token Contract

Mode.SEARCH preserves every non-whitespace token on the Accurate path, including single-character and repeated-position tokens, and adds in-boundary Han 2-gram / 3-gram expansions. Mode.RECALL_SEARCH also adds explicit lattice candidates. cut_for_search() keeps search-term behavior by filtering one-character terms and deduplicating text.

Each token exposes the stable source name in source and source-specific metadata in flags. For source == "rule", a nonzero flags value is the custom rule's 1-based JSON array index. Plugin tokens use flags for plugin-defined subtypes.

Development

cd bindings/python
python -m build
cd ../..
$env:PYTHONPATH = "$PWD\bindings\python\src"
python tools\badcase_runner.py
python tools\regression_checks.py

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

nexaloid-0.1.30-cp313-cp313-win_amd64.whl (15.7 MB view details)

Uploaded CPython 3.13Windows x86-64

nexaloid-0.1.30-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

nexaloid-0.1.30-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (15.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

nexaloid-0.1.30-cp313-cp313-macosx_15_0_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

nexaloid-0.1.30-cp313-cp313-macosx_15_0_arm64.whl (15.4 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

nexaloid-0.1.30-cp312-cp312-win_amd64.whl (15.7 MB view details)

Uploaded CPython 3.12Windows x86-64

nexaloid-0.1.30-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

nexaloid-0.1.30-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (15.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

nexaloid-0.1.30-cp312-cp312-macosx_15_0_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

nexaloid-0.1.30-cp312-cp312-macosx_15_0_arm64.whl (15.4 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

nexaloid-0.1.30-cp311-cp311-win_amd64.whl (15.7 MB view details)

Uploaded CPython 3.11Windows x86-64

nexaloid-0.1.30-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

nexaloid-0.1.30-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (15.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

nexaloid-0.1.30-cp311-cp311-macosx_15_0_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

nexaloid-0.1.30-cp311-cp311-macosx_15_0_arm64.whl (15.4 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

nexaloid-0.1.30-cp310-cp310-win_amd64.whl (15.7 MB view details)

Uploaded CPython 3.10Windows x86-64

nexaloid-0.1.30-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

nexaloid-0.1.30-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (15.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

nexaloid-0.1.30-cp310-cp310-macosx_15_0_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

nexaloid-0.1.30-cp310-cp310-macosx_15_0_arm64.whl (15.4 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

nexaloid-0.1.30-cp39-cp39-win_amd64.whl (15.7 MB view details)

Uploaded CPython 3.9Windows x86-64

nexaloid-0.1.30-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

nexaloid-0.1.30-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (15.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

nexaloid-0.1.30-cp39-cp39-macosx_15_0_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

nexaloid-0.1.30-cp39-cp39-macosx_15_0_arm64.whl (15.4 MB view details)

Uploaded CPython 3.9macOS 15.0+ ARM64

File details

Details for the file nexaloid-0.1.30-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nexaloid-0.1.30-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 15.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nexaloid-0.1.30-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0040acba76b4a8294d8bd0d37e000b119ba180bee59e6ab6a0a7e5a5d48a00d9
MD5 b2933a4666001cd2d70592cf117cbf22
BLAKE2b-256 93d02675890268e458ad3e752bd6718ff897e53b141f803a06020f59bee696c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp313-cp313-win_amd64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2997d4a1be8700efe94db6061a309d30fe9f9535c6505f5ea2d99b9328131c75
MD5 9d67a36946864d1b0e8a9985bca9c6e8
BLAKE2b-256 9ade8c972471028d0c8ce487e06692060c059b91da45208f8427048796b15aef

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 bfb101aed5b0eefc8f0726a032c3ebee467a497869ae4aeb298ce1babfbab52e
MD5 5bb6f817232f06aeff01724be6645394
BLAKE2b-256 06ee9ff8ce6572acb2aafe0fcb3723954a6509f2a8d902b465b3d03a4a907fa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 16bec2b7c5ffc9bb55fff47bc8756565371aa920240305dad93945b3c4e4242f
MD5 f4ff39599efb63169a942060fa464d65
BLAKE2b-256 50baf11a0ec73a99d4b78e3a33fecbe82aa8f029b295e44eacd1506616cf458c

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp313-cp313-macosx_15_0_x86_64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 dbaea2dffaa8b561635ba141a192bbadcbd397e17b5a7926ef4480f87d524842
MD5 9284678e204eb03f67b2745acfdc1868
BLAKE2b-256 0e3bb62aac28ebd26324e51a9a7daa1463c3ed94e4f7566dfdebc1a67713c3a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp313-cp313-macosx_15_0_arm64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nexaloid-0.1.30-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 15.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nexaloid-0.1.30-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ddbaf6306fe9acfec3895f4a30fbe25ce94b492f26924372caf4e9716f7424b0
MD5 a59ae96078834d2f75c094d72d5a216d
BLAKE2b-256 230857dae42afd1546e84cb141ad8bb399187a992f2f8d18c234841b753f3167

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp312-cp312-win_amd64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a7513829703172d99a144bdaa7d089745f969314a580f66bc40e9d2de0baa6e8
MD5 12047b7d178234ef263f3ce4c08285bc
BLAKE2b-256 705587996d430b918d59edc3af6c21426a8cb1eebd52aa203b9a9e0eb3c0ec47

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 14b93b6865f67123488ffff7458ba309f359c34de003d2a179fdf252c005e69e
MD5 fb51a237b25fbe1836f6e7a831019c94
BLAKE2b-256 7851e7e7b1fb7818e6ff2d2045c96147f4a1ce98b89d5d170fa64d4d2e73d26e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ff99a0a841cee7ef0d8f1b46d372247d837c3e2bd3bb52c85733f4cff8c65336
MD5 8586f77313f8f8be8aea1efd83bbed12
BLAKE2b-256 6b1146f947cab3c0c309f53a3366a011355c0f645e0f1e17520349bf6a7de8ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp312-cp312-macosx_15_0_x86_64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b57ce5a65a0156ddb7f83a670ef64fe1621a8b50b5cccc43e0423c757eb3e458
MD5 8ef459bfe1c335b2bc3e2f18889e8bd5
BLAKE2b-256 fb8bc60fcd01f32d33230ee626dec0595771d1215ece28146c5de704374bbcc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp312-cp312-macosx_15_0_arm64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: nexaloid-0.1.30-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 15.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nexaloid-0.1.30-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dd56a74c614e96130974734616013f2cfabbbf2e381c5e7f1ff58ffb33a241ee
MD5 2c44f7c095c0c19ea5dfb7be2904cdd5
BLAKE2b-256 a9a3a2efcc2ad0a8993a319da84ff48e4e00a9993b4535281cb39bbc887b8fd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp311-cp311-win_amd64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 453fb0027266d789280c357facae71c9d8d63103523df0dca92355bed76604d3
MD5 04402f03102b533c36be3a8bc9c2e67c
BLAKE2b-256 3ea8e861195b30ea005b6ff116e327738be037d1bf30929bc4b84ede038e4a90

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 27b689ffe6712e1db6cd970d0a46df3a1417ed5577cdbed48651051ba715e7f5
MD5 a023dca895659e165e2f08aa6ed1d821
BLAKE2b-256 9158b4b993326f668e17903b6b1f341e3d84b1b0ad97807d0e28a8fdfbba5cdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e49e59ca956016cea636874eecec4ccbc9e032e7a5773a6c15aa2a81bbb3e2d6
MD5 6b36943390c436dfa2b3b2c990df7c9b
BLAKE2b-256 8b6dcc43da2690bb1cd7a7bfc1dc79919af88706208250d0a554cbc169a6ba70

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp311-cp311-macosx_15_0_x86_64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 fecca51800377ea1b19a9658cc347d97067dbc8a71a881119a512fc5bd914179
MD5 7ad2eca513511c1a563caf3eb1048755
BLAKE2b-256 2a97429c865b5cf34cd35b30e1d592be40a7c403e246cfc3eab2f179e018e586

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp311-cp311-macosx_15_0_arm64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: nexaloid-0.1.30-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 15.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nexaloid-0.1.30-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 367edbcde35192b77ff1251d261bf31b3c60c3675fa39d804203e42b91b15dc7
MD5 173fd5cff263a3e80271287959587482
BLAKE2b-256 78be81cd6992f15f6c4efe675557c2da6e2fc6bad5bbd3e5f7c1170acb3c0532

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp310-cp310-win_amd64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4d1d84e954903bfa944b1268ab1a5e5028e43d42db14801c136e9edccd0379cc
MD5 366d44a967e21b978dac412abbdce79b
BLAKE2b-256 d9f20424c29a0beb08c10e012b997e2054f52af9eec3a392fcb34d55d2677f50

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c5f19644517dc6e81fb4d2629d576e5968447ef9cc8a7b1e0506ccd8f47ac835
MD5 59543a32868571868a87b3ebd8045357
BLAKE2b-256 fdebb0aec29e72d6045c989dea42007d0e19ffba9c05bbc35d8cd20396e5567d

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 31e124ab0539ce214d509df0e434fa6f51b3f16708ef9cf94f49f68f0ce71e54
MD5 0e970da7aad76210c34d35ea0702757d
BLAKE2b-256 6204863e3ddc4e699ef38bf9319a3bfb53ff7f36cc69471dc11bbe91bf39987a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp310-cp310-macosx_15_0_x86_64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 62481d9152d196e6b29d4f63990d151885a3d49328a30bc640bb84cf004ad4e6
MD5 2e34a5d6258de3783fb6a1e0c46962ec
BLAKE2b-256 7b9dc1b645aee78baafd171798b7aafeee51dc275ad5c7dc60d9b94e86b98903

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp310-cp310-macosx_15_0_arm64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: nexaloid-0.1.30-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 15.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nexaloid-0.1.30-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c9336dfcae0a98186ebd858822d136a264beb74514ddaf80126b3e24751c0f31
MD5 64dc68fa33299c177d97d4d5557bb299
BLAKE2b-256 3c4e58784d3d22e9fb05e3481c353419893642638f37ba66e6230275f9f5190a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp39-cp39-win_amd64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9083f31b864042c0fa213f0d2fe3db3106ca5e851bb6298a9ac1251f93b5b187
MD5 245c28ee6636b30ae416c0cb48c6705e
BLAKE2b-256 759fd03cdac57bdba3820bd7f3b6678bc6501547c80a435732df20ac6b4c5576

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 750bf568bea78ba4a7cccdd2b7babb6b591f6b6060a31a0b1ac6437625597050
MD5 715f466bfc562cea87b0c24f6006c16c
BLAKE2b-256 f60f59297b8a62d6c55c9472c6fbc81dae17dbce08cae2deee051c093e705f50

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp39-cp39-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 15e10dcfd40bec8487fb620a78a9809724b5e59375436eb8302ac1b38a244f52
MD5 102a2a83d56906b86b8783dc8ca90061
BLAKE2b-256 6b8870dac4f2917b7b2e5634634ad99ed3eb90943616b4f0cbe646eef44de2b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp39-cp39-macosx_15_0_x86_64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nexaloid-0.1.30-cp39-cp39-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.30-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 59a81fadc0875a93a3c18688a0dd529fecf899bb91924a89ee75dbc569b3cf17
MD5 d394dc11ba493a2e463d64aa6eda30b9
BLAKE2b-256 b7e2584e4dfe6ea4570961642a746ddf7e05c56099961e71cc68c13d5faac53a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.30-cp39-cp39-macosx_15_0_arm64.whl:

Publisher: release.yml on Nexaloid/Nexaloid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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