Skip to main content

Modernized fork of jieba_fast, with python 3.9+ support and Rust speedups.

Project description

jieba-next

PyPI version PyPI - Python Version GitHub Actions Workflow Status PyPI - Downloads License

jieba-nextjieba_fast 的一个现代化分支,旨在提供对 Python 3.9+ 的支持,并利用 Rust 进行了代码优化和加速。

jieba_fast 本身是经典中文分词库 jieba 的一个 CPython 加速版本。本项目在 jieba_fast 的基础上,更新了构建系统,并用 Rust (via PyO3) 重新实现了部分核心算法,进一步提升了性能,解决了内存泄漏问题,并提升了可维护性。

项目特点

  • 现代化:支持 Python 3.9 及更高版本,不再支持 Python 2。
  • 性能:利用 Rust (via PyO3) 重新实现了生成 DAG(有向无环图)、计算最优路径以及 Viterbi 算法,以提升分词速度。
  • 兼容性:力求与原版 jiebajieba_fast 的分词结果保持一致。
  • 易于安装:使用现代化的构建工具,提供多平台的预编译二进制包(wheels),简化安装过程。
  • 易于使用:可以作为 jieba 的直接替代品,只需 import jieba_next as jieba

当前状态

本项目目前处于早期开发阶段:

  • 已完成基础功能测试,可以正确执行分词任务。
  • 与原 jieba_fast 仓库的分词结果具有一致性。
  • 性能进一步领先于原 jieba_fast 仓库,后续将持续进行优化。
  • 测试覆盖尚不完整,欢迎贡献测试用例。

安装

对于大多数常见平台,您可以直接通过 pip 从 PyPI 安装:

pip install jieba-next

如果安装过程中遇到问题,可以尝试安装 Rust 工具链:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

您也可以从源码安装(需要 Rust 工具链):

git clone https://github.com/mxcoras/jieba-next.git
cd jieba-next
pip install .

使用示例

可以像使用 jiebajieba_fast 一样使用 jieba-next

import jieba_next as jieba

text = "在输出层后再增加CRF层,加强了文本间信息的相关性,针对序列标注问题,每个句子的每个词都有一个标注结果,对句子中第i个词进行高维特征的抽取,通过学习特征到标注结果的映射,可以得到特征到任意标签的概率,通过这些概率,得到最优序列结果"

print("-".join(jieba.lcut(text, HMM=True)))
print('-'.join(jieba.lcut(text, HMM=False)))

输出:

在-输出-层后-再-增加-CRF-层-,-加强-了-文本-间-信息-的-相关性-,-针对-序列-标注-问题-,-每个-句子-的-每个-词-都-有-一个-标注-结果-,-对-句子-中-第-i-个-词-进行-高维-特征-的-抽取-,-通过-学习-特征-到-标注-结果-的-映射-,-可以-得到-特征-到-任意-标签-的-概率-,-通过-这些-概率-,-得到-最优-序列-结果
在-输出-层-后-再-增加-CRF-层-,-加强-了-文本-间-信息-的-相关性-,-针对-序列-标注-问题-,-每个-句子-的-每个-词-都-有-一个-标注-结果-,-对-句子-中-第-i-个-词-进行-高维-特征-的-抽取-,-通过-学习-特征-到-标注-结果-的-映射-,-可以-得到-特征-到-任意-标签-的-概率-,-通过-这些-概率-,-得到-最优-序列-结果

算法

  • 基于前缀词典实现高效的词图扫描,生成句子中汉字所有可能成词情况所构成的有向无环图 (DAG)。
  • 采用动态规划查找最大概率路径, 找出基于词频的最大切分组合。
  • 对于未登录词,采用了基于汉字成词能力的 HMM 模型,并使用了 Viterbi 算法。

鸣谢

