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")

Domain dictionaries use a restricted identifier rather than a path. domain must match [A-Za-z0-9_-]{1,64} and the resolved dictionary must remain below NEXALOID_DOMAIN_DICT_DIR.

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.

Threading and lifecycle

A Tokenizer serializes all native calls on that instance, including tokenization, mutation, plugin loading, and close(). close() is idempotent, waits for the current call to return, and later operations raise NexaloidError. Use separate instances when application-level parallelism is required.

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

Uploaded CPython 3.13Windows x86-64

nexaloid-0.1.34-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

nexaloid-0.1.34-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (15.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

nexaloid-0.1.34-cp313-cp313-macosx_15_0_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

nexaloid-0.1.34-cp313-cp313-macosx_15_0_arm64.whl (15.5 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

nexaloid-0.1.34-cp312-cp312-win_amd64.whl (15.8 MB view details)

Uploaded CPython 3.12Windows x86-64

nexaloid-0.1.34-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

nexaloid-0.1.34-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (15.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

nexaloid-0.1.34-cp312-cp312-macosx_15_0_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

nexaloid-0.1.34-cp312-cp312-macosx_15_0_arm64.whl (15.5 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

nexaloid-0.1.34-cp311-cp311-win_amd64.whl (15.8 MB view details)

Uploaded CPython 3.11Windows x86-64

nexaloid-0.1.34-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

nexaloid-0.1.34-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (15.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

nexaloid-0.1.34-cp311-cp311-macosx_15_0_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

nexaloid-0.1.34-cp311-cp311-macosx_15_0_arm64.whl (15.5 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

nexaloid-0.1.34-cp310-cp310-win_amd64.whl (15.8 MB view details)

Uploaded CPython 3.10Windows x86-64

nexaloid-0.1.34-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

nexaloid-0.1.34-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (15.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

nexaloid-0.1.34-cp310-cp310-macosx_15_0_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

nexaloid-0.1.34-cp310-cp310-macosx_15_0_arm64.whl (15.5 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

nexaloid-0.1.34-cp39-cp39-win_amd64.whl (15.8 MB view details)

Uploaded CPython 3.9Windows x86-64

nexaloid-0.1.34-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

nexaloid-0.1.34-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (15.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

nexaloid-0.1.34-cp39-cp39-macosx_15_0_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

nexaloid-0.1.34-cp39-cp39-macosx_15_0_arm64.whl (15.5 MB view details)

Uploaded CPython 3.9macOS 15.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for nexaloid-0.1.34-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b95e07c517dbba2663cb3fa6f27ea90bb19da91d274bf1f00db20f82e89bf04f
MD5 b5e00bee6a8171a77db11d09ddf3d1fb
BLAKE2b-256 1208e88fbde978b671df65c143ffda5b3e0e609a4e9028fd8ab5cbde1801366c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 efff166f6ba4959249ca8e2055a15a180be4c4b61dcede745a83831cec6ad7fc
MD5 6c0939d2b47875560909d74df39afe83
BLAKE2b-256 89cecdcaa35dfc809497cbbf4e2401e0c36ef6f475b73ede86d18c22c94ede7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2133b4c5178adecd797bfebde670cd106d61b8f7cc3cad00183dbc1f28139d8b
MD5 529d306d20e16105fd890eb1ecaeb0a1
BLAKE2b-256 98edc1337f7c3970958921c8f296307de2d8e857a51c71b0f89e5804d74522ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 8edf0b1f59d093fa63751ea5783e9e2fd3e169ff468b36d37e8de40327576bb0
MD5 18423a9e85b4b1d28ec5a6aceccb8edd
BLAKE2b-256 b8311403a29acac96fd9ef4d620bdcf34bcf9b518130f2a6b1577f0881074ef6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d8ae36f9e0848f2fc623c40a2aad75159c1f9b9b72ce0c812a88feac6a908204
MD5 0d67edebb313cbbba6ab169dab05fd96
BLAKE2b-256 0aee8a414333c0484193e314ebe502ac86848b9691183c061512e07c0a5ef40c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for nexaloid-0.1.34-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a0105862e556f6bfc12a5eac23a6c9712c1f2fa057e86dc9023872d42448f588
MD5 7996998b8ec92fc8c07130b28fce05a3
BLAKE2b-256 2a5fccead575d1963eeb174ec8ac00425b07b69af7c92b505b33fc06a69285dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5080235f411bf2107f59662005165315da7f5d6149512a31c7ad280252bb333c
MD5 8da644833b4b0c7ec93380725873c459
BLAKE2b-256 82e1e750b94e570114fddb65135f199f41587d9dfb4136a3b8e75253b0f7320a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 99fc08ded565760bbd9d8642534fbac2f063edad6e2099af0395491addd8a45e
MD5 4393045d9a69967f7b578296564db758
BLAKE2b-256 9632d932325aaa18af8959db25e06b29ab023c8592a0a93bf08836245eb32a06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e92f308e9a6e53affbafc23b69c08a4af10300285907778b1032e0e0bac148f3
MD5 2df2f86b8e0f18c93249e652cc2e981b
BLAKE2b-256 4104944dc4baa6ab11c91f8d3d0e713067049581a341fdb23f38b1bfa3b5daaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1f1721d923996ac7f737bf65045076b9e8df48ef678ff39849ff907fd2a09b0d
MD5 af5e7419aa64fa90ea6a6bae39ee4e46
BLAKE2b-256 d559fb7fb0c7b85dad4ccd78dfb91a4d6dfe8a79b7725cc1b3799ac2f4561244

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for nexaloid-0.1.34-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b7bc44179b62022f156ef909bce33b3215d1286a2d0add154d91e86841d9547a
MD5 a25120094b2f9784b459fc8d25440422
BLAKE2b-256 9d044af6ce7973aecee5883b2d57e87a54e2c647aa2f7b2554ea6e97c74fa7d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 10de45a6393125269ecc2b83bbd245bc344eca2d41aeedfad63f0175a8b85566
MD5 d9db263e8f16a27e967f4ad0f05980dd
BLAKE2b-256 f7f922fb7d87c49cf42469f5416ba5c0930ab455394223c17e3222dcee5a7fe4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b4ac2e7d5e304d24826ec325c707a0a478f4717199cb579fccde631b0bf8012e
MD5 2356a6f0242ccb43fe13b5141fd4c476
BLAKE2b-256 cd4816af59727686b5de6d969f8c92e29b8e2c3ab571abedb886737df2067058

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 13caaea4bdcd8634171196fb408bfd797927f32a5f1d0f6ea2ce5571503b6d99
MD5 1be1069ae3db7a1215f93328639d2682
BLAKE2b-256 cb3c5c1f1206050531798ce89e2af46e8d3fedea416b4fab36b89b67a70215e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 44643439f60be05f5d4753e58246f2ffdb276d0aed586891ce5c730723e72548
MD5 f3030df44eafc91dfea52b7f3c10bb21
BLAKE2b-256 2249e2df62bc446f349d4aa2d290f887d9dc709573abb9eb135e7a40c49a808a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for nexaloid-0.1.34-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b5cc8eabedc5c518d62938520cae908f9eb94d9bad2411d145481627182ed963
MD5 dbe93d80372ce1668429c6014bc6fec3
BLAKE2b-256 1bdcf8433b2ca4eae237e6a18d8d58263bdebbd40042087a9c1f8019e36bdbc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 325b4562e0bdcc37988f17513049dcce606459f6c606c6df9c6b465064369ba8
MD5 8ab0916bd68289cbdb9bd638684238df
BLAKE2b-256 e974a65df4a37fb101bdb07aad76754dd6f4855750e4e326335e7041ee60aba9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 fc6b971a8126479645c2ad6e17f8d61dfad2766f4929154638e62bc19d729643
MD5 5b82bccd73a0ee691dc0d8bb74714090
BLAKE2b-256 24b0808e57c545647413aa60f2ffc846104059affef5ea346e454f4f5a1f177c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d1081e1dad835d6ee03d443b066854be5e306e12494362bb4b66b2a703d5daa1
MD5 b5e739c2c87ce3b29c4ae78708b269aa
BLAKE2b-256 6d1a4bfa09c32f54e7def6aeeb530a19e05426970bbbd7a46729d9295c2ec609

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 cb9ad5117df81c810cde44c399618438ee53d42f859b96ed106cd21172405d5e
MD5 07fde316871ac22774fd6ee1280eadf9
BLAKE2b-256 80f93a05d0115fc4319e2a21aa0de956db20af25e1115e5ca22e9da573277cb0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for nexaloid-0.1.34-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 963925a5ca6702c01554c6069661c3d3e76f9473a2d4e32b0dce386394c6dc9f
MD5 b04b10b90aac68dc799313d383f242d0
BLAKE2b-256 5412d26d8b19ffe4a7d9fcdfc29a4ab0a69a5ec37a76155bebcebb24c3ea3792

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d928944deeb3fa08fc656544b0c431b243e94cfe8db42fe19c315fc91fc78c32
MD5 c45acb239a715ce333f020881e6959e6
BLAKE2b-256 03c66860810ede140732d67c654aab911ed229f8ab2a385ddea520f73472bce2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7705062e35adf9507136ccc232b28f6cd05f932886f26bd53ca9dff0724fc664
MD5 e2c88ac1f86192020e701ceba9b0cba8
BLAKE2b-256 1eeac5dcf10090d0eb50a3f7a19045b6af192b9da56dbadd9e2a378bd9f3a3a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 cae095acd2586eb39af278d5b7e6e3da72f78ae9f0f702cb0ecce998dd97d70f
MD5 cccf3cd300771bc959284523d2d9bbbe
BLAKE2b-256 b1ba69324af5cb2aa905d9f6e5b9bc7126fdf1097e5314bce004ecfcd13216db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.34-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d1a4e915db7b3d3c484f0d375201d673c96c44ef9666d0b3c63fa3bfa3064ca5
MD5 86064c5f7ec3fe17d3d779ef04f0aea7
BLAKE2b-256 ea800ed4638d5cb74ce246c7379c57889ff6c67f30822ad1517e554b4a7150a8

See more details on using hashes here.

Provenance

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