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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 15.0+ x86-64

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

Uploaded CPython 3.10macOS 15.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 15.0+ x86-64

nexaloid-0.1.28-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.28-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nexaloid-0.1.28-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.28-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f71da5e259f4723d7497784ad390375d677c4456f3661bdc3e816d3602bb87a1
MD5 94532f85f878b98a72fc388f2bdc3af0
BLAKE2b-256 2fd4f47e2fc3d0174a70cf47b6778ed5454bb1e58907920851c7f257992ccb0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 097538efa17a18e4b034aa12b0338d4f379a19c053d4c873e11544b748ea04c3
MD5 809ec198432ac4a3cd3e7fb81cc4a0ae
BLAKE2b-256 d061d594a7f71998b2bf9955932762c4a52731ff5acdc70d6cc236e094515e52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5d5738062a1be5e0479b50a262fbbc79455adebc2faaae0a936e821b65872fdc
MD5 ca074e0a1877d62eefa530ea4afaba6c
BLAKE2b-256 f14c305b3ee090d6a231b9380e3e2c2e15261c6807d294ec6bb9e3df5a67c387

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e925a49ac2b9a4e22bf9c1970909e64cb932bb8e0ef4fdcd5ed82ed39c84bf23
MD5 baeadf1ee0101295f375a6f28d5f7163
BLAKE2b-256 1cd2eff77477bdb1bb4809dfd740913d4e466be513ad951e5d75c26764d638f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 38e1d7fc0fe0a6cda9762c127debc3d8ad4a25c59d8ef20d57dc15aa9d83f5bc
MD5 f7269b1888db03a15963a878f2b3d51a
BLAKE2b-256 a55afcaf49797fc2628c2aa37a302af72095d8a3292ce129a721d9ec7d780345

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.28-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.28-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b5a04aec65fa86f5b9c5c9c3af74811307fe642e5b425c12b104a9b1050c3277
MD5 17acee5e7fabccdfaeacccec25c16cad
BLAKE2b-256 044e1a2adcdb3f99191fe910e7869b46a8581428b1d1d6fdb346e18d35c5edb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 368b200560943d6c2e7439557743af7635ad3ee02ae2f92eb6b4ebbfc307e486
MD5 f6be8b5bec0bc401bf3b416dd561c907
BLAKE2b-256 88b805b86f30c6f841e117b87b0086b37b43fddb6b615084517cb45c3825d811

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 96cbc24e20792e00a4adaecbd298f73843973d98d27df142f40acd82b5a303bd
MD5 75fc628f7c2179392ec22372f025821b
BLAKE2b-256 181f3db83df3b8703022b87fd6c3883f7f59b61e60c7b30c62389bcedbcfc059

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1228cff344d7fa18958cb59d7e7df0b1aadafc8ad3d36bf4b257a396ac05b400
MD5 48be4b52d5ce5b8c7fe093b6ebb5857a
BLAKE2b-256 2a1e1432f875bb0fadc0bf4950ce38341f6ba8ddc07f933ef0d52195993224a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1fe0360d8e71eb4b611c62936b5a592f1797e26f7c8db73593bfbb24fd3e66a6
MD5 6495f74a30bc6a102859c150a399bfed
BLAKE2b-256 078217d0712899d705999e2eba18c0a50cd4b976b1874fdcdbcc63b6e61418b7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.28-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.28-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2acbba13622cebabf598d6f2d8c74f5ca0a2baef6fdabd23abe40f5c7fd956c7
MD5 adf19a44efef93bc1b9a04ff07bf88ff
BLAKE2b-256 5d8904e4ee43a6625604dbfbbddb14a328b507fadf637e882857827399297ee1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b90c4045d1187f636abef5aa472d3aac4e2948892618155707bd2677b0af709d
MD5 6a7222b9541bd53578d2195a648aece8
BLAKE2b-256 9c0476dbaed0e483364f086bcd9d23ddf7ed9420be8805c329695fc46c7a0d81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7ef65d3619f7a7c84ab3903a6c6d455ecc44034a1068d1125ecfd4c5c3212f67
MD5 c6d26e5e29d10e66a6123731f99ab7f5
BLAKE2b-256 0485dd28d16b6e0a80da04fe37a70cc04b76e224b0c89516a2725183b633f44f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 5b7122c4132fb3c38dad7100a9d4d553a0e5e741e94d4b1789a21f61eaa75391
MD5 263c6f2a6f4330399c2ddc5971bfcdf5
BLAKE2b-256 b44d5c029f9e2ab2d9f0acaf59fc46a450694ef9653a1e11dea1f14b1d38483e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 0777f83edb93109c1aea19705e8739174f44348497fa6de660487239c884f424
MD5 50003d96c7dfc6d59ca42e8b69667e0a
BLAKE2b-256 996c14a1b822c4367324a145c0dfbe2830a58b1138b2cd69f6b4322f45de55c8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.28-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.28-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 11e8bc08f7c11cfe603c23197c3f568b0395c386c8cec5cf18b1d812afe2b54a
MD5 f5a895a247232d36293b9bee7578721d
BLAKE2b-256 42f51765ffbf43747aa53175c9e2cf34011e9dabe0e04c20a52cfacd9622d2c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 af0fa95df38b1a5c05ffd61ed7382c8954466dc7b4497ddcd719f842522a63eb
MD5 1ef27649e96ed000c48fe1b2550945aa
BLAKE2b-256 aeab2dcd7e680a70175c04e460909193240af1eb59e418e0e1876cb7a30f7b8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2f96a5a0299cf9ae39134cea521353f9f1a3043e9dc04feb3a88a8e3df0a1efd
MD5 cae68bce30c27d04663d4f49178b725a
BLAKE2b-256 412c2c0e319450a623ab4172e54f09ae9db651841c5c013b39a76be85c0d690c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 9023b4d87d8ddab67ceba37d239f11170a4c544b0a428396315cbb4893197942
MD5 c40f0b9aad9e5973cfa3915429ff265f
BLAKE2b-256 5e9a1d7c3d0403636e0f135665b64e99457beb16141aa4af4aced284fd684d1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 68c2b7a575c76246d38700dd81818fc20d6c32396a15145b50a68df001c2179b
MD5 8ff053366c6e4cf81ecad992f082cad0
BLAKE2b-256 96cf3236564f8cfc1b73c54b81e4781871e4d0c8f8ac39b60492d51ee5ed282b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.28-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.28-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b9139719d6a19b2016878511bce2b422470a1ae29891380b4e289c5d79b0bd6a
MD5 89d4d319014ca8a43a113a33ee17df3f
BLAKE2b-256 a7f870aae9a7cc7cc80cd6a8e6ad795b1cd82ba2cc8d70d0ae81b8fa6cae969e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ee6984baf0675542a421ea7bf9c667fce3f9a163c680406f2a5f98b86932fe81
MD5 12880a3fd6dfab085a4e412d8b55db14
BLAKE2b-256 6053bce488798670feb6b6ee9f0626702f3e01d323631d5b1de4348a8494b96e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f1107761c1db2cab1ca4df85053a7ca4df60c934dd083329190634f748fea8dd
MD5 aee9b3eb96595340916a92fc4e2a6b52
BLAKE2b-256 a0d82fc7b17499eeb2ffda0dffeeee4979e85fe24c2791ba732fe1de64001db0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 101a00f2747f23505d6edd5094a029f66aed3ed4b2af7c4dc531a0deb3bdf99c
MD5 2375e63f673c864363fd800a3a10d3d9
BLAKE2b-256 5c7acfc717cb9852d6c8dc063ae81ce43b74f332908229969184e76a940dc0e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.28-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 6c7a87caf8c6f4d6be816a93ac73e3bd596056c34f1bb651289f814484ad2fc7
MD5 9f98393de64629aef401ee6c2133f081
BLAKE2b-256 518b91b8b7078fa9c56cb697f4b59969e329d0711fa95eecd7ce5f4b46136707

See more details on using hashes here.

Provenance

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