"结巴"中文分词原作者: SunJunyi
jieba_fast 仓库作者: deepcs233

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jieba_next-1.0.0rc1.tar.gz (5.2 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

jieba_next-1.0.0rc1-cp314-cp314-win_amd64.whl (5.6 MB view details)

Uploaded CPython 3.14Windows x86-64

jieba_next-1.0.0rc1-cp314-cp314-win32.whl (5.6 MB view details)

Uploaded CPython 3.14Windows x86

jieba_next-1.0.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

jieba_next-1.0.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

jieba_next-1.0.0rc1-cp314-cp314-manylinux_2_28_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

jieba_next-1.0.0rc1-cp314-cp314-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

jieba_next-1.0.0rc1-cp314-cp314-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

jieba_next-1.0.0rc1-cp314-cp314-macosx_10_15_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

jieba_next-1.0.0rc1-cp313-cp313-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.13Windows x86-64

jieba_next-1.0.0rc1-cp313-cp313-win32.whl (5.5 MB view details)

Uploaded CPython 3.13Windows x86

jieba_next-1.0.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

jieba_next-1.0.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

jieba_next-1.0.0rc1-cp313-cp313-manylinux_2_28_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

jieba_next-1.0.0rc1-cp313-cp313-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

jieba_next-1.0.0rc1-cp313-cp313-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

jieba_next-1.0.0rc1-cp313-cp313-macosx_10_13_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

jieba_next-1.0.0rc1-cp312-cp312-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.12Windows x86-64

jieba_next-1.0.0rc1-cp312-cp312-win32.whl (5.5 MB view details)

Uploaded CPython 3.12Windows x86

jieba_next-1.0.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

jieba_next-1.0.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

jieba_next-1.0.0rc1-cp312-cp312-manylinux_2_28_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

jieba_next-1.0.0rc1-cp312-cp312-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

jieba_next-1.0.0rc1-cp312-cp312-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

jieba_next-1.0.0rc1-cp312-cp312-macosx_10_13_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

jieba_next-1.0.0rc1-cp311-cp311-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.11Windows x86-64

jieba_next-1.0.0rc1-cp311-cp311-win32.whl (5.5 MB view details)

Uploaded CPython 3.11Windows x86

jieba_next-1.0.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

jieba_next-1.0.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

jieba_next-1.0.0rc1-cp311-cp311-manylinux_2_28_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

jieba_next-1.0.0rc1-cp311-cp311-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

jieba_next-1.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

jieba_next-1.0.0rc1-cp311-cp311-macosx_10_12_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

jieba_next-1.0.0rc1-cp310-cp310-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.10Windows x86-64

jieba_next-1.0.0rc1-cp310-cp310-win32.whl (5.5 MB view details)

Uploaded CPython 3.10Windows x86

jieba_next-1.0.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

jieba_next-1.0.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

jieba_next-1.0.0rc1-cp310-cp310-manylinux_2_28_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

jieba_next-1.0.0rc1-cp310-cp310-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

jieba_next-1.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

jieba_next-1.0.0rc1-cp310-cp310-macosx_10_12_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

jieba_next-1.0.0rc1-cp39-cp39-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.9Windows x86-64

jieba_next-1.0.0rc1-cp39-cp39-win32.whl (5.5 MB view details)

Uploaded CPython 3.9Windows x86

jieba_next-1.0.0rc1-cp39-cp39-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

jieba_next-1.0.0rc1-cp39-cp39-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

jieba_next-1.0.0rc1-cp39-cp39-manylinux_2_28_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

jieba_next-1.0.0rc1-cp39-cp39-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

jieba_next-1.0.0rc1-cp39-cp39-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

jieba_next-1.0.0rc1-cp39-cp39-macosx_10_12_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file jieba_next-1.0.0rc1.tar.gz.

File metadata

  • Download URL: jieba_next-1.0.0rc1.tar.gz
  • Upload date:
  • Size: 5.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for jieba_next-1.0.0rc1.tar.gz
Algorithm Hash digest
SHA256 71d33d4f84f7fa826da3806501bf19ac3e496432d71f75fd4a9c5f1c656c67b3
MD5 db9ac04e5e9a5d1e753c5cecf91034d8
BLAKE2b-256 abc782c88518395aa78116d3502362aa2a36399b9a5578583912ec1e17a72822

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1.tar.gz:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c68d4f88d0f80fa9e308b4622bb0709bf13f72b682bfb5cfef22d686fcd3eb43
MD5 c11e819f46123976686d619f440d9683
BLAKE2b-256 fbd7375588648fb96ff422328ed88cfedb5b0a596091af706c0f718a70e3ec15

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp314-cp314-win_amd64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp314-cp314-win32.whl.

File metadata

  • Download URL: jieba_next-1.0.0rc1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for jieba_next-1.0.0rc1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3d184147995f81bf15ac86455eb88aa53608ec17323c78049c535d7e076759b0
MD5 8f272b4784571fe35393586dd60df5e5
BLAKE2b-256 83be8a78c8a0dcc39516cbfde3bded55881acc7601f14ef4931d157a499c2d79

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp314-cp314-win32.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0eee6de104a57e3a6fa0ea561e4f78417a4a69b642e87efb60fdc5af280a3eed
MD5 05dd33982e3cc4b8092795444d321763
BLAKE2b-256 1a3408cc521fc7e1f821e6da327ae8ea054f95fc2e0d03c36932443a64e45a33

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3839ec61ad0f07a7642fd7b3a9d94f7fb41e9c992e0dc481960dba954941191f
MD5 528f05da0434fa626f6b2f0bf09c2365
BLAKE2b-256 c30f6ca56202662aafbf3acb7ddce82268c0d160b20d28067d46b06f24c292de

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db6ff42dcd0f047d7f0559d44c58700e4ffa28d2ba065dcd8ab5e47a3188ebfc
MD5 ae1903ddd46162ccf2432600222f8128
BLAKE2b-256 b95dd45fdaf3637ad1af0b952fffcb80530892eae17d56abeeab6648af91875a

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f058836f5f5fefd4e9d3efeb832b25a986a65eae4e625cde3247d0a829ea00c
MD5 dfcd0047585dde764d3f071c863ba189
BLAKE2b-256 0d57f3d81885da74448590cbdd0085ecbfab0ade9ef7f43a589a78d429c5145a

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6813bfb8b34cc6867980d508a4ffab9203104f56e82b426be1eb9666a9b82e5f
MD5 40880f9f3cf2bd2e0b52f82fbb8b6c60
BLAKE2b-256 4a1da60bc999423c2334dd199d6add0ae7f37a59ef81def6879886934de5bddf

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c1349360f4a18c4a63578db8b8f531b90ed169e11309554b87696a41b42e96d0
MD5 c7751e0ffc232b24eee74e951961cd17
BLAKE2b-256 af6214d4de2a8e1c80f700f1e4bae8a908e4aeaca37e0c1585a1d2a6e57073b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b1c17015a32b98b107717dc9756be769e6eae49d9e0dce5f57977ae2214e5cb9
MD5 5f714d9d10a26b6fee15954f766a4f58
BLAKE2b-256 7c4952868b41777a2aeaf62d74f1c9b5eca48c69dcbcb85fe572d569120678b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp313-cp313-win_amd64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp313-cp313-win32.whl.

File metadata

  • Download URL: jieba_next-1.0.0rc1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for jieba_next-1.0.0rc1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b1172e71d4b4e1a7e0d47db08ac516a8fea9bbdac39643eb91db7f6a4c790eeb
MD5 df1f38adf94cf5138cdec12e3f4b2e5b
BLAKE2b-256 cd10caba528928e012a140f4d45e8d7e3e7385e5853d9abb844640c796c51261

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp313-cp313-win32.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 037b847b87d18e08ac57626858bf5314ad7ddb3734bdfdc6e5817e803953c37d
MD5 d10cf5cae0e2bf7c6a8e9aea41401ada
BLAKE2b-256 b9d6fe3334c2b18ff68306b1119e6a153bb4152fa9cda4086947a342ab0c793f

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3689b2d380ff760c5b5494e76dcea0217068988d7bcd0ac295f1f78f8bccf4b3
MD5 a7f655a84b5a48ad6ce6d12e85f904c9
BLAKE2b-256 b693763e495b68520ad1d46b445765b6f4b15fba3d60ebcaeb0682eb803587ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 903d516c4d9634b041c758f9f3bdc4a8523df8a0180a577beed8244681f640e7
MD5 d521d2328d1a34302518cc92e53bb1f1
BLAKE2b-256 ad9be4bfcd70ac0387d4e0ce5822a5296ae21f2dcf3783fefb3834e08a4c6c1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 17ba329c2598048c83434c95d0728319752c4bb550739a47b7531fc9d466f0c2
MD5 1a594a2cf235479eb8f949612a34788d
BLAKE2b-256 7edf0974019a3cdec02d118a23f178b37142bab4b146adcbda9898613bd20c74

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 829eeff659c9d4ae0d86d2372acc37139ec315b87d9461507da1f01ef6da16a1
MD5 e7c10be077989578c1aaa47fe4022f85
BLAKE2b-256 9f15537df7084839ed6cd47a663eb5714cb8c8dac86ff418dc588f020b88f26b

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 81fc2afe6c33f69eb3b0cd95e40c3ab1292ab47352d0a2e564920c84988299f0
MD5 1e3b913d78502a53479e22d45bee540e
BLAKE2b-256 18368c4711b607dfe53fe67ce4df34d0f51eb8db8d1a345c6589c26e6db4f2e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 03e62e2962915b8d9015b707cd2b5a99c7311dda7f145e259246f7d2b928ae32
MD5 6bfd935f5ef731c4c7268f715e54093c
BLAKE2b-256 26d06aef3fc7fab6b9afb6428bd7b3a01f2cf6bca09e423edee57e0581853c0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp312-cp312-win_amd64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp312-cp312-win32.whl.

File metadata

  • Download URL: jieba_next-1.0.0rc1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for jieba_next-1.0.0rc1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f3b5904b65e2bb753e22fec0d6866984b46fe42d13d61a45e9f466f6badf6b9e
MD5 de07901375266e5b43841ecb74411d43
BLAKE2b-256 0ac82b0d60a2b55faee27a4b4502adb7179de47e028b05cba2b8cc04be02178d

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp312-cp312-win32.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16d58ce133fbe0f7ecea564c3e6bebc1230c01c88b642c2fb2a3388665cbbd0c
MD5 71958f0aac419c9ec33e5b99e0f99226
BLAKE2b-256 3751a05cbc6a7638d924ab9a23f42c4fd326e044c35ebf0d655c353ebd7c443a

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c2e4d863df43607ca4fc451563b5e121de8be105188533118276a7eb8fa519c
MD5 df8d1f1b7f2931d709f339fd2c2676fc
BLAKE2b-256 8d837e02d08b6f69cfc4985f23a4ab7b8212286b38e29d41bc1c83a51438d64e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8bd69607b57993607fd9e7aa20b6d76796c87abf063f2d6131dda0f5832644e3
MD5 704b872fc3a53796251907f1b27feedd
BLAKE2b-256 3c89a397dd20d89030654d9298bdb299be6bf4ede5f34f035c916e0aeffd9be8

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1d48d6552fd6d67f283eb535576f3c8a8ac08700e0b156d94f65820f4281e6cd
MD5 b23c187845089882666b957dab8b5a63
BLAKE2b-256 fbae1ac3aa9e15ec0dd5dce38f9c3d2f77ac10fc0db9f2a762e46b0493f45432

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4286a9b444ecaef144867fd1cf5f4267f1527ede5f5ade92737c7d91d2c5bcf
MD5 b657bcad36c29c5c9443475ee9ae26c9
BLAKE2b-256 587619acf0b716120b1bcbec91f922aa53617f9031e82a48995d29aa0f0499f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7722efae99f4ad153366300827e1b2ca53f0bd58c211ef9dfcb4e9bae739c0a6
MD5 92c40e46b4be2715e74b4bfb130aba00
BLAKE2b-256 49bf228b2882d68e8429d84b5df5e8de69d632a279c861391c07171a4b2323f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ed73f3deb657106bac53fd8d97cb572bb341da9cc79f4f199a3af05aa6412b81
MD5 aa1ac9da640c0dea9c996b1c5edff674
BLAKE2b-256 3966fba753f6822e1fd9766ce525691ed80da6994e1210ca66cdc08bd181094e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp311-cp311-win_amd64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp311-cp311-win32.whl.

File metadata

  • Download URL: jieba_next-1.0.0rc1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for jieba_next-1.0.0rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c201ba4da3205b4d605e899539d76512b34c370d721c1b6cce2f7b23d1e7a9d1
MD5 8c1e8e537d61b61c2b7cbcf8526711ab
BLAKE2b-256 c0e7c89a37e459e83cd1c7f227f17b231cb22ca50135d7d6c32724250e0d0605

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp311-cp311-win32.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9073f6a5869197153d4868d9e756cc3802e004a006296532bce19af8c656c6ea
MD5 a2710e6face30258d1ed37252175e853
BLAKE2b-256 df46d25e102fe4dedce2a1aab86579dba8b71baf19ee8a44d89d803eafbfb553

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da3ef0ce2e3d10748e0c2465d28eadbfcf60ae43b90a43ec698c1c7f58d208d1
MD5 59e8c542801be612c62f550660106d64
BLAKE2b-256 71b44a91fe237b96c82762e9411d20a0ac11a69734ec96cd6519d731bb2afd64

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8789e5ea6f1a8608b1e91395a0d97cedea51c1d6b5c817e8e0894ee237cec260
MD5 b2e6a5f8bb16c3c96748eb5555aa2c10
BLAKE2b-256 e565df879b7bd43893c862ad9dcda09b3bf4d5c83e3b7bbf18ddd37fb8ede0fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2cbdf74eed7e8fe9fb90f903fd33606bd1715f858d29e9e89aefefdf4810896c
MD5 c99657d8b145374e6025bbd7fc36bb59
BLAKE2b-256 a16b165eddce8257ac88b0a52fc263d0afbb675268e18760ab3df523077bea33

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc57719dba3ef646d4ebb01ef8c1b2569e45eb0cb56fc8dd3f53c85f8e1f53cf
MD5 04d5a0121acbe50a1714fe789ff7c431
BLAKE2b-256 cc643072809f221cfa059ecc4b88340880f39ac8563c770e13be9679a382cedc

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 294b994dee37746daf1aba7a84be6677a4e7d4dce6651a51d5516216b5231650
MD5 90c2944588efe4dae316b8a3358b9020
BLAKE2b-256 de44627de7c64a97ecd070893d480325e7aebabd8cd2c082e067c8d53d2fbfcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 30229e82bc5ddb5affac0eba968c39c6bb304c98112cd303e645360b25ba4e29
MD5 388950752ac04213b171f6c8721d8307
BLAKE2b-256 d51d2658d4cd7777314c4ab1059a1479db7421f2a7ba6a2d11da38487a852f06

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp310-cp310-win_amd64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp310-cp310-win32.whl.

File metadata

  • Download URL: jieba_next-1.0.0rc1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for jieba_next-1.0.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 af0b85d555a724620bbc1a5d6b6eca6b261d0015090566cd62ad426a8531a146
MD5 506a5d0e1fc56bbb1bc358d6088b1fcb
BLAKE2b-256 3fa673dc5b004ca0cb963078dc87197e28755b349780c6c6e89fbf0dea7caaff

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp310-cp310-win32.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ec1a69c57fd8b2c51dac9acfdaac642c768461c4091422b76e0ea5685900ff9
MD5 2d7e65201a7bef86b84c7177aed67bf2
BLAKE2b-256 1d33576c17c75b483c3eba3ee713fe6d9acc2b8423f81a56897f9396d39b5300

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b58f1e6a4ee369bb5e133d11ae0b2f9bc2e0ed7bd212173773454ebae2c9bb5
MD5 7c1602546b7e8a00274b9541ebee60f0
BLAKE2b-256 6901de5125b31e98d5975caabd5b6009be03df74e732480603b9baa7ff4912ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2dd23ddb730d0eb65fdb513abf68f62276426933449b7ad494115a515ac1799c
MD5 1537d3988bffd64958bea8a56a821dbd
BLAKE2b-256 586aee57662ece014b40a19ca6e652992f5c421b9b82e82bc4e4266a8868bb4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 46dbb33efa55585d317792f1f08be953fc5b04854580c1e224003d0da578f3c7
MD5 33320b3d89c9bdfe18db145ad3019842
BLAKE2b-256 a678ef53096a940b319b1839cd84d41b3e79db97c5ed5f8c925721d785eae373

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d1694969a3572dd8e019c3a4305930e1fd708686bf90afe10db81c622f5fb03
MD5 ed3a7174eef8566b8ae678d50f3a62fb
BLAKE2b-256 c369f0a77dfc970787cdb0f2d920ccff5b2e651d32f3709d13653e7a3524c292

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 67f19a682cea77a9ddf0fa5b4115a8514989ebf1d22708e3b64af21581ce3d1c
MD5 aea790b7edc7be4504bc910f66a675fa
BLAKE2b-256 483bc245c8784b665c1e045c99830d0f32c8df2a40020811f9b9f58c303faa1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 00586bf162a1a1698caa5d89956491cac11ac6d264ca7c2e798ca86129c8c2c9
MD5 71cd322766dae1ab57b8e015184181b1
BLAKE2b-256 70c7f939e1fd60fffccd55970df14ea24bee51a67eeeb2cc82cff5be9053313b

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp39-cp39-win_amd64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp39-cp39-win32.whl.

File metadata

  • Download URL: jieba_next-1.0.0rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for jieba_next-1.0.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9a946d84490b36ef799e4a458e33ad034e73f187323b538e9445fcbcd646a2dd
MD5 875de5930a370701f78f6e678ea28a49
BLAKE2b-256 bd44e22137788a8bbee47aae9d2a460cd438b959d1130d35ff36fd88a8f76405

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp39-cp39-win32.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 180b1b6bb7e1df12c4b95a5b2cf2e134b7d640de138b39e2047b43aa0c8e925d
MD5 2c42bc65cf4b17d5fc458e38ae3c0469
BLAKE2b-256 1b4d26f98449ef7fac7d0e2c139d60f47d650a5a959c0f3a4b8d8799165b7884

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e73a4e9739363ef8e095f03a03dd5fd5e947e05aab3a161fe0fed95db297ee3a
MD5 2535ea07de4ce945f38edbd3a86ee551
BLAKE2b-256 9d32cfd6317bdac2d1028dc38ea13398658e881b1f33d2a3d2bb106d994be5e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90bd55055ed6de2fed4b242e9aad524ca4a93afcad20666fe0f4fcedb675a39d
MD5 73d4dd97aded109a78df725d07b3e32d
BLAKE2b-256 b754be6d6e20e3de37d5939439e59950f2d6bf9fbb22f1b5c1d086648d3ee38e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 019fe1b538704f2240bd86f8486accf738edf857f9cbd561088a64cdb65a0318
MD5 300d069b00c6c337c8b7b83825acff2c
BLAKE2b-256 7f7a73aab59cd77ad240bf48d3c0d0ad3e51ba69cc7192b17f81b757d522e6bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20bd62b957439509202b3a2c12a22a0540523b89c2918fba5aacafc811d758cc
MD5 19377b94604d31a87a2117f7148a663e
BLAKE2b-256 241d629742d031810ece128569ca4c7bb4646d4fde461d38e629a26d0a6bb8dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jieba_next-1.0.0rc1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0rc1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d75b20ee1780d06c1b062718e476dbd6ebfdd3bc28574857d5edb16afff6cedb
MD5 120f9564da10186745c231d08ce0628d
BLAKE2b-256 46c07b9eeb61b7831f3d9c01b0cb1cb8224db0fb13a55da0ce4a42ec906b6d46

See more details on using hashes here.

Provenance

The following attestation bundles were made for jieba_next-1.0.0rc1-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on mxcoras/jieba-next

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