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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 15.0+ x86-64

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

Uploaded CPython 3.10macOS 15.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 15.0+ x86-64

nexaloid-0.1.29-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.29-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nexaloid-0.1.29-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.29-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6264466cdc79896c7c5d13958e8af15f8ee4eb759c67e3ea36faf935075895d7
MD5 29ec2807c4b4da6b2ed53ad205dd18f1
BLAKE2b-256 e615d8a24f64d5360087c5a418bcce68a19098f3289931c0f85da910af0d3e64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f28c5a755c6bfddce9e0c4ea623d3dfc494e83a86f8de3fa54eb78002691912e
MD5 df8b3ee4237913a52ac42995f8972110
BLAKE2b-256 7bb40d955aee65cd78e4e15bf90325550d9b7d10283d4af24450569d52cead3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ea5f429e734fac742818c79189b591ba853c1e8e087f431f1564b35ae9402a62
MD5 425371893b07b328c49caa2a5ea65fcf
BLAKE2b-256 387b0438d85be879d4133079592e5de918e7759b2d82d8fbfb78b0cef95573d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 4c7347e6d87986d8c9ed9904132d23b947303ba24dbdbd5bde1797593af4d928
MD5 6c235805a14d90db7240fa4249795b18
BLAKE2b-256 27164940037eb46c4a3535685b42aaccff2a42189061ee4f39ecaa6e4f272d5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 dffe01cfbb7969e698cf527f11adc26a3305439a30ea86e92ba87971b0a6bbd6
MD5 6afb56efbfbddc42f7ec73b80a98fd60
BLAKE2b-256 eb233d09b015ade85f0c8be64a9afb2ad1cf46012719f7a1bf3af6cc39003508

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.29-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.29-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ca6fe45612fb535d6c46e19834709badf97db4e2313e11a19d4a6996908a9c45
MD5 e8e3785098c2e27e28fde496d23075f1
BLAKE2b-256 3e6e7d9edf85b883a52520f3cbcb011ab0c529884d1cb72730fb1da830c7aedc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a59ca900b9d5277eecd24fd4a5972ed555b1137888cc931baec1c66ed2997189
MD5 5c24fa5e9b105d2ac68e4f035753b917
BLAKE2b-256 7dbe10456abc589537b5e758821827f288395cf341a484bb39299b296289fabd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 af8b1102433a467860a50f66c94ffa84dcd326aa559c53a20ceffe1a6b83acdc
MD5 cce24db8009c386dd854328dbec5c41b
BLAKE2b-256 b518ec264ceda1966bbeaf8f4d91750208bd23b30a8034af7628f71c652f6a14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 643108788788cd79e32619377ec5b4652d5bed82b716e7b50a708eee78553a82
MD5 075e7861963ee3d7f2f96df078405ccf
BLAKE2b-256 b41b4c1b11448c52ad26b9f07b8d587d65d83d6322751acc138212909ff819f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 26374e25d774003aaa768a82f82c1b1ea5a4a4a3c71a54c9cf78ef97e48376fa
MD5 9d81a3b73d7dd5da8e6e8b52a00c69d0
BLAKE2b-256 fbcde6db5589c02c400e63dd9c763c941b7420ccb232c57a3e4ab5113e180612

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.29-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.29-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7ec15294ed452ebfcd791fa61d1b6ccff3a390880382f00c0136994e6bfe980a
MD5 df53f0973e17cf4257e9b9e856412670
BLAKE2b-256 da1820ac95d1f3f73c40e87f4389fa3c7a443d1c107e00a00d3d33eb113517b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e55baddebf47343e30f3eab2490f1512d089175c60d24227486f2a31ff00ac6c
MD5 fe1ce7c168ef700519196cb15ab9b7d9
BLAKE2b-256 be260cbb36f7536def30d051e8acd1b7fb22b997691df6486068b41a91388e54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3b007a23e499ac74444b337128b472b768bad92e156e484ee968900dca307cca
MD5 ea818a9c475099e348d25eea62b8e4b1
BLAKE2b-256 dcfb6d149dac8eeda3ddb6c41b9c416e8a568a17d93825cff00414021dd8be9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ab452dc75b962df13b3829df5ee8ad62ad786dcdbf0ad956e02f93cdcace0ada
MD5 25275f5803ad6035a10b356a40f76397
BLAKE2b-256 56ab348983300b8ba3d3f6c197122234ffe822fedce824bccee45951e099a7ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 637953557cc484fa69e73686c02500c9a7b722de07b0043901d86742841f0b4a
MD5 db135e8ae93b4fd6fab798e94dd4ed1a
BLAKE2b-256 2ab871b74995ef2867c2b202a9708f4035195bd0f752b06e6fb796d3bcb9c812

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.29-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.29-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 164fddaeefbc846bb92157f2448d731a6755827bff4a321abffc625572a49a31
MD5 9152f80566413a5e1c748f72e647b74b
BLAKE2b-256 27ca67c432f04bcd395c3d2ec52be1057f2206a8e71fecd22e4152d01aeef47d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b1bdb78758cf443ca92bc8f205daea932d5a45609b0d5e353b8167704a7b962f
MD5 d929bb2645bcb7a04cfc3877af0a3177
BLAKE2b-256 f374247f42374458670eaf503334a360c64c05626a64162553fa2e3bbfad2960

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6acdf04227a91897773b4a4c97d3bd749ee8357455ca019d3db0ac7f999ecb84
MD5 6c383171cdbe7b1c91d87e442122b11f
BLAKE2b-256 92e8f7b88bb452a0f4e609da4ec4dd8b05e6d68784209580df8b03af6d9f3d79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1211a581c386a1af0b6d3471ff87a16028700b9d7e5c2568275b5f15aff3ea4b
MD5 21256b88c5b9b273613fbe05cf093b65
BLAKE2b-256 0f4a4d40a6b07191092dee65ae7163d17c3c0715136f873a039a0f3c3278a133

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b8e51552639c36925ec99132b6ff8fe3771a85db4b7ecdfd6aef325ff6eef3b0
MD5 f57521af570a910dc5eee7ae0b1b7d41
BLAKE2b-256 04319ba2d20a75e1c768291f0ebce5ae41dbcacf471dd47e04d63415bb351202

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.29-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.29-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bdf0f95dc58fe99ca822551e2686219dd33dce926c150a4c4d230be966b84b8a
MD5 1820efd98a9fe7d0bc271e460b81bd6b
BLAKE2b-256 fab09fdd85371e3ebe4b0608be5704aa67c2fef316dec3be02093240c6120226

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b839af478e880bed60d7b4b4e49070d173268e2be933cd0fecff737d6882930f
MD5 4972eac00c92f22f43b4bab046f4cdbe
BLAKE2b-256 c79c67daea30eada7088513a071cba9391c6afb752085db07d3b64a82dc8559e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 1d47d7d2ed624c40c947cb9cfc03b75cc8e67413fa9a0f856fd5937304454581
MD5 30c14e0004a5b93f477cfc40aa24163c
BLAKE2b-256 d19d73e4d28c6c14ca10469c43f8d49bc89552d5b755f0edb08078a26eef367c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2738ea89258d87c794fb34539b33e8534f6eaba68ae467b295caf52b2833200a
MD5 5de635e506eb7c02eef294fbf3c9a7c8
BLAKE2b-256 d40bc58a6ece57d97e21b5fe88b7f24c30dfc747329135d38d85f2442451e6a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.29-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 ca224b5648ff4cce5844c74701e204c993a5abd235f695db5c4767327101e137
MD5 c0ffcb9f6034918eb7097d74eda5b180
BLAKE2b-256 27f6ff2a23398b1157a9d80e7617a36de59b204de8581a3480ab3e0b042e9c80

See more details on using hashes here.

Provenance

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