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.26-cp313-cp313-win_amd64.whl (15.7 MB view details)

Uploaded CPython 3.13Windows x86-64

nexaloid-0.1.26-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.26-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.26-cp313-cp313-macosx_15_0_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

nexaloid-0.1.26-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.26-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.26-cp312-cp312-macosx_15_0_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

nexaloid-0.1.26-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.26-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.26-cp311-cp311-macosx_15_0_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

nexaloid-0.1.26-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.26-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.26-cp310-cp310-macosx_15_0_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

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

Uploaded CPython 3.10macOS 15.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

nexaloid-0.1.26-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.26-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.26-cp39-cp39-macosx_15_0_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

nexaloid-0.1.26-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.26-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nexaloid-0.1.26-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.26-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1e3dbb8417ca90af5949b631381e771ff9e79892631fc4015271745517c7943e
MD5 d78f4491155f749fd3811671953d8577
BLAKE2b-256 70b6391638e4474228779cc7ffc27a3f9d1f6e2b0fe4d66ac3316c6e7f990a77

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 59c620fde1fb3d7a6a225b860191216b51372582ea53c8931158483bfa4c0b80
MD5 6ffaa55b6eb01a142e7459abeda10e32
BLAKE2b-256 37799db99125fe40fa77ea8b06d3d5af701febe77f57b26bc9670b7894fa4b20

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 874931d060261f26e89eb6357e9cd7e3c3ae6ef1c1a89a7ef8937057f27dd543
MD5 5fc135d7158d897be6fbabedddf6a6a5
BLAKE2b-256 a12dc9ad4d551b7acc78f934254994ffb9689e67a321ad8e59723a56b53b6c2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6ee26ed858b5d67f1960bff0f8f23e0f3ab9044cc409cdfaefa1e2fa56fa6c52
MD5 075eafa9eb33a25b9e6323ca623c5b36
BLAKE2b-256 9debefef2ef1de48c02dc9809d232f7f2feea4390f25f7a4c4d52d3910c095b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7e1e7e99eb3115d5cbcdcbe575fd057b2bce332b00cc4b3bd270addf7bc7ffd5
MD5 c0cceef0812d74822da505a0f4496afe
BLAKE2b-256 7ff2806fea0dee3b4d0a039bd58d25b723984dc115c4648c400c47efd88fe9c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nexaloid-0.1.26-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.26-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 457a0efdc8688adc9a51d1607a68b6a43b2ea65b8e4e5a862ce92aba64ebf495
MD5 d6e2fcb60dcdb594df8d6b3eed47c909
BLAKE2b-256 506d13504dd8c1fce11e47fab56332aa8eb644602bd4f3d454bb9b5470573706

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1472d86f324fdcfd0b68c277a25843cb6802f3a4ac5acad3259fec228c5a680a
MD5 df3760d138dd7ef38b44c61aefca0c45
BLAKE2b-256 848d7b70b09fc4082a974660238c05e93bcfc68aa4cb443897ec7ac85ea458b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4f35b4f047042691b23e1e33ef88f8ad814f9fa1ec6135b0acb2ede465b78196
MD5 c0f5f601e76eb8d928aac67affc5a19a
BLAKE2b-256 89f2542f9b930fcb24b4da9f440a279758c3fb5ad9f20c1c4c18b9eb4df42d05

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 53c7b463950aa95a545c8852d032b9b9c402971267adf2dbb8ad8c26a35bc715
MD5 50ae7c4fbc9749c7a73a586c537feaff
BLAKE2b-256 77a557d3ad3fd833cd56227087602b36c29121f7f0e3d11a928397caf6a57b64

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d25fc3e108f8031bb0f8ad54c77b2c8bc42796ab2e1ef1039f5dc6d3fbcc08cd
MD5 7559b3ad11617a1c792dfd49f939d9ad
BLAKE2b-256 1f8075586a106deb2d9bff32dcf858d51faa5ddeadeb5e448d296226b1278f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: nexaloid-0.1.26-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.26-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dfc04d4a865966fc29da99f7bb0f7f29c648429c49738bbd3016e867df31b3b5
MD5 ac9f6de8b937b79f417065f3cb19c5e9
BLAKE2b-256 9ec0b783294d1fd608d74790fb5599ff1e7a6b2e903bae7b98adfe345b78d044

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 61cfe0bbe407949777c149936a9ef5633cfcdb545cb734488923d19041da758c
MD5 08fac50f5bbf20f8d931453ef14cd3d6
BLAKE2b-256 182cb16a94372636c945953cc6d39e7fcf3bb2c3fbc2501d2416202c01eb7453

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 de4a12d476b6c019c6fe0bc8bc7ee64193a9f4c6d1fa3ece854fe93831991e41
MD5 d1148cda1416da226bbf63bdb2fcb5cd
BLAKE2b-256 6a37d4cc441aa8263adc57bdfd032683dbf793e76973ecc970fccf5c9b0bd334

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ceecfdeb00b1d087bd7ad9e92f7186b28b68236bb2ad70e2986c1eb54907ca57
MD5 add94b35dcc91356cb4127a0ecb58969
BLAKE2b-256 64e4d0f00b4a32cf5cd058e744dbf1dcfd07063ea8ed31972dd96069fa4e0198

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 38def446b7b8724f1f36ab62137a0d8f3228d1a2bfd2933945c3ad64389e27b2
MD5 7bba33aae032dd4be569fb923b10ad11
BLAKE2b-256 9e27e3377ee4ebc55b81dd52a95a8898ade39af7156cbb6c01ea2d349a75cb27

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: nexaloid-0.1.26-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.26-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 85ff70d8ca517bcae195e0bdff4d45add5fdbe479027cdd4e3900ed3e16003b5
MD5 26272c1325b0e0b149d048e0eeea3ccf
BLAKE2b-256 958b1e9b3a2c347ec7d09f25b06afd693dcf7e28e02619a6012b5d4b5fc543c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 bef0460d667ea227166fb67ca16cd18d2d51ab9c94b82f8482d96938c285e9ea
MD5 f2409179144ccac6ff0eabe055be4ad7
BLAKE2b-256 b626e9edfb0d56ad53abf223e23f68f9c19d66a80bb8f90afb1333c94fa985e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 76f3760635e4822d5dbfd2089520486367ad78ed52356836452817d5d6f5a9e2
MD5 7a82705439fcf0e0c1c4d248d4a7b5b4
BLAKE2b-256 5f039d1cc915083974132a16e93851f177a3ab6bc22e5abc34c6b3a691180046

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f181809e469e65c41f86f910483290efdb864aa7c4a8a400ff75bf64011d5132
MD5 7e549ea23f6ffa00c02df700e9b9f2ff
BLAKE2b-256 7aceca604a22093c8955073f40077a57ea2d7365ce4f53c1dd88693728449c24

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 aa47f08118e1dac1a9f4f50da1dc610ce210389f683343147bca8129ddfbe191
MD5 20e32552786d0205cc7167458a1a2958
BLAKE2b-256 9a8045c156652adf895bf8b2b0f09eaa52da50ea69f1c7b2664f2f37522f33f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: nexaloid-0.1.26-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.26-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1384f754ab0b0fdba24651c62590e10457e15e397dda7977d1a86c63b5db7179
MD5 177067bb3abb63cc759418447deac759
BLAKE2b-256 60b844cb27536a69b66dda75d596c9dd519f04fc62c76f2c82b53256f78ab4d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 65f20d9598a45a1b48c886295124f34af7791b6f1f109ed1a467b95a76222628
MD5 bef89e4bdb04a7483ea3cd51e42db614
BLAKE2b-256 b8ad6e89707dbbbabc3b0ab9b19c93a8e21694778b8a170d1c7aee5dea0776a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 22f80d07aad40e8bfd63634dce242600f97c48a3732e4090ff86a9dc19fd9ebe
MD5 208fdb2e69e79a9435ba67365c1c3553
BLAKE2b-256 a43171e55ef479699cad4ceeaebe98c2514177f19c4fc8b1a843516e961e5f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp39-cp39-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 67b07fea029338cd3199650bc6fd82f0348f0d0c8a5a4974d18b98ea354fea2f
MD5 400528a334e27d045c86a9bec260a452
BLAKE2b-256 41f8d6c9d97d56b87f61a02f931953bb11b9a256b7bfad3a4043d2c2cfaa837b

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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.26-cp39-cp39-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.26-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 2cda95a867f6f4f4cf7602e040bcb98626af6ecf3e8b968fcbd3d69cbd422622
MD5 599e95fe6944044a7a857e9c596eb515
BLAKE2b-256 4179898b738ed916d969f4347ca8cc3ec3f4714ac726f76095fbfb6d7f112932

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.26-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