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

Uploaded CPython 3.13Windows x86-64

nexaloid-0.1.31-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

nexaloid-0.1.31-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.31-cp313-cp313-macosx_15_0_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

nexaloid-0.1.31-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

nexaloid-0.1.31-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.31-cp312-cp312-macosx_15_0_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

nexaloid-0.1.31-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

nexaloid-0.1.31-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.31-cp311-cp311-macosx_15_0_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

nexaloid-0.1.31-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

nexaloid-0.1.31-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.31-cp310-cp310-macosx_15_0_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

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

Uploaded CPython 3.10macOS 15.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

nexaloid-0.1.31-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

nexaloid-0.1.31-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.31-cp39-cp39-macosx_15_0_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

nexaloid-0.1.31-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.31-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nexaloid-0.1.31-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.12

File hashes

Hashes for nexaloid-0.1.31-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 122f4435f21f1501f41dbb2d6a71923adfbe144fbfb4d268d1ba55ebbfb4a451
MD5 1c9e2507db62e7564508fa302ee96530
BLAKE2b-256 1c0d0a98861e31f93c646f6d5af6b7dc2b5fcb031dcd23ba1078d1fa7a0180a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3a6032266f7f233a181a07dd946cca05382074171a12b80e8e5c606bc79d0026
MD5 88ef714d18acecc7833b36aef392c1fd
BLAKE2b-256 e83b5b346d4e5a09cb97dc5d4549fcd30c0ac726232ddafa5bf708c474ceb0ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a1dfb51ca6a847ccd38f36ee6ffe21294381ecfb5c4c64eb0c3ec723d34de5b0
MD5 538fe8e8a1924c12ed13de523e711989
BLAKE2b-256 6f364f1e9e8c3eb2404bc0b6d97d6fe97dab70ebf2b44d98f58a23ee2be8c86e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ac2280d6b7a0c391e1bbce4a0a2843e8e2cba80220d7f2289f3060b924183025
MD5 1809d10266f9932bd73cdb8e54f16875
BLAKE2b-256 10a301077f6f926f5243794eec7d77b860e42fe2f604a6d63baf54f20702f17f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 491586159e0542a2be0bc3a8eebea495419495ef05a1318603e0f2fa9ce9a38d
MD5 121405eeabcf0c9f70e647b921ba1f42
BLAKE2b-256 0a88befe7e85ae3b0a273a2cdbebeef91b85b8e0e9596a158d9a2b1045415170

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.31-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.12

File hashes

Hashes for nexaloid-0.1.31-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f93352c60919603728c5d9a13130710ab58913d948b3eba9f49e52322a4996e0
MD5 e6dd1a999fde0a49c24e6844d6170e29
BLAKE2b-256 6db2b82b6d8af698988b7406c42b1a71e045c8f8eb5ee276d2cb0d62b7886338

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 11dcf9ddc013b1034f7ee2ad2cb5d179cbba2d659dd242129c23f93705331ae3
MD5 8a06889ddb1d6074c74ff0f25ccc35e3
BLAKE2b-256 96216ca485dec8398a6e6348a68e256c62988da06b12fafb348ec53763efe07a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 989609c223692c0a20eb1f346e9fe00de53cd3e45178deda8fb39231c110f70f
MD5 217bef964d34ef1ac62b52e0b257377b
BLAKE2b-256 46ae63cd2c0ab19c434be96ce4845cf5a0d45a64cd85c2123e01ca212abcd8e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 5f2d2734147897dfee59ed0ff9174388cb907368c2a925f238cc163646d11bed
MD5 9d76e19c7139ff44941fbb20461f4bd1
BLAKE2b-256 a65b9868b47d3212567a4729b9620971283054f93286834664fc9c0437aa6615

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 473cab5d62ccc0074d30e2056df0df8da61a968091fb486cf9e286d5f94737d6
MD5 d32224af094491d33039af0ff1f05dc2
BLAKE2b-256 40d38a1ae19200f6ce673881dac61b4bc3710ac0f0dc7b838f9826fe42a27672

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.31-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.12

File hashes

