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

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. Mode.SEARCH is conservative and expands the best path only; Mode.RECALL_SEARCH exposes all candidate edges when you need aggressive recall.

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

Uploaded CPython 3.13Windows x86-64

nexaloid-0.1.23-cp313-cp313-manylinux_2_36_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.36+ x86-64

nexaloid-0.1.23-cp313-cp313-manylinux_2_36_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.36+ ARM64

nexaloid-0.1.23-cp313-cp313-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

nexaloid-0.1.23-cp313-cp313-macosx_15_0_arm64.whl (14.4 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

nexaloid-0.1.23-cp312-cp312-win_amd64.whl (14.5 MB view details)

Uploaded CPython 3.12Windows x86-64

nexaloid-0.1.23-cp312-cp312-manylinux_2_36_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.36+ x86-64

nexaloid-0.1.23-cp312-cp312-manylinux_2_36_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.36+ ARM64

nexaloid-0.1.23-cp312-cp312-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

nexaloid-0.1.23-cp312-cp312-macosx_15_0_arm64.whl (14.4 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

nexaloid-0.1.23-cp311-cp311-win_amd64.whl (14.5 MB view details)

Uploaded CPython 3.11Windows x86-64

nexaloid-0.1.23-cp311-cp311-manylinux_2_36_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.36+ x86-64

nexaloid-0.1.23-cp311-cp311-manylinux_2_36_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.36+ ARM64

nexaloid-0.1.23-cp311-cp311-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

nexaloid-0.1.23-cp311-cp311-macosx_15_0_arm64.whl (14.4 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

nexaloid-0.1.23-cp310-cp310-win_amd64.whl (14.5 MB view details)

Uploaded CPython 3.10Windows x86-64

nexaloid-0.1.23-cp310-cp310-manylinux_2_36_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.36+ x86-64

nexaloid-0.1.23-cp310-cp310-manylinux_2_36_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.36+ ARM64

nexaloid-0.1.23-cp310-cp310-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

nexaloid-0.1.23-cp310-cp310-macosx_15_0_arm64.whl (14.4 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

nexaloid-0.1.23-cp39-cp39-win_amd64.whl (14.5 MB view details)

Uploaded CPython 3.9Windows x86-64

nexaloid-0.1.23-cp39-cp39-manylinux_2_36_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.36+ x86-64

nexaloid-0.1.23-cp39-cp39-manylinux_2_36_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.36+ ARM64

nexaloid-0.1.23-cp39-cp39-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

nexaloid-0.1.23-cp39-cp39-macosx_15_0_arm64.whl (14.4 MB view details)

Uploaded CPython 3.9macOS 15.0+ ARM64

File details

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

File metadata

  • Download URL: nexaloid-0.1.23-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 14.5 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.23-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aeb1ddd0d4212a9ae58d6e75cc99d0ad53fbf8a34a8522cb43b865fe3fa4f527
MD5 6a582ade87f3482a970aa2b3e0083e5e
BLAKE2b-256 d9eaf5c4e24c9c0298dbdfae288c00e980816ab4b911a7f01f4f523c952c6278

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.23-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.23-cp313-cp313-manylinux_2_36_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp313-cp313-manylinux_2_36_x86_64.whl
Algorithm Hash digest
SHA256 2bbcb0b1be85cc07ff6ade5c6460dcd5cd3ff233ea1f180e008e71f380c8382c
MD5 da39ec47c701764d56c172eba38b3b34
BLAKE2b-256 da82f3e8400fe6678f22512906300f785578b89d97d8aa3d4782c62b156b6356

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.23-cp313-cp313-manylinux_2_36_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.23-cp313-cp313-manylinux_2_36_aarch64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp313-cp313-manylinux_2_36_aarch64.whl
Algorithm Hash digest
SHA256 b4631de3f1be09a8cf1536931116046d15c19c1b92acc5d5bfe41dba7f0dc9e8
MD5 796aa7cbb1aaec64b943ac73e31a409d
BLAKE2b-256 5379e4e4b2bc8fd9a442ce00fd54e9618886f86b7f809621739d3ade51717d63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 97b551fc654b89b700653f92050c864c3f23a66259fe7b21d92b2820440ad380
MD5 9ab58dc8e9fa1c79ecf25a56823b3bb2
BLAKE2b-256 8d284a71dce3a65a9c4601160176b39dc22fe64f42dda5a47ec1a6ca82a612a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 ccbacac9ac3a518a3b5b05ecb916350fe79acc9b27ba7077f7b84b4e293597d9
MD5 cac8209abc6ede4a23d51b4cdcce25e1
BLAKE2b-256 a092265ffae70dcf914641a5ca5d0b298d679f66530fd3f84a285d28c02cb8c6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.23-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 14.5 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.23-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bb5a0ecf8f36c4575922645b30e87bb4a2854b04e5d4e18a64082c5dfaf6b9a0
MD5 59b3a8abcd7742ff3f9b73de7eb372c6
BLAKE2b-256 b7920aae0e7e3dee996a38c229adbbd17312f700901523eb926568cdd7257512

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.23-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.23-cp312-cp312-manylinux_2_36_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp312-cp312-manylinux_2_36_x86_64.whl
Algorithm Hash digest
SHA256 51a6cac1cd838f849ca3ce81846f3c565abfea93eb0c9545931bd5ee63b8c50b
MD5 0909d3c7f9ec53ab26a6eb9034f5b0ce
BLAKE2b-256 69e7d35410b423a32f4508fc7f3bc5bbcbbff02041e90d98a75be4407886d093

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.23-cp312-cp312-manylinux_2_36_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.23-cp312-cp312-manylinux_2_36_aarch64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp312-cp312-manylinux_2_36_aarch64.whl
Algorithm Hash digest
SHA256 3465b0a524a37e565c32c68c8f4a36907f3a43680aa1b5a35ffb2a607388daf9
MD5 6922c58ceccd1fb59d8859c826f2bf21
BLAKE2b-256 8d17b1b0fc5ee885f375c35d60376271bdfe4d04a24bd1d26ad0783b619ccde8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c21cd74e34022168aced4faabd8bcd490cf0315efc934b1c425d3d070e66c8e4
MD5 e7a8e106de78cf3318e0b942a0e3871b
BLAKE2b-256 b9e1fb98e70bafeef77b971b846c195ee1a2a75f34a92e1905267dcbc97f9f83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b9a3f20c4fca56cb565a15aae44e0d6ff5a4158d4e88449c40e1301e21ef46ca
MD5 ccc0e9f7fbe5030ec265e12469bc67bd
BLAKE2b-256 50367e603623ec4489b063bdc4fa20403ef696545030d8b3ebf025d5f6e204a0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.23-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 14.5 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.23-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f4789dfed73fefc849070b0de972d3576851162f5eef2f38825328ff1d58cbeb
MD5 fb081ffeb24ba171f878b9e945d31c9d
BLAKE2b-256 21df97f1aa1260975a83f14163cd61ddc2a582dbc5d3c3137cf29f1cec0db1b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.23-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.23-cp311-cp311-manylinux_2_36_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp311-cp311-manylinux_2_36_x86_64.whl
Algorithm Hash digest
SHA256 2ff358b567fdbf1dce8e56fe0bc9f1980eb549b929b4c30725086f12aaf288e8
MD5 04396e69951daa7376105242274a2ea4
BLAKE2b-256 0f526bd060e0cf7cd9b4a7679793fda924ed6c8759de9f4377b9f1bba980bfb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.23-cp311-cp311-manylinux_2_36_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.23-cp311-cp311-manylinux_2_36_aarch64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp311-cp311-manylinux_2_36_aarch64.whl
Algorithm Hash digest
SHA256 dc515cc67a3c8e6d685ecf87d8b92c013e0f72993f5356160e2b283178613923
MD5 84765abc697b20808f1aad5b6aebb503
BLAKE2b-256 446231e0a41709a84ea015a6225974a5f37acd336bc22e609e43245f41ac71eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 5cd01cb22f09717b32601d9d8eebf0dbf0ebbeda44adc27d564bf31359d3c260
MD5 fe9509b9bddee8c4093699d1da01b522
BLAKE2b-256 dfa67ccbc9450ea23ccbdb7df770b881cebacb1c9b11ea88fec31cc330e59fcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 55ec8d3aec5989263ff670840c436829c68403d26d7c2e30d86111fd7b9f6f9d
MD5 3a91f87cb43a5a69057aa0f915f5994f
BLAKE2b-256 6c6a512f3c9fd39dcaced448578dc8bb6232913a7d873ee9e4b25e6fbaf0c221

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.23-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 14.5 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.23-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3df5887ce70a96fbfe94357a7d4b6c7ae886b0ba2195d8f8a7ec2a2faa61acdf
MD5 7404a35c5bc1684f77f59184e63c6491
BLAKE2b-256 b17a078a2df20d991a7797ac47156f02e8b48d729b4b6412fba263b9d2891890

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.23-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.23-cp310-cp310-manylinux_2_36_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp310-cp310-manylinux_2_36_x86_64.whl
Algorithm Hash digest
SHA256 8165394617f8a263777a1d2356654beb265d63abc8e86d0c0ba9ccf16ff93f54
MD5 9ebf22960c50a9a98f0d818f14aa2d97
BLAKE2b-256 834581cc33000a6931e0e3c08f4f3d577ee387e5fb93ee317e0d42ae08d96576

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.23-cp310-cp310-manylinux_2_36_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.23-cp310-cp310-manylinux_2_36_aarch64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp310-cp310-manylinux_2_36_aarch64.whl
Algorithm Hash digest
SHA256 f745b42f30c87871fef87fcb4bcfa9e792742bd043bf8c8e580e7e57a90c3df9
MD5 8fff24f26e34386e31e81a04ac283c37
BLAKE2b-256 fbf2bcbe053983ca228f0b560af15c49e275727daa4e47e45cfb7b69db7d4a47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c348130494c7b0361eba6bfad87de40cc2b61d0c1c08d9709abb045cde43ebdf
MD5 fff0096b0cb0794177474d6fccfeb05e
BLAKE2b-256 848f08843453456276edae3e84ea6f508be49b060578315e964a471b0dbb969a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7ae090dd4e341e6ddfec01c998eef203b9b472c8ed918bdaa54c96b1302b2522
MD5 b805101785893e31fb974debd793db5b
BLAKE2b-256 b743a089c8c17d649d4ba0eecd6be45539e8e8dcb2a49e9b0031c51d76427ee4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.23-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 14.5 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.23-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 217d253c8dce4c4b7891bfcdea3dbe2a00392c2eaa20f09d7d5adecf8622729a
MD5 f1fa9dad85181f967a5d49d5d6929316
BLAKE2b-256 777b4378fbdd1916fd78a2bd517305a54b1c0ac2a63661d0fc0b56712968fc6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.23-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.23-cp39-cp39-manylinux_2_36_x86_64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp39-cp39-manylinux_2_36_x86_64.whl
Algorithm Hash digest
SHA256 901ed861e30e13b0853c07f14d01c7c2efb19f90935d6e0b8d175651c4b690d7
MD5 7bbb97feaabadd6b02c5255af7c41785
BLAKE2b-256 d7eb9a3a885923cb440eb771a4adbab4af6f0bcb8b23e7503c89afd1a8689083

See more details on using hashes here.

Provenance

The following attestation bundles were made for nexaloid-0.1.23-cp39-cp39-manylinux_2_36_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.23-cp39-cp39-manylinux_2_36_aarch64.whl.

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp39-cp39-manylinux_2_36_aarch64.whl
Algorithm Hash digest
SHA256 e2506d8f2e22c5bbbcaefc4049e31be1fab6d254e65a6c63b58e4bd2f3239b6a
MD5 49bbf92dbe6871b0d327369cc9d35ac6
BLAKE2b-256 2a75c11b2da355fc5755b7050965e87e6036cb71e316707b33d5462e8c1b2c05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 3c33b134d5749a13327d92f29c26b96ca2941049ac9d787d035054e4b5185cdf
MD5 5a6a29b7fabe0033815e5a8bb9f21556
BLAKE2b-256 28fba971ff7578869e2230c5ef14b19c436b274aebe18721bc86c374b0210228

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.23-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 903eefc0cb775bb6ee32c6abc103762d85e01c034cf9d13a09eb5a62012a360d
MD5 6eb57b6e642dc50e4e4d890943587742
BLAKE2b-256 6e5aa978495c4458d40804b31e15452fa080e483182741b017ccfd7814998703

See more details on using hashes here.

Provenance

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