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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 15.0+ x86-64

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

Uploaded CPython 3.10macOS 15.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 15.0+ x86-64

nexaloid-0.1.27-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.27-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nexaloid-0.1.27-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.27-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 47aa2ecbbd849028d993dacd772005e92430d1cb016e1bde89c25cb9f51eec31
MD5 de08f5ca0788133b393c544a7401bc59
BLAKE2b-256 1f30d0f781d2ac978807742f465308c2193abb20fedb860c944d21afa70bf312

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a11699f0e6a9e7d96c85c070ba91eb8f4736f7b0e36b720782b14a05597de2eb
MD5 1bfa10842810e32844f9b124d5f2e255
BLAKE2b-256 5306a175b8bbc2ab30045412049737bcf020f43871bba77de2722854a4f502a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b07ad3e96e7a8fcb8cfb0d99b3b815f6982f2283f9cb85ed083f2a79dea91817
MD5 a7e52704175004fe107a48730de287b1
BLAKE2b-256 628dfb3c1878bcf06290e8db29df5edb52d5a44947a510dde8f385c3c2b7da84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 9e85a7262dc732e7a3b749c1bb10db34cefd2be9fef0c374687f32efd489015d
MD5 eca79ce8a4ff9a3874b5e86e69ff1691
BLAKE2b-256 b632440a09445a0d0211662a0b210728718e2b725167b57053d84df32e6178b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b05ef9a2e968a8ad78fc6a8305c5b4a1a268fd386dc68521dc86f43610755746
MD5 8b89afd765128e6757a2674c053179c2
BLAKE2b-256 7dc0cd2f3c30099d313bf6d5bcb5c41aaf4b3ff5c1aa349835c6863ab814963f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.27-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.27-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 52cb558e0b72be36420dfa19317cb39c89b6d1207a91fd785b229d2b5354b95d
MD5 ccdc248fba517831c39d9cb35c4eace2
BLAKE2b-256 29fc7a7450c1bdcec51255e199cfad434559c696b071e44d06cc056580f0b114

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3c5d131f18cd9742f5c3a4740795f3a7dbd18c2bf0214fcea0bd6a9dfd72d2dd
MD5 d9d0e1ffd382f5bfea65dcd6253ffee3
BLAKE2b-256 964de7f2aae60040f8c00eb886fe0b5ffa62a52190b99ce1a30df5e0e6c36741

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 699a84b943065d9da9ab7252491770db311a1c8fbcadfebe100fe8df840e6440
MD5 54c565a5772546db8219a762fec05ab3
BLAKE2b-256 22ec0370586c65900610a7ce38673ad9af2e69e45b605f3232ce6bac2d722e00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2a368a85c688efca0fef8201b5b0da07a499934ceb707e09b6500e5887545d98
MD5 b0399528ec7f21f3bb238caecb70104c
BLAKE2b-256 1c98661a16fc94f3756aec7a57a9e50965d22f073ca3e0435c3b925c8c8e5e39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 9c458e5e97738d6ccc906cc81f01066b7ab96ff461aa2103d5a2fa711fd75015
MD5 66a3f8d47ffb79505c6ab93380fe0708
BLAKE2b-256 77e499b13bb98a1cd29f53e2edf45f23301c61b4683da8ab211b4dfba17da64f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.27-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.27-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 52a142133c7925e8eae8f18a4d6e3e21129a14d008868a44fe79875efdb87287
MD5 3acbff018917ec877f543ab1259be923
BLAKE2b-256 db69ce8ac18cf5d2e4486a3cd04c23565ca56360285155f3c5d7d8abd5022288

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 228f5887fad5807f044d46b80042cccfefb89dc70f8f11bfdb885e05c0333ba8
MD5 4568b149b927cc229fa7eb39d88fdf30
BLAKE2b-256 e0b0d27162ef87e168acabc44ceb4a19b11dc6aa7ede6bfa512ec631185d3563

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4f013c8890a4e67ffacc7cf70a0e13f13bfdedeae96368e299cb033c7a16fab4
MD5 8f706faaae6c1a4e2724b31fa997cc31
BLAKE2b-256 41f049667ba6545fcd9241bb6b40b6d8b20b0a66c55514bf89e5f62ec861df29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 8fbce52a73b665fa75a7fb3a7665f947114e4620e977633bcdfb0b7b4591374b
MD5 b7df2d8d2f5730bda380c4078eb07e92
BLAKE2b-256 98cd7f123ef9162d1956026af133cd87c0dae330452bc41ef0c6fd90ba0838d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 57f4fb2022c0b82a078cc47711ddcfb50fc4e05f59ae8c46ec2c241de2948ccf
MD5 334326ca7f3e2e5b712575ce8a06e7fa
BLAKE2b-256 e0d0ed2d7af209caf308b60070b25d40fad750260edd5b44e6f8d2a9018bcd16

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.27-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.27-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 35ccefeab98cf6decf39b6709a0466ba3ead2ee82a07737075521dea27690b7c
MD5 411728bf9fde8d790d7cfac048e1a714
BLAKE2b-256 70b0dd5f32a490183c1f5151df0208916a6f2e75e71c65e159a6ef096cb25b26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a67b5a4dc9d239521e3844c70844c56e871dd265ad0abeee38e9f98d9c110193
MD5 7f6c6f1c3ee8b2f217ec45e9d166166d
BLAKE2b-256 4fd99e9c1e454681d3ec4d09b42d19889e335b86436544b6715a07fca42e0c07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5ad31a790e0a2dd9f00a152f85d02cc9c1a50f8bc252c227f8b454b4ebc531e6
MD5 8fdf45220faeb5db2d51e9c54c4607ce
BLAKE2b-256 6380a378641b114923d1d506c44dcaf5299df7cc6b47db94726a229e57c4a370

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c92469f17c062f9307e5305afae4c0d8878a4da6bf1b06efca1f17a4549be866
MD5 39386ad4436a8991eb24cd1cc9491e46
BLAKE2b-256 5fc9f195e96ff2150e7fbc4e664c483188781ba8084494a8c4cadb29d907ee46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 5306f70cfd3d990587a4c21132c56b3c3597bb0cb091ad758b20fac7996c4c10
MD5 c163e290fb17b11dab952a7f8a446a78
BLAKE2b-256 beb8ce9afcb7ab2530658e161585acd876cd9d1b7784b32819ad7321fda63a8d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.27-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.27-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6817394129f9056ac6a528e6957cd17d86353292d185bc8abcd14307c2216af7
MD5 64e80d444203ce133356707bd1863df8
BLAKE2b-256 63e5875905ec87a8bbaccd349bf47166dad4e1ec6402ab19824db839d939b1a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c214623ec5719aff7a46cdadff80dc1a1bfd544b3a13465df538b9c55d00c20c
MD5 aaf5febdea8ae92231d3c1c52c00292a
BLAKE2b-256 b89b8532bcc05e947104e74352b32e0d1ac9c9d0061a3582d9d2d686898e901a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 eea39d36db1c8af99d2f036e1dfc0b74757a8fedf363c992118a6b678bf7ebba
MD5 f503aea8398fd0b361266c5a835a64ca
BLAKE2b-256 b6ee0760e4290aecd22a50a25bf787837bf81f35c415f8f3e902e95ecfdebc35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1bdb6414e19574a701d9edc9dd04e134c3ecf9f5171db0ced48989a269aeaecc
MD5 b772b389b2694fe2b9ca70dccf7e6076
BLAKE2b-256 e75e88ade5914cc5e6a97a4bd57d598ffcd3bb3be758b33f4589a8bfb4bb79d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.27-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 2d40c2dfa9952a87bafd74f4aa4794447a9eb46c8f78672adffdbebcc4fba96e
MD5 22ab5e5e654035bddb636f4b53ac881a
BLAKE2b-256 e063eb372a82a5168ef38ae569c431bc521dfdd5df45b31477e97ac4e6f11ab4

See more details on using hashes here.

Provenance

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