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.0b2.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.0b2-cp314-cp314-win_amd64.whl (5.6 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

jieba_next-1.0.0b2-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.0b2-cp314-cp314-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

jieba_next-1.0.0b2-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.0b2-cp314-cp314-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

jieba_next-1.0.0b2-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.0b2-cp313-cp313-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

jieba_next-1.0.0b2-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.0b2-cp313-cp313-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

jieba_next-1.0.0b2-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.0b2-cp313-cp313-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

jieba_next-1.0.0b2-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.0b2-cp312-cp312-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

jieba_next-1.0.0b2-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.0b2-cp312-cp312-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

jieba_next-1.0.0b2-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.0b2-cp312-cp312-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

jieba_next-1.0.0b2-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.0b2-cp311-cp311-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

jieba_next-1.0.0b2-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.0b2-cp311-cp311-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

jieba_next-1.0.0b2-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.0b2-cp311-cp311-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

jieba_next-1.0.0b2-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.0b2-cp310-cp310-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

jieba_next-1.0.0b2-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.0b2-cp310-cp310-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

jieba_next-1.0.0b2-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.0b2-cp310-cp310-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

jieba_next-1.0.0b2-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.0b2-cp39-cp39-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

jieba_next-1.0.0b2-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.0b2-cp39-cp39-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

jieba_next-1.0.0b2-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.0b2-cp39-cp39-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

jieba_next-1.0.0b2-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.0b2.tar.gz.

File metadata

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

File hashes

Hashes for jieba_next-1.0.0b2.tar.gz
Algorithm Hash digest
SHA256 c612b0a71874c9795c166e9eff5761baefdfa68c836828719e92d2c100c4577a
MD5 49f9422045e8e969983e530c5d36c6c3
BLAKE2b-256 84358a6be32ef35659990e382cafe6b249d3663931d6b6e0f800e4136b16e361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c227c2a9251bbef76579e870fe32c3c59eb7134cf39bb67debbdc50949693f46
MD5 04f8380aac5a49b9ef502ad4e176451b
BLAKE2b-256 a3639fa8bdc3a9535a0312b0cd1e76db6568560786af996cad0111bd34e939c7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jieba_next-1.0.0b2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9de22a09d10b2453696def28960813642fa16ccd35e234af3e01bfe8b8a4b7ed
MD5 7bef1a6f7f85b255b776cd810434369f
BLAKE2b-256 2b5695335dd1ba34f511c18f7d3402b7cc19ddaec744cff129f1034bdf2979d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26b797927d9dd5c8c1d2810178389d6d55d2a434037eb504386c3ad19902ccce
MD5 334bd2b603d6412b56958c666e9d0d25
BLAKE2b-256 a7f5d972073acbfb7f26242ddf1d721920f43f8257f29b1b023a69691aefba3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6040535f7f585fdd10a522848ec6be5ce41f9398b85550de88a897aeeb517477
MD5 66a329931ea0e84ed25995734b51b228
BLAKE2b-256 aa191c346ed47a144342088d82b22dd94134ec1899f762d60b4ec6234facff95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b6d76fc27c55cf1e276c7b0acc2324d3c263b443e972279d66514524b325048b
MD5 d59ec21f4f08d85b5a016c660059b8d6
BLAKE2b-256 d4d78bc46d40e1dfe037067471f70fedbf405722c8bd69c4c22739fdfc99b397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 570bfcb063ee1c415b34c09168154c7f2d1bc162b87c3636896a4a0c23ccb201
MD5 e2be0970786eedfbc2bb18a0cd417c6e
BLAKE2b-256 391b4c68e53e6a60024bf8e6a6cb52ed68fbf3d6cde9f00b19d70f874134c141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14b24cf52c3cf8f03eee1e2afd02b6e35258ff8f86f0a91af101e1a5b2e81c2d
MD5 cadd7ce03bbaa848182d160db813fee8
BLAKE2b-256 ffe15bb7961a6102cd53d9834ecc2c85fbab38cb0859b8bdf301175b1a39c4e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 40b712a873199eb5d9048a0b6ef0d28ef65d06aacf7707cd8ab4903cea3c9c81
MD5 61c3fec4e2bc8df277be6879059a2b48
BLAKE2b-256 d876efa38c2858f4343a0741e654657774dd55b5ec305d0f5abcd41104da29c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8ed431f54e51796c6224edb602b6d41ea7fd47b7fa2a7f593245aaa3acba1d3a
MD5 121586e16173563e14bbeb48e3a838d6
BLAKE2b-256 53a11d5b08935b339643408b44174738a8a23bfbd274e1774140f4a66a8eabec

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jieba_next-1.0.0b2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f5c9a4efae37ebe0ef365c7c5e4865cc1a240f619a611f25f838f4510b88beb8
MD5 9f28c7127266ed130237e0b5aabb6b78
BLAKE2b-256 9a2c50d142b4dcd74a8e689a43e994083e101f68aa3673fdc85fd9a6ac4f4452

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3ba5b5ffa332116e106fa11ddb510f07551ac14602dd640da6a51044c4aba3a
MD5 fc0b8a0dedd7bcf9bda55ecdb96e315a
BLAKE2b-256 3c1f60c2382e46ae8aa0d558b85904543d38f73c7ada99c5a4a76aba896c57fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e43d44de5407af0813cbeb11095f6af48290e64e20e89f1bb01b12eff365d84f
MD5 c1fcb1db017b61a077adf6cb98f0cf03
BLAKE2b-256 1ac5feb0a166034e172a6fc65b3d9777e58ae7e21cee2b0bd84faa5b527345ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c37b8032ea6f19889e831e31b08a1861422920fbec4844a97211b772e16cc33a
MD5 1502edd3dbe2ba03a1b40a86aab3502f
BLAKE2b-256 0e4f49994f484ad0ebca09917b1195dc180ed8769640a93b19f8634218fc91c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a3b672c0bf5778073efdc115ffbf27628f69c3c3b338d7f5040d3f257935e866
MD5 165c52f6d2b0bcf8e83898aa71bf2faf
BLAKE2b-256 b58cacf28b0f3c90371c3cf138562f701c3bc5a1b9992b06553bd4266ad3753b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d855262f7279a2ecaba97c5658c5f01fc48403f90cc07afbf668bd4e4e6b445
MD5 f0073ae48869447dce60c834c550abee
BLAKE2b-256 e30b559962a5042999eb30a27222b8434f90addab968c02611bef7b9fed8a15e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6b6a4d7774fa4dff8c792145f6104d423e670becf6139eddcfb0ec25546f3b2d
MD5 d7db3eefd01f796b08e39a1d123dae6e
BLAKE2b-256 1c6db1e4e104b35a8dbae2955b83c1567bea6fa42947c14a9ec1688df718acc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 86eef77b91df6b308d4c396603741e9e89ff4e4fcb6757ca29172cd4e1703ffc
MD5 88dbd62bc40c219119ab78506b274f84
BLAKE2b-256 1684d07a71bfa829082b4d9f55f81dd6c511dca3d706e27e626052f4382a60c0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jieba_next-1.0.0b2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6519fcfb20aef95ab08697b297cc5b71540015a42afc6ca538d52e0ad9bd5e0b
MD5 6e4f2b7d877e8dfc6d3d4a7b1e3e0465
BLAKE2b-256 3176133b0cbfa9d139a5a19601f8edb80ebb1cf9bc45956faa7a23889a3c9fb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed81fcf296e77475755fb1ec169696fad433ee51a71534795c550e18cd5182c8
MD5 8f4064e97003751329ebc01068769d38
BLAKE2b-256 cba508734d6e22907053d60155c75d521e9c0226f99ce37c896a640227621646

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d76bbd03a843a89a2392f6d6896172fd02f6ad189dca20b794d95098ccb20af
MD5 cfc06b2e50a5ace1570a8b59d45c583e
BLAKE2b-256 3b6aae9225eb742963ec07c7395eee3f68b127cecab1760589786f75cbeca496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a2b0b809cfabed793743f75338830a144b43017fdd13a8a74924c51e83c7bafe
MD5 fcfaafe2977271ee9a8e50c294e61b1f
BLAKE2b-256 967956a4986619cdd670cde432b29b088bd0dcb3ff909e6e2ea6f3508fe53f2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 33fa2286f2f9061c1d2d43fc3c06e43dbfee74b5c4815c817751f3bea51da614
MD5 ce3c88a51acde5ac2fe6917770688bf8
BLAKE2b-256 cfee7a74ed8fefd5de184a8591c8478b2d24a44fbefc346c0e688c5ac3786b67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcff181b5c0e1e1f44e9d7b263e642d8d023263af84d68cf8081acf57569f538
MD5 a997c80812ecff1f02dc0847ca49dab2
BLAKE2b-256 199da2af98ac57fe52b1739c82d2ee00766fe6ca4314eef78b4102b4b6205afe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a345563237a420aaf6ecb71f17cee2d87029935f710702caa4827eaecfd35c8a
MD5 3e60c6a2a7638e3fbcb6b7c746c98804
BLAKE2b-256 579a39c3c48923aeaa4a6a55edf7bc616faf4df32d2728569cdb339a4152e337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 210f0d11edc2e7c0e72f4c4b783bbc727e6d3d6b88edd105aa4c98375e89c4e4
MD5 0e7a3063fb45bff854bf2666253df019
BLAKE2b-256 b601ca06c1eb2b98b6d24ce4db7d806451e46585182740953c936fb8b45bf4ca

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jieba_next-1.0.0b2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 045cf00d1094d9fb06d86ce6315f5df6548eb7ab095e2b3774442f180e3d2e43
MD5 e2ba3371745d854b5fa4a8ec9bc92c68
BLAKE2b-256 b94e41d8e38a64748c4414aebdc5655f94d6b4430e73f5d2b8d3f830197b3c36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 381d6e391cdb2ddd9a5872e95d241c8ad497069b0f52aa17e2d18b8b84876353
MD5 816c3ea87bc18d4199844e86b7ff335b
BLAKE2b-256 f0e8701cd9916276858349f2e0439fc89fc3497c37953fee22cc619785a178f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7006eee3863647903d53a159a5a09820a91148cf5f9fee1806c09be84e2bf46
MD5 17e72e886b4a322b9b036d771a71ce36
BLAKE2b-256 8e05d0cade044b2f261db9df0b792c682c6a654cb58dcca9b44d4bc1c1d565f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55608e058f2fc6fc3f72c3848f23f6b5b2d8fffdecef8a36775fe58b95fd4aca
MD5 781e56802ee7224b2af872909f3079bb
BLAKE2b-256 accbf8b1dbb72758ac0e553a7f110fe99991e83a8820d844a8c9c29872e43b45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 69f8e7095be332c59f0a74aed93fd2a8ca55b1d99e71ec536f6dc488f4701bd8
MD5 4778a1c90a43eca33bf286fb7622978d
BLAKE2b-256 c580e32a72bf4d5014f1f0e67381c25f745c702c606f69002653fe8a6cb7e872

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 510a6ffa029d2972de3d5c11d47897773c6b9a3bd8ad2e7987911b45cbac1834
MD5 935c782a6dfe3ffca77da2507757a614
BLAKE2b-256 e5c6ff0917f85774d9dc7f1ed5e31efc94ebbb68131dc442dcb85c996732eb49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4323c49c1756b40d2221a0b339ec47a586a9e21a04283d7755e7a3b165a9a1b5
MD5 ba8cdf31f826091b3f2c2e6fb94f8a37
BLAKE2b-256 903da576b357051f3cd17ad7bedea03199c6af9209a7b33d5a7bd8d60761aa63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5f6f2939cb406e9a9d7f024461caf2f21d82e41a298024160dfc575448b08847
MD5 2950ed32355248cd0bc01e2c1522a9a5
BLAKE2b-256 8c2eca8cf5df59b5a8c82e00068affa8c252ba2dad4fb0fa62f8455562a18afe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jieba_next-1.0.0b2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4cf34fbcc168aded25d7ea62dbcf15ff7666179f20e0ecb9b2d1d794e4a9c771
MD5 adabe4a5d1d556869a86d9e5dac4c5a6
BLAKE2b-256 9e79d92f68e8ca53682986619e7b4372d0251d95909970212df270b2011af2fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb75ebccc7aa452bef1662e9b82af4a1962a3aab92dc0336bea1750f539174a4
MD5 ac04c078c99dcfc579f55778642f0d24
BLAKE2b-256 0133914fc9ff49eac60ed2bbc3d166f8e36cfc71e408c58565c0059de511acdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e66105559d4b74042cbc71021bb77676798db4b7826fdda0f80b42d738fdda33
MD5 8ab15f53e22afd37424b61eb911d97c5
BLAKE2b-256 0be60920f9249d6e619c4259154f06497a5390b7aea96282ec212deb970c7b50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb9000dee788d8c4888b3bd7d5904aa776ae1c0d9592fa57f9accbbd1ab1e513
MD5 7287be2f9966790000157a10410c9669
BLAKE2b-256 8ef3ae757de00eedd1b41e17be9e4f36b68d5010218235348439932776eef56a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d24391fa4317100b0054c8168722d2d61b8d66b31a22226ccf7d69947ceeea33
MD5 256c365bfc7006f950bfafdf28ea4b6c
BLAKE2b-256 419570caeb6f8b85babc525214c2d4787f33bdb413e1a2694b67687b6be285b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32819ec5e1cdb7d30d1f0e8e751e66bba605bfc30a69ba2ab822480b2c411997
MD5 031e09eb736b5c88adc4e1af23906459
BLAKE2b-256 4c5c413d883c6ff2a2f04009e578144be4b25c34583faa4fec851fc1e1cf85f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0ac92e3886d7e089032f357a43df9c0ccf97eaaf311635996ddd64423d0935aa
MD5 6ae8d8e22a592add829aaba96238a13c
BLAKE2b-256 93a3f6e445994a5e5e9c1638d42ebfa88a74e9d8ad8db3210c731b1c542113e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jieba_next-1.0.0b2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for jieba_next-1.0.0b2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0773400bf38378046e00d46f3e5ddbc0489919e1c8bdf635ed8594ee2bf4595a
MD5 86acb0dc5827c9e56ea7749b0c6f6799
BLAKE2b-256 12adc58ac3b0760b8598a27a1ec312c932736d090243fe7bc08975081d5f3692

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jieba_next-1.0.0b2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5607fda1c65c72d3ad79eace06687c00812f102681216242681f2964d4d6357b
MD5 e80325e054805df7c1d987b5889baba1
BLAKE2b-256 c3fac99323dd687b0318db3c32747e94b32d818cf3995bec32345cbe8b4ad9d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 998a73014380ff190ea1b7840a7a7e12b236783c30937e3a7736f78b940f0d38
MD5 0e7d515544c98b6a332e2151382cfda7
BLAKE2b-256 0199be6fa8b1fd99d3a4dbe751a2e241b0eec010c8bc095d838234dd398ca211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9611a1081d3dff84bed0ee8bc4fa11685e35837ebe10393ef50ff14d7da80bff
MD5 c17b6d758ed223a43a055fd57a0681d7
BLAKE2b-256 149a5e5c5a3940ddc4019836461aad44f100d22127b545469f4ca52aedbe030e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c2e8f5d49427a3275a28928144de3a7261a55bc1a78f1d4073f91487ded868e
MD5 b7568324602391375c1b7c0affcfae21
BLAKE2b-256 399fd804d37e4943245717c3878b342a242d9fefe5bff8d69aa8f8407c2d7d8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b9c27775531b61fac7766a6c0d69efe4fbd45836d46760e752b6a21d069a2818
MD5 d6f125de9aa02b38803563eeca904aff
BLAKE2b-256 1669a4639189414fe88e704f509419874efc7ec8b89048fda1033665584e43ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30d4163d4c63eb7d5b2f370f9a3fa26000dabfa48adbb5bc210c14ce54f0c255
MD5 47a6be1a57a042cc143ff110ef9cb032
BLAKE2b-256 fbdc1606f51b188e4d11793d04a4277be705122ab4e19cc22218e7b7e678c16a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 16663c3f809798336fb922337ed6e5bb4fb7a95a016f6526adbef0b81c79d110
MD5 de85f3db319fc57fd707b364045d9a69
BLAKE2b-256 693ac0fe73f2ade73fe1f2221bc356eecbe39ffa49747722c69210aa6ff7e6d9

See more details on using hashes here.

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