Hashes for nexaloid-0.1.31-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 70e3b86714c8b35ba7f48fefe7d82dfb032080be1d0f478e3399aa2f153e3d36
MD5 3ee8cffaca75adb05bfabd5a6bc5f0f2
BLAKE2b-256 152237b70cc12d6e44a084e07f394b65c66ba8d003b61b84a91f65220a0a5992

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ef318ffdc49c41e95fb2649dd0a5b025acad2ae7c438fa0e4e3bfbdb0db9f0b1
MD5 bc0c15dfcfa7aadd2a050acf9020ec99
BLAKE2b-256 bbc3a857d3a7d2ab5cec9da3e21f9955357c302f256752dbbce93d14cccc2861

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 05a5021088cb6763108497ec7fa2f6989a08665bdaf9034fee9766362ea78e33
MD5 a30eeba7d0b9fdc60b90c2ab4011b82a
BLAKE2b-256 e3efdb412d9734b5c56211f50f8343d8f74c213eb303fc449a3bf30cf3245898

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 9ebe6879a98edfc49685cc4fd284351715212be4335125f95d286e6a98138310
MD5 f99fb08ac9f5ed0c470ef0146785157c
BLAKE2b-256 b00bd903addba4d49e3417907125bae4fd7feb2b144aaa31180cec7fa11e2c45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7ff9331cffa91abc0c916244a5631ee4a17d5bbf19ac7f3a13e289bbe0453b5c
MD5 5f0061adcf12aab76f87ac62cd246ef2
BLAKE2b-256 d696a13b4cb8b4193c22eaf0a198235b6c8e7ea60bc8dedd5b5773d6cc7a1630

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.31-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.12

File hashes

Hashes for nexaloid-0.1.31-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 db95c350a22b9129bc2151e7d4741bddb892d3037febb62c2330055e6a74077e
MD5 80d5e5bb742ff4b35bdf0b2e9e8ceefa
BLAKE2b-256 3732a58347f9910254a3614386450f53783b86ccbf3428884c85c91337c26c46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ee6f47ce473e711e7ee8e4e31f6f299fe470b0f89dfc5eec24053eede7587e39
MD5 933f290cf5825b2b6555d32528f2ea15
BLAKE2b-256 688ce5e11d903d8b8640fc3a1e69cdb4d00586acebac2c5c84bd8b6d24702c88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5f292f6dd1f6c4bec82a5ea3fe4166cd875d47604fa50ad1a124d1f6d3c9dbbf
MD5 04bf2e854c3314ec8af2207594ccc65f
BLAKE2b-256 7372e285b18d7a91d6094cc4ee60f10b99a40de6dd814da6a244ca849920febf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 acf7abe1e2948d01945c201d44c935b36c5f35eb33aa190d7eabea1e13660fd3
MD5 f920cdffd5190e66f10f8306d05b1d57
BLAKE2b-256 a5ed2d6659a167eb8c3f7c1a0531193725e3f48f582344f391a16f519b37d524

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 db38d73bc0ee330790cfe9e9f1b482bac1eed2d54195db9e0bac782abc549d71
MD5 411d5c9d485773682ba7e7489ef5b280
BLAKE2b-256 3891d335a00c53d326c2a40bec8efca0d8299de28497b21b40366e1461e2b041

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nexaloid-0.1.31-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.12

File hashes

Hashes for nexaloid-0.1.31-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 69e9500d5d0cb09d173eee1c49ef99f209d91aa578344a7ed1ff1650cc41f9e5
MD5 d42f8e9ceb995dfb6e19029786845987
BLAKE2b-256 0317f2db2539f378921513e7431bdade78234410734546048c40c44d62b76781

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e0f119726888aa51d6d0c007dbba93e9a64dbf687d00ae956ad4ce533834fb94
MD5 56d366127737edaaa23988fb9aa32b8c
BLAKE2b-256 a0c2f5e0e5dbe442babcee02e1974285c4d9be94ba64de7143809458438cddaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e8d97e3ec63143c525b25c3bfbf9db2fd95cc0ebe2a4bd5ae31e60f66806efdb
MD5 6414e07870cf65e33d5798d8af2ec083
BLAKE2b-256 a6190cefd3cf34292409c54b507c8fdb86576f9ad413829bdd35e98937b538af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c1e060f7326f69b480c7d60d997831fbdcae733b275aa00c22fc0625546d48e9
MD5 06397284668b26dee953ea2180c5cd12
BLAKE2b-256 d8f0178dadd3001474b1843d84f926b0e66d1f435ed47d0cd749aa6137c8e843

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nexaloid-0.1.31-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b9b96efb30d1803e57c694549414cfad45080efd3e00769345f8ecd145a3bed9
MD5 c2c7d44d3efdbfd76eff49bb2ae72294
BLAKE2b-256 faf64dc5b2db62afdcdd398674183ca9b4d29e2a9339323bf3166a591b1feca0

See more details on using hashes here.

Provenance

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