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 工具链):

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

jieba_next-1.0.0b1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

jieba_next-1.0.0b1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

jieba_next-1.0.0b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

jieba_next-1.0.0b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

jieba_next-1.0.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

jieba_next-1.0.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

jieba_next-1.0.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

jieba_next-1.0.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

jieba_next-1.0.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

jieba_next-1.0.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

File metadata

  • Download URL: jieba_next-1.0.0b1.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.0b1.tar.gz
Algorithm Hash digest
SHA256 985b6692cb0d9418f996654683b4fa6ffed0c11dda95d4c62d5875428f28bcf5
MD5 62bca652044efbc999946d1a0146e9bf
BLAKE2b-256 c1c0776ed222a4774f7b734a26f66fca587f2866524eab34a4ec53edffcda5e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 57a61560936c1d96e5c9d46e9cdf85f8cb6ca4c9fc6cec4885535dcbd05d42bf
MD5 c84f7650803b3b8e07370efca4406786
BLAKE2b-256 33104fbd2696510de70037816d430ebc2b17a67d7b6ea2564579a5d63ba0a386

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jieba_next-1.0.0b1-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.0b1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8ddcb35a8d8e4c10f4833f1b98197ca9ba9581f2e02999954a181f7e80d012e5
MD5 91c2aefeae9f8c73403cb8ef9881164a
BLAKE2b-256 7f2bdeeadc5cd31480eb5ea31345a4067a2e94b35a15fb2450ee67bb1c30f559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8d81124a8e29a943470e0ff0b9483ab83c0b9a37c26298c7db425bcba3e7d1e
MD5 188852cc33aa4802c9fc809633008c08
BLAKE2b-256 86073472e6b4ccb1de22aa43f006fb2792023ca01d2784d27a9f6ebdb79f46c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e98e3bd1e8f5cdf74d85b0c9e8906319584df0e520bc8a10925be88607faaaf
MD5 516d610972f91071d5394ed92216d7e6
BLAKE2b-256 9a7e08227267522190ed144b3f8efaff1653b6cc8897bf91e6df43d910370d76

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0b1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e965fbd19fb5eab5c7d9d12f570d44a798b1363df2aa949447197cfcf35e9b6
MD5 37ff924b0ad9addd08264ab706e5387e
BLAKE2b-256 2b0351e8e2b702b669dea45d2916d3665ebc5695ccc0e917a989b1dc7500c491

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0b1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39aa31fdd5f89d1058021c643db97893bcfc6414f507677174f93a9b88443acf
MD5 a215aceaf6e160401dc4f01d06bc181c
BLAKE2b-256 520dd000fe652859ebbd04ad87435b1646429544486fd57d32a3aed1fa297d80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f423a150624eba3025a96f343ba8b83a8194ccb918036bc4d3ecdbb29c01ed6a
MD5 9f1f8f4029bf6f5e82bae0c711c9ef22
BLAKE2b-256 1fed5e7575db1431983d98c4abe1f87a70f5a5b55333ed853db262efca90fe93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 23e3cf93cd140f0279e49df5114f61bd2dd5e95b7631239ce4a45fee68d3dc69
MD5 27b8cca1defdebbff8df1c7faf6c917a
BLAKE2b-256 305c48283ad69b917c057cc44cb05c90a2ce6b59181739364f5f652ff8914901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2777b24ca7eec986e4f47170d83abda4ad121eb0ac73894318c8435f8b050e42
MD5 5d6b60d7929f31a26b266badfe721650
BLAKE2b-256 c82e255ea0e83f2d49b2dd4d9ff3f654cc8f317e088a25d578be761763678ac7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jieba_next-1.0.0b1-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.0b1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cd35d357394ac3158d0ee90b2b1095f4c3ffa3776c5a6d5a909ddf3e11abeb7e
MD5 f3b30316c4f8435614cd281daf2794cf
BLAKE2b-256 e96e6a2415ad7a3606dfb0ccba73fc23a60aebf1006dc74ff5ab5b3834c97333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 404a0c506f88c4bb54726b1d279323f133d45625ea0d237970f7678dacb5f119
MD5 efcf4fbb966682c6f5bc12c75311d021
BLAKE2b-256 7e16f63a5682a6bb59409511a627ff1b4b40d07fc6e12ad678fbadc19b023c47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bdc2564d50c2ea40e402825cee4903b34811cc6f17e4b6eb799d47d1dc885c9a
MD5 f709fe48c3b6f377ed327d449984e7a9
BLAKE2b-256 4757dcca28a6e07528c422ae110013d4aa05a50a4ab01877d4b3e591346adec2

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8647b7b7d10ae2e5b4f8f4c868fe6c73c0bb27de9bf6f42332bdd6ef2fe47bd1
MD5 d3a08eb227f3dced3247fb39144ef26c
BLAKE2b-256 0da8d32a07e6f11529bfcc3765c930ad270d85e7176927936ddc065c21ae66a3

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5df5e6c5315cedc1b20f3c020815bb553ea89202201a5e9d72d3759ae874a77
MD5 77c03954a44f2efc567a65096165861a
BLAKE2b-256 6e14f2d86ffe1cbc43ef154e4373ddceb4f0a44d353c39922a44c1799a7a8c3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 502da15210fccc227c3ce919c00b6725f20a1d56cc107579721f65a286e1502b
MD5 8caac9d9e1d13a10182638b1dde3d088
BLAKE2b-256 1fb519175068b5ca3647e09fb2294ee25bd57e8bd0371ce7d8be7656455b41e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 77fd9e2a23bcd4570d68c2232a44dcc79a88cc1e762b6dce5cfe74e15c0494d8
MD5 c9fdc8b5fd5312b3d9b4326f4ece4f19
BLAKE2b-256 954b1196cb9f28bd6a4d7010c38d653f5c29d7b28d184017c05d2db6fe645534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 87e5c3d9b4c6723e40db40286c45dd2e093e83db63ab80aacc0ad93caa2a3a81
MD5 275f8fd070be36932dcffa8b41db22b6
BLAKE2b-256 2c83c106d9ac7dca6c05f3e58786989a6658f6b90dbd1ddce13a1b856e959925

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jieba_next-1.0.0b1-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.0b1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 55f3d717c113240b0fb143653e99ab261c02297abd1d280b4b7c83dddbfd3e5c
MD5 f136335c34397e7f63fdbbad8f72c5eb
BLAKE2b-256 feaadd1ac140b25da1e127f9eef8759d6eff4edd068a488784265914d92d6e70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70cd7ccd0717d45d90671e6b165006d0a4eda20da98cad0b09bca8484643bfa7
MD5 04157bf992a0278843951eeeecff774f
BLAKE2b-256 b16d96d6d55f7c91d315e41004e98c2a250638757b39a1e931df5fe3b753b359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e6bb9cfe20ddf09654ada0ccc3b9214b066ddbb61a65ad024c26c0474eb0a08
MD5 d300acf1a04d59f760d34425034cace0
BLAKE2b-256 a50a79fe481a20b6764b084ce04777cdb09016024f4ad50e85c304338ec3685c

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da7990f58bd08589de9cdda599fdd877a40c4fc8aa2158dae795b09bf1f3f2f5
MD5 51242e96b07d966a7a13af444e05afca
BLAKE2b-256 632b91c68f2f4c03ca73c4002a9fd9e1b7d24ff1870e5e641b8662d16f2c1f75

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0fa0756cb4ef511889b18192e40ed4d78f45f0c6d2c853cf81720968da166c2
MD5 c1cd056e4540186328a82fd45c98e019
BLAKE2b-256 f32e7630764fd2153c90942f84faa2664a8e0885ca7be07c3804c554d73afa9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 def5771aa5cb506ca28fdac65cdc5f0fb5b363f7310e58aa626b9551807b2125
MD5 bd3c83de91bdc4608ba83c8bb9d538f5
BLAKE2b-256 c873cec075d6b9995ac1d09d573b9b2da9fd68b4ccfcb4e4d6c244a7d17f412f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2d83127215fa0af176f6d6dbdb498eb6756b6f77ba2d0da68c6c0809049dc647
MD5 cb0472b523dc427c76433694bd9ebd22
BLAKE2b-256 d9a66b122eda30701d0957f5e6b4b03211aa0badea568a029bed91cc001880ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ddf11e445c4aa4f690998c5c420013e35272daaa89645422afdaa71db515460b
MD5 210b45f1fec2b34b21209aba00b5df53
BLAKE2b-256 0976cb7e079d449a0618e1bbd5771bb3abec77a4fc7ea7f9ab4ff3260ae1109e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jieba_next-1.0.0b1-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.0b1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 16fb8bb70b99328bc0ca61244ff09011392bdc3b897cc1e802cfe8d2edb3a55b
MD5 7562e94f32c4e9088cd1ebb2b4b875da
BLAKE2b-256 bd899f2d00f4ba8dbd042cb561eb2fdf0bd160281dfd175b4d169700b1e89d06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea322940a4e1bd3efdab7e3caf07928713718f7f780e6900251b6205689f828c
MD5 df4f48e568f3374531e99133899ee70b
BLAKE2b-256 f32a7d6585a8d12b7f4dbad5c31506ebba3218c949f28b518bf3ac6cd967a765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5e5d03ae006a599f938ad0095d888fa29c2333b2f967169bb2f10bc7a883c96
MD5 a2f8983eaccb2012c4d3515e90f3523a
BLAKE2b-256 cb694c4d9d89e832bdbf7c4fc003f2e6adeff3c524678e76822885008c080973

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69d2616370c71ed7fbcf3691db7a5214b3a56adb084e366ad1c2e121cddcfb39
MD5 66a8bbf1e0f8aed0e09cf8fb2c945aed
BLAKE2b-256 e44b26e1c6fd0e14973c3c4937c11faa85c57b67c0b6ba2a05e0ab5b18d6ed0f

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffc6228de90403c11d8cfc74ca237a2b6ad3a55253925b88fa022a63f656b343
MD5 7b0a8323ec73880fbc2d00673cfe80a3
BLAKE2b-256 f99545b4c822a9c176a73ce96381d3449e474b5aae8712fa81ba34f2922d4ca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1b3000077dd660eab5df0121fbd4dd0f344eaa1c855b2e87a143839d1ec4fe9
MD5 4aef40640ebe56eaee8e1a3c53c791d9
BLAKE2b-256 9ef4f6d42bc4523664ebacbd71d8784737686d75dd5c39e90a8f09e14246266a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9188dcd5a1f41f1cf96ee9878f508813baf2e14b3bbc8c51ce4d9fdfcb1e55da
MD5 3d840564624a80e5da97fb8c3cfe8828
BLAKE2b-256 27fcc64b06f6d0a675faec16a9752bda7d55dcaa41b7d3d3c0425e41a27150b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jieba_next-1.0.0b1-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.0b1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 68e3e086e614d45cc6fc66ddd1cf60e17d600e7dc34f3a9b9825c2ccff351222
MD5 49277c645495e6cd09536e167ea4135a
BLAKE2b-256 68be704681a5a917d11fe3e122b983f0f4458945099170ff3df48d30977abb97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jieba_next-1.0.0b1-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.0b1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 08b0c83ae15baf3af84a74ecd2bdbcd5f442e0aac4ce4b400a7f5cd74bfd85f3
MD5 739b50917de03aff9f005be22ffb7119
BLAKE2b-256 b2c8b8f823068fad88032476066f20b5b75ee56ce982b26b104bc7bdac15b299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e44d42ab2bdefb63ce9b9621ce6b63270deb28ec4292b5c133cd6e8fafa3c7ec
MD5 837700f7a260880e893205afa285cc41
BLAKE2b-256 0534f074846f8ee4013597eff9745a7ae75635245bde516dc80c9c8777ead4d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6767af3f44c002ad428992604ad9f4ca63adc9a500cb5bdaed64c383472f579
MD5 b92d0937ff115e69139df8981a55a745
BLAKE2b-256 c85573d9b5051e40cd51663f8b0f8f9d6d5ef1309a8e1070f5e68e09c88ef073

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 890350066e4f6e8bef6368eedc44d623e949f93c71ca04cb8d8e6520fbcd1579
MD5 015556e22c8bcf91b0f6d3216e211998
BLAKE2b-256 c45e79448f0c133f51cbccf69ffb76dd52d4e674f409e5ebb8ce1cd928efe6a2

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c65c9c900c2bd9fa9ba0b21b6f2b09e991e70bcc613625345c2c9dafdc9c04c3
MD5 d46d7420bbed1728cb86c6b4be91bbb7
BLAKE2b-256 1024379416edef9b57ed2c114959b3409e396389abad13fdf129d51d494c5317

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 400e92c4bb6dd1691bd21c5a25fd859e37e3506c725452cdc2115ac2e6af48cd
MD5 aab677ff5a5b9407b18c44e1649b78d0
BLAKE2b-256 970b2dbee7cac89c1d30eb62a6f4a4825544da23a81901cd5151ee059384b3a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0b1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 018c076edd5f689a3d001a64d3ca9c5e4890a77a2d2ce53c4183bc72843513ab
MD5 0d101e59a680be1b0c4eb3db2b23eedd
BLAKE2b-256 302b0a9a38ff212b675460cbc550c9659bfdb20225e2d8d1c1cfd709020e252b

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