Skip to main content

jieba-rs Python binding

Project description

rjieba-py

CI PyPI

jieba-rs Python binding.

Installation

pip install rjieba

Usage

import rjieba


print(rjieba.cut('我们中出了一个叛徒'))
print(rjieba.tag('我们中出了一个叛徒'))

Performance

Running on MacBook Pro (15-inch, 2018) 2.2 GHz 6-Core Intel Core i7

In [1]: import jieba

In [2]: import cjieba

In [3]: import rjieba

In [4]: jieba.initialize()
Building prefix dict from the default dictionary ...
Loading model from cache /var/folders/8d/h3lyjgz14296j_lw7chgf5hc0000gp/T/jieba.cache
Loading model cost 0.695 seconds.
Prefix dict has been built successfully.

In [5]: cjieba.initialize()

In [6]: with open('../jieba-rs/examples/weicheng/src/weicheng.txt') as f:
   ...:     txt = f.read()
   ...:

In [7]: %timeit list(jieba.cut(txt))
1.1 s ± 10.6 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)

In [8]: %timeit cjieba.cut(txt)
225 ms ± 3.95 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)

In [9]: %timeit rjieba.cut(txt)
106 ms ± 2.01 ms per loop (mean ± std. dev. of 7 runs, 10 loops each)

License

This work is released under the MIT license. A copy of the license is provided in the LICENSE file.

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

rjieba-0.2.0.tar.gz (11.8 kB view details)

Uploaded Source

Built Distributions

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

rjieba-0.2.0-cp314-cp314t-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.14tWindows x86-64

rjieba-0.2.0-cp314-cp314t-win32.whl (3.2 MB view details)

Uploaded CPython 3.14tWindows x86

rjieba-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rjieba-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

rjieba-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

rjieba-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rjieba-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

rjieba-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

rjieba-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

rjieba-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

