Skip to main content

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

Project description

jieba-next

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

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

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

项目特点

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

当前状态

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

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

安装

您可以通过 pip 从 PyPI 安装:

pip install jieba-next

或者从源码安装:

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.0a4.dev0.tar.gz (5.3 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.0a4.dev0-cp313-cp313-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

jieba_next-1.0.0a4.dev0-cp313-cp313-musllinux_1_2_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

jieba_next-1.0.0a4.dev0-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.0a4.dev0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

jieba_next-1.0.0a4.dev0-cp313-cp313-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

jieba_next-1.0.0a4.dev0-cp313-cp313-macosx_10_13_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

jieba_next-1.0.0a4.dev0-cp312-cp312-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

jieba_next-1.0.0a4.dev0-cp312-cp312-musllinux_1_2_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

jieba_next-1.0.0a4.dev0-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.0a4.dev0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

jieba_next-1.0.0a4.dev0-cp312-cp312-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

jieba_next-1.0.0a4.dev0-cp312-cp312-macosx_10_13_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

jieba_next-1.0.0a4.dev0-cp311-cp311-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

jieba_next-1.0.0a4.dev0-cp311-cp311-musllinux_1_2_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

jieba_next-1.0.0a4.dev0-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.0a4.dev0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

jieba_next-1.0.0a4.dev0-cp311-cp311-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

jieba_next-1.0.0a4.dev0-cp311-cp311-macosx_10_9_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

jieba_next-1.0.0a4.dev0-cp310-cp310-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

jieba_next-1.0.0a4.dev0-cp310-cp310-musllinux_1_2_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

jieba_next-1.0.0a4.dev0-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.0a4.dev0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

jieba_next-1.0.0a4.dev0-cp310-cp310-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

jieba_next-1.0.0a4.dev0-cp310-cp310-macosx_10_9_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

jieba_next-1.0.0a4.dev0-cp39-cp39-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.9Windows x86-64

jieba_next-1.0.0a4.dev0-cp39-cp39-win32.whl (5.4 MB view details)

Uploaded CPython 3.9Windows x86

jieba_next-1.0.0a4.dev0-cp39-cp39-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

jieba_next-1.0.0a4.dev0-cp39-cp39-musllinux_1_2_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

jieba_next-1.0.0a4.dev0-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.0a4.dev0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

jieba_next-1.0.0a4.dev0-cp39-cp39-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

jieba_next-1.0.0a4.dev0-cp39-cp39-macosx_10_9_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file jieba_next-1.0.0a4.dev0.tar.gz.

File metadata

  • Download URL: jieba_next-1.0.0a4.dev0.tar.gz
  • Upload date:
  • Size: 5.3 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.0a4.dev0.tar.gz
Algorithm Hash digest
SHA256 da79ef3f3dfce41edb8e1f60ad686f2232fbfb04d0a9b453cbad6b7694cd5b3d
MD5 f5e9b6b02af5a63f8844a07fdb30a8e2
BLAKE2b-256 1730d9007282190a91ce59bf5690af0552497a52fecf29b1a766b1f31bbcb823

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 256d20ca52101cde964bb6f55f4008603a59d2b461b14afe1e75a02dcf5a0d5d
MD5 0515c89d248af032227dfc0d9db3fd9d
BLAKE2b-256 d14ce78401710f58ac80f1cd172667a08b802a58c2b866863853d20a59f55d99

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8eb393431e8a5e7ea09742a38cbb11955409cce9ba66bda5d9d6a4c3e5289e51
MD5 ad4979a2069d1c142c6bdb6ed21ed8d8
BLAKE2b-256 abb4abbe59679339e5c1f52f7923322c7a4e6b18c12e0a992154b6dc95d5c22b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97bbf1d5eff0060c76bacebbd0eda702feaa5cf1162d5383f14c813b29c2bd5f
MD5 b84efa1a487b1e32122c84315b2aa73a
BLAKE2b-256 9d5b4d2f3ef0e367a34cbf1749c6813facaebf436963922dbf31a2a8db939da5

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19b8158d4ec1d35d392bdde189276416c4b24fa7e0d4517d136d9c76f0d054b6
MD5 de65551c641c5db17994abb6b06fdfc2
BLAKE2b-256 62fea4ff227714856ad42052a30157f3dfeccb54005c22755aacae6ff73df43b

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6576ad0c0fec423a50286b34f3eef1837672162f8352d461069fddf62a9bb553
MD5 05381534ec1f8251c8fa046f102a67d6
BLAKE2b-256 ce5603354aa7f7c5918ff849d2414a09ad37c01cea1bd49c16a07f8114c18687

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fba845c445a9da0a4acf950d358f0e511bc3b3b855ff1ba843b8d56b8bc0a1bb
MD5 5a0588bdb133b3026f93a681ea6d3345
BLAKE2b-256 d759ab9e3a829ec6c4154712d78a37d2a15327f50ed513b7ab0bd7cc88429b79

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ac52abe15e2f9abcd7f4a4ea5f022a78564e6bd4ebab55a9eb7eb550e1230f7
MD5 bfbb4de7531146e3439005dcba75d80c
BLAKE2b-256 d9a18e01d1887d9785b978939681ced80a929be0b915beb2c37eda295918bc73

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5217a7f218dde4ca7bff4fa7e8a464243f5883ce56c0bafa2e802028fed0692
MD5 9e671db7dc8cfcf0ad991193c4daf132
BLAKE2b-256 ba8ed904553c46ffea082ab00faf1c0929b9c9201d5859da41dd121aa7460514

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2de240c451d2c9941c5a91e41fe87559f6db98ea511d8becc1f54897e0c8e8d4
MD5 a1249c6d9dbdc469d6172498b275283d
BLAKE2b-256 73585c863e64ff06febd45627005cb207c25ec933692f2d43f4ab24efc50298f

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13b3c6052d52252158f3bacd43d0d836bf5415e4ffc28708a54803b9568a6a32
MD5 8a4b495e2891ac560d87b0fd344eacaf
BLAKE2b-256 368fbd760f94f7f957888c004dc7480096b12f92b63ad0f5ff4619ffb65e6520

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 291a8d96f231ef78cf6e5d0a04510bb7cab881774a1ef350a56267544d467c92
MD5 e034eca0a5e6afe620826abb06c96a8c
BLAKE2b-256 47c65d65685ddcc4525cdb9689cb634dc92addc4d2a7e1f5c27b7161340be1a7

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 734e681ca6c7d110426bd8423fba9273ed7d42bf2a40c090180aca8a09d94e5d
MD5 20f8f93f871a536de08d55f9e202a9c6
BLAKE2b-256 73b9131b61fa1d44eedb5d10edf9f15037d1cfc630fd9f7d79b3799a1164626c

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b4787edeadd62d49de3b751e2ad7d7a551a486a32eb65c265cb2421739e7981
MD5 496324d05b123c98dd55b93224432b36
BLAKE2b-256 1c2654da92534607db926c14fb1ca8949d12595dc4a675509fe0a4922a6b4ca1

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7f28fcc2a67a3136cef4d7d4e1891e058a3f83a4eb1a0fa9e771e88e606f49e
MD5 3dd47f6e8b38d34e5db2b93b259d6b71
BLAKE2b-256 910ad3dfca644aaa910985b726fdde55d353ca37e2c5c0caa4e950813eeda8ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 361d1e8c5805b0dc9a6f38c87264c8b6b9c39d978554f7c2135c76b03f5cd71e
MD5 20e5da8819c3dacadce3d73a342330f5
BLAKE2b-256 dc39db248246baa535ad0653e8c4ad15a341bc18187d7a415760e0399e295d39

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b622f5b000ab6c5273574fe5e31f4efecea52a1c0ecd867b443be153a9b60aee
MD5 bee7d6b209901e906b37c45c6393e8eb
BLAKE2b-256 54e9d9e125d78e3c65214e9f08a5fe2f6aabf02906526eeefee4eee42bd4654a

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec69ab06be5821cd5d1ccbf29f0bae0e6fe40082e0a8c765196022a031fc87bc
MD5 33bcbda52f368b5629e83ea9124fc862
BLAKE2b-256 40fe04e51a9d38e042297e5c8296f5fca6ff048b064137a3ca1e62d54c5f77da

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d0d394b75bfc33d7c06aa3f3436179ef550a0590e771a4a89e748b2daf4b8ebc
MD5 64f3df88252db694d94beec8d36c009c
BLAKE2b-256 4b8c5486a269faa458cfd8f06f2277b43fae3ac594537f937c8cd0293283c994

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f56b17b8f693ff6503c5cef8eb6e295826cc4b0481fa7c546c99cc35c978f54
MD5 0859e7179116dfa76040cf90cf30ba18
BLAKE2b-256 e4ab8173b4745fd011cfa262586838f9254d93a20f43cd9e2e97b344fcddfea6

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa77728577d87d34137c4312a36cfb133718610b56adcc7cd0a6932947a80c84
MD5 0b1a9965450252a3f81046be83f0bf4c
BLAKE2b-256 cfe32f5d326536c36f39953594f306de710e09da0f0dc46849d812ae9b778385

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d131084f531c58926cd44bc6ecf442c99d8d6fd3378978080a5dc61f12954a20
MD5 c5ca2dd1a40d50e815c710b59b1996b3
BLAKE2b-256 32606ad89b0388aa17813509bb09841ecc1387198d87fb2ef48bfee0cca61c9b

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84417800bf8fabf97f074452046177a9280be2388ce1ef7286758186ab251ef4
MD5 90ef0adf1d9fe90672fb423d4c365882
BLAKE2b-256 45252e481dda6bd27d09afd374d37967f498807f78a3f6e0e23f6b5512e47a76

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74a314eab9d650b4ebc48b4504d51ad65ddb0e716128141605657685dd5030db
MD5 db003471b7dd92785fca34422a0997a2
BLAKE2b-256 235cb946b869d2ee661a2ac8a048ab86220ce3dfc92a9e39cef97bd88d2a0df8

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 46d07c669a320cb3a084d1cdadb68bbcd2ec05835a9dd2eac754363ac8cb31ca
MD5 ee327e7a449489df5246f336caab814e
BLAKE2b-256 12e865be89f4dfa784b076dbaae592deb8ffabbb6840ac02975fb0b9961c3012

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7440b9d10b848be99ddfe74ef9e86eecad2f8d0ea38b3239afce1db7b9a232cf
MD5 d53443cf1da56859c4d83fa4e7bc3958
BLAKE2b-256 dbbcb6fe9bef96075af2a6f75695ba5db5978adb0ef4eca264a16b454483ebf1

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6f5de0bd8f053c502665d1a97adbb625933b2af1e856a431ca40d0d58f1073b3
MD5 7db71fea832ff8bedc79148cee4e9991
BLAKE2b-256 f03bd2668d439f30b84af3d09b8954ff295b3949b43548bb2ef61ec992cfab58

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f970a2df729a0ed2cfa6fc68371a297d3bff6ed7935e9f3e08afeacd52c14bbd
MD5 27a03bc46bbb03196548d25fcee9306e
BLAKE2b-256 731b83d56c95f3e8696c1857981291623657a64049012ae6ceab6f097aa3be3a

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 983b93585a2545f267efa929e7c47b5d985c753d7310860d95ad7ea3de6f62a1
MD5 d88a1227b442ae5f3cc55d0b0eafe441
BLAKE2b-256 2e4dbb0afb0283c7a758ff2def61dcda5464a723b37fd55e4c42cc155a6fb93e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62967e3493d4f4ecfa40c4d4e152dec877bbfe0c07ae335e23bc3204e98a5e75
MD5 1c59a1928b0be7e61c94331260e06e8a
BLAKE2b-256 16c1ea438ae67b2233dbfedaa3a99ae0d2def93dbd01c41adeee91248a78cce5

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35d0befc91610a7c06940d5054bedc5d86ba56a4625c774759c17aac5c49d7da
MD5 1a4aafb77fb101923becde10f5037a42
BLAKE2b-256 1998d6bd54e2a7ec05aeeaeb951ad2e3d911f87dfce4ac3748d396391b9aade4

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1a832ec1a6f9c3fd33b5577b607ea0517b964cfa911838e425864ce1c5b22a5
MD5 d77bda970aa2a7f6d2a632ccaeabcb39
BLAKE2b-256 e75dbb170e6eb0f097575fc6b8931678dacae7db4eb174c9c232969df1e8e0bb

See more details on using hashes here.

File details

Details for the file jieba_next-1.0.0a4.dev0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jieba_next-1.0.0a4.dev0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e232f27fbf2446ac5a93d190ae97d651c2ae0405f17c9516df798752ea75abbc
MD5 ea763ea0057e451b674c75ca6ae0abe4
BLAKE2b-256 6418ca2d6184100dbb42bb1398cf463a8538af48a2cf137598ccb66b59587481

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