rjieba-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rjieba-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (3.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

rjieba-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rjieba-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

rjieba-0.2.0-cp38-abi3-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.8+Windows x86-64

rjieba-0.2.0-cp38-abi3-win32.whl (3.2 MB view details)

Uploaded CPython 3.8+Windows x86

rjieba-0.2.0-cp38-abi3-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ x86-64

rjieba-0.2.0-cp38-abi3-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ i686

rjieba-0.2.0-cp38-abi3-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ ARMv7l

rjieba-0.2.0-cp38-abi3-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ ARM64

rjieba-0.2.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ x86-64

rjieba-0.2.0-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.8 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ s390x

rjieba-0.2.0-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ppc64le

rjieba-0.2.0-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ARMv7l

rjieba-0.2.0-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ARM64

rjieba-0.2.0-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl (3.6 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.5+ i686

rjieba-0.2.0-cp38-abi3-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

rjieba-0.2.0-cp38-abi3-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.8+macOS 10.12+ x86-64

File details

Details for the file rjieba-0.2.0.tar.gz.

File metadata

  • Download URL: rjieba-0.2.0.tar.gz
  • Upload date:
  • Size: 11.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for rjieba-0.2.0.tar.gz
Algorithm Hash digest
SHA256 c4305f25342de17b0af4af877b0f53a08a3ce65aa4a7b802d6cc4a932b874bd9
MD5 be2e6d2acb2c07d2aba63382b2a67b77
BLAKE2b-256 93ed2307bb181b7a1545128669e090bea3a549b384bf37a862842ff9a1c16eaf

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: rjieba-0.2.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for rjieba-0.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ad6262f81b79132a05b1c2c15f1ac38b90666e19252c8344a6da8ef9e0af80f5
MD5 c15556aac406ab6ef6b05900704d8c27
BLAKE2b-256 e41545114264a266ed3cb91ba298a6851cba1438e2d8e58531e416cba6d85d64

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: rjieba-0.2.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for rjieba-0.2.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 bd88bab276e1e599dbf2c76d47920317137c86a3af47e80d78d8efae22f1ce13
MD5 163e0f07cbbfdf452e3e2aaf18d35c80
BLAKE2b-256 3a526e91e6c8855ca7dd6c84f5fa8cddd7d7463a0a8d6c37a9ce521b59c4d56f

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c646519a47b5a4435f80aefcfd9c49ea24f5d4f328d267e6402b687133122124
MD5 55f3c7723567aca8ebb913474f353a09
BLAKE2b-256 3c5397fdb5d486c9b1b587229014416aea06771881bd81af0e7688feabecc023

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a55d7d2f3a645f7274999b2a32bc73077dcb742840c7f48bcbebd85e33fb7aa4
MD5 82947f97855388b16c59a38e1e16ccab
BLAKE2b-256 69410e0f5d8d06f9812f9b85987dae03c60321e9fc1d5281df3f22cc80690ca9

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 80cbef52b13674df5b4f6fde9c41849150586686018ee73b1d699ef9d5e86bdd
MD5 60495b5c38c3b233b9710e970aa5fa95
BLAKE2b-256 24ae940b1c20ea687f61cd13e3f9d82bb33c1344f812850997704479c9b177ab

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26a2e1baccf6373a0b4f90a7fbd6b03508afdebb7a1be3e55392a8817d39f02c
MD5 a27b9db1f6c50af089fb001906bcfff0
BLAKE2b-256 4527a4fb8b05d25fd686af5a89d4d2e9497462868a76c22b2c6e4d7b7e3f3829

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b2b83287076fdc1d98a131c12dba30d17d79a88f480bdfb7936ae841b9d0be7
MD5 c29148d54dc218288e49c6bcaec37287
BLAKE2b-256 5fa5ca6eb07f7f1a52cb6c5332d2911ea6b152cfbe5d24e24988a0ea8a1bdde7

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e3f8ba3bf6a8301233c2fc58378a45882d507ee77a6afe297b91cf932cb5d83
MD5 fa4ee610df7f7c473ee1bf1c2226ae9a
BLAKE2b-256 e64bc4b7fd092eaf95327624bb2cc38eb94a9dfe4927ec41775b0d9ebb7896e5

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f3111a46de77e6022a3e77f46ff46f4757ec6058ba09d5aa08b189303ef49e78
MD5 05eca146021276479ccee8be50462661
BLAKE2b-256 10396db5a05d290e01e64754ca9a260f2c0f80a9191f15dc4f2e0880e65d6ff5

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94b3d1d1cc901d72ad47fbbe9f08c4944332d44773089a88ba00e2774426c0be
MD5 b07f570315cb4b21283201c671f34ac2
BLAKE2b-256 8ff2a4f5e8b0f672097aee139f259c4ef2079f45d161dfa66a3ce8712b798190

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5c15c1f05d6947a3125f9f6ea456d4390c149232b6f71557408ce62ae06b5e1
MD5 6fa09fd8dec728522584ed0dc07cea83
BLAKE2b-256 66bc555ef535aa2ed3086014f77d52767d36cf27071514a514ecbef96a294322

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d54a6490d7749db7218903b52c52ec9493762f61d8359ed6665fa2795facb087
MD5 eb64879f30627b001c235b2187d76ab7
BLAKE2b-256 73baeb795e956928351f9647e143eca9bd961b408d280a1162e9ab4317d8ff12

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed049e4b5485253f46d8706cfaea0a0227444074d83ffa0762902e30b1a97978
MD5 dc2c59a3fe5505955ba05981ae0847b0
BLAKE2b-256 8c7c960c3360a24b88cfa458c314217183833267e68394182764a6c6a99bf39c

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0fde4b3cd118b5bcda464ec5dce1179e64fdd10c831bf31cca753e8e1db3dac3
MD5 69d4fe1bd01ac8a0cd6a66725bc7d797
BLAKE2b-256 21a31eef3bc2ccca46c6750029bd577a555fe33a6e54383068a11a3806a79af4

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp38-abi3-win_amd64.whl.

File metadata

  • Download URL: rjieba-0.2.0-cp38-abi3-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.8+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for rjieba-0.2.0-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 815e12d2c1112b72842a7a21ac5cec254a3a86797822b1f73ee4142482c7951e
MD5 063260e4549536d0e78de07c15131a6f
BLAKE2b-256 e90b255808c9add0ac33d386554b2e4025f1994ef9adf16d1f394ff1fcfe633e

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp38-abi3-win32.whl.

File metadata

  • Download URL: rjieba-0.2.0-cp38-abi3-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.8+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for rjieba-0.2.0-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 d2bb523acdee30041749c0a5bbe84708e02f0d38956b255a1aa2f6e71107d1b7
MD5 75b8cc136b27f33882c628986521117f
BLAKE2b-256 5d47e7d19e0a3b693d18b0d8d1140b53b1943412d21f3a9e1698e67476e94b57

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp38-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp38-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ba2632d277105330cabc541570d170cfb3c968705bde96b0e83dec46825f8ff
MD5 eef2b15420d51e448addecd8db2cabda
BLAKE2b-256 dd562b2d6542462a91d47766f39bfa03c1621a7e8f8c4ea934b6b35bd9ab2b91

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp38-abi3-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp38-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 744e12a4cf3ba703161c150d51a0bbe606a6ed2672c0505dee99a1c70ebe4d3e
MD5 dcbbe3bcc6df5eee7eb02bd3941fbd47
BLAKE2b-256 5e5effe107f434922a0107b1b57f657a4063e45ab7b37432b369d38a73be21b2

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp38-abi3-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp38-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1c365198491983cdbdf7afbb7ccecab87408300fa5accb06cbd2285e44dc914a
MD5 6f98d116d6d889a67f3d16195a40b17d
BLAKE2b-256 f7248233171139f328aa1d2628f18594731efe5cd4997acede1142109dad29af

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp38-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp38-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5da401db51b74deef6beb955310b9df872e080732acf5c0248ec2cbc996921e6
MD5 c74cb0f037cd23edc6581059ab148aa5
BLAKE2b-256 af938c4d7dfd4eee7cd7c01256f1bb88fe2e7c51e82844f247689bd2d8e1f771

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35bef9b07d7108839f21efdc4629d2f3e43e309ed862d2d1c31c23fffb55293a
MD5 30f7ad32b8575234f94272fa2987c54b
BLAKE2b-256 11af4aada5a0795b3f747b79a3031339106c336fe7d6b6cfc7ae1ef202d09768

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c5295bb12bc59820a5af9edc64423dbef2febe24521b339948ad8ed94d120fcc
MD5 f9e2c4a504321648c19efc6222ef6902
BLAKE2b-256 67e76c0b9b5e218af6817b9b224f2d0c9ece63ac748bed33c4a41bf2f8147a03

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 556eaee261b9f050709acccdd0873738e67c75b71bd95e1e85a1d74bca6d393f
MD5 ce7e46f8eb8e93208beba62cabd32719
BLAKE2b-256 885a6d66eed7455ee8f21b4c519412d38e2380176a054f178c16bac1f7f759fe

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf224cd70836998933798a691dbb16d4a775310f88e4a917118255c36bdb7790
MD5 874278d4729523bc444fd945b31037a2
BLAKE2b-256 eeb8a8ab9748218a7bd9677689478d8e3e50be4d33d968ad07a632c5e50cac1e

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07ed63ffb5a1c1b95e84ba6d20acd0c28e2ea67a3db7c6443e9578a0bfd36920
MD5 022df85131dccb7111b64d1c50761c60
BLAKE2b-256 b1d6b51dcc46d2fef255bcaddfeb0361858ec787190a08602c158c4b05672eb1

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7c4ddd56c8f37b23e39f681cee7208f7cb0843406737af24f7bdccec776b3fe6
MD5 0b0a4101c2d74a456a4fdd4e6eb3f0ce
BLAKE2b-256 2314978c49bee0f3f1392742e88f98df1103afbdbc297bc12f147ac619b97a9a

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02e73a960c77960040728819672f8a4885e3268378ed49df337505d979848c35
MD5 0e8a4ce1b2d03f53e67c1f53e07eb65d
BLAKE2b-256 c09c7428c1d73bae8de09809cbaacd090b9574f123d8a38d95d8422557a9d87c

See more details on using hashes here.

File details

Details for the file rjieba-0.2.0-cp38-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rjieba-0.2.0-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4a41a235a7a797f56e517a7d457a022ed5222e9360c98f66e80522ca41b5786f
MD5 da774f371406f8c891ba8877e164501e
BLAKE2b-256 f85f86395d3a186147e1af1600d6c8bfeae0cab93d8a690b5feaa4d105c91bf3

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