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.1.tar.gz (11.7 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.1-cp314-cp314t-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

rjieba-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

rjieba-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rjieba-0.2.1-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.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

rjieba-0.2.1-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.1-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.1-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.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.8+Windows x86-64

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

Uploaded CPython 3.8+Windows x86

rjieba-0.2.1-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.1-cp38-abi3-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ i686

rjieba-0.2.1-cp38-abi3-musllinux_1_2_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8+musllinux: musl 1.2+ ARM64

rjieba-0.2.1-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.1-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.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.8 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ppc64le

rjieba-0.2.1-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.1-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.1-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.1-cp38-abi3-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

rjieba-0.2.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for rjieba-0.2.1.tar.gz
Algorithm Hash digest
SHA256 af96d4a14f24b68e053024ab993ec008c868d85598f8af928f2424ff4d86bc44
MD5 9d874ba89f492708b38b209c3e58103e
BLAKE2b-256 2370d8ccb424c7ecc2fb17c49fe7995087b7dc2c8cac3388773a8a690388f16b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rjieba-0.2.1-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.13.1

File hashes

Hashes for rjieba-0.2.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ffd82197174241f12e31d315e67f2f2ff2c2dada6d10ca9b79fe6226196eb548
MD5 126213c8ce6b35837aa5e843b3e2f809
BLAKE2b-256 758c63781fece1870685c05d95687abe1cfa25bc26ea2ce013af02afd4156fc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rjieba-0.2.1-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.13.1

File hashes

Hashes for rjieba-0.2.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 29bfbd20b0242fde74aae0c3b42bee2480172a361780a36673634a49a61bf1c3
MD5 592e26f28bc5ec8654b8998c4e41367d
BLAKE2b-256 44de0f75491c31311ad4816112debe968175456d8c51ab5121c6421d7398fc83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6efef41ca71daadec12f9d30f733e5d5c0d2b356c389fb3944d8d623a5ccdfb4
MD5 e7ca157b2e28c283641a1e60f7bba69d
BLAKE2b-256 c84641e2fbb3c4415057faec6762a84f6d6eb26589566e2a4d9dd5042bbe6ed5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fcd110f16438ca8f0e463af8c8bcf2e43f119a115e2df9921ca36eeaba1b2a19
MD5 6c2f3f9b9448475339b285d22b928f6a
BLAKE2b-256 12823ab0ba78efab7ba32147ab4f8af15632925fca6120662f588347df7aa6dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1641ae16cb34aac6d5adcf76df7414f77194e031a237fff906141f859c9701c2
MD5 ff081e794add3cda3b0fbfc3a4774272
BLAKE2b-256 68d9c716f084eb7ed680508faa1afcf19c380a5ac32bfa249ed2eea0badad869

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e0b61b2dbbfa63ea431a1e85de4bac98fe2ee924cc7aeb477340351ff0dcb16
MD5 421b2fa701f13f748863d613ad4a9bc4
BLAKE2b-256 8d3a813c419cff1abbc5dfbc1b75d312610c8b315d585baddf4f843e7879b7b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1780ac6162c89921897010fe9ade975f4528533a2ae660d37a29bfbecd3be01e
MD5 81b1a76474cdc5711fae6ee7f9866982
BLAKE2b-256 985b5eef6fd28bff6e621d4b40de5a1cf09da93754a047839fb252f5f2b91a00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d25ac59a0812ba8fe5b1ffa81dc7628b188cf5d4c91efbff9748631e9cbf69bc
MD5 bffa5572582dc1306362f8cfa3889d51
BLAKE2b-256 1815d2c71f85ee91568acbc67dcde0eaffcd2215b291811b87398d140b6397c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 70bfa9dea5d764da9e0419392cc4e3461b38a25aec8ea92164b57e254a3eee52
MD5 d4f9971bc953b6aef6744fd1260b4198
BLAKE2b-256 2903b27a6e33381b05b16431c355719c8c6150513774a30d5a14fea56dbf9196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0f7fb0ba80a8fc39c7d97c774bfe0424916b2e04fe1fe857bbb8d363b3adb0e9
MD5 cdf8319d1e185f995a7f49f8530c8669
BLAKE2b-256 cfb5ad3fa730e883e6b0c0cea96cd448c1e71d5c8c8d263d79af56bd3751ee21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f6848d58c9c7d7c0985b9f07bd2da41f4807e6759c018bec874e15cc18bfe8a
MD5 0a0c3db7ab303cd5356462231308f6a8
BLAKE2b-256 753eb2ced8a482ee53b4728f5a8dd98ab93935144b6ccd9afec923bbe8e7d87c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 988ba5db3e3ec746174753656c373ec54b4b7de5c02c3d6a52d525b7324d3a45
MD5 9d62a711151a185e8e091563158dcb0c
BLAKE2b-256 0a6e28fca82d320e95af13b7f4fadc2e43b415a203d05c05da07c9e6864275df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce64b2e7a631fd670a80d2d3d1ab38dc635cceffe3fa29066d3910a97fd0891b
MD5 9a8dd1e1a73326cd1838b22dea583bb0
BLAKE2b-256 54c8f97642b3f55a8e69a164e7ca5928a4513b75d1a8cdc15536b2538e7274bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 371cc1ec930d3fce9e5db6636aeff7fd75cf3af70da3154732ccdd43ecc4ae83
MD5 045c6fb2c0a931aaad196c2151d93f89
BLAKE2b-256 6e71a56171bfe4e1d5f2cb1b1e3617624d48c8fbddebe703ac3fc577581bb349

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rjieba-0.2.1-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.13.1

File hashes

Hashes for rjieba-0.2.1-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 5e4796e43e9ff38f502b6d04195120777017dd7372493105132ec16ba2f6e785
MD5 4a4a2e7492c438a7405faec2c7d78efb
BLAKE2b-256 ccc24ef775678ca9da0aa495bf81c8d90a4a8366fe321875bfb70ff9ac2aa58a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rjieba-0.2.1-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.13.1

File hashes

Hashes for rjieba-0.2.1-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 d3a5c83a1665416e15ab8c1f837b9304a65697c7011c1fcd47d3f12ef7983f90
MD5 0b574cb5b539502d6a530c229975bfbe
BLAKE2b-256 726222c211d9cf6f0968a5312983b36a83e96a42323b3d4fcb4f59581795d069

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp38-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7dbe2ed3ad327311276975561dc2ae1ba7077485f253bf7935804bd11d42e9b3
MD5 ae0ea53e4056631ec8657998a324e8d1
BLAKE2b-256 df4f7665dcd690c9c5e8e224f10b8bf03d2aaa314d28e787a43048fec57c19f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp38-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66961f245a96c88a3d197dbf1cdc9bb0ec5b9d3faebf333148e840576c59437f
MD5 7f4992f16a601cee490f5f14617736a3
BLAKE2b-256 84a9a0e45897280da52d2dd4392e5b2f13e73da26e29dc57bfc02a496441552c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp38-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 31c6a7ae0e7bb806038a2376c4157337d37439d3b110bd5951e912cacdb4c608
MD5 ebe9f80d3fded3134aea6b90fd36e3f9
BLAKE2b-256 7f709793ce14a603f92857cb09c2622557587f80bcca96ff8261fb77da962650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp38-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 017108a67754ff46dcfc957b9134cb1596655f7ee4e394e5ca1678b57f49337a
MD5 c7ad854f08e1eac1c5504f4adf58402b
BLAKE2b-256 f9a0ae69305a203497340b8e69ecf03ecb2ea88cbf7eb349413a624a9e086796

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4be37db4a99162c99cc55b4e93e024c5041a65a6ab3b5fda0c58beb21eb234f
MD5 c895a11af58276c6e830642b18acfc94
BLAKE2b-256 36445a64bc5c97060315696fa8203251f8af7b76dd2aae49ef55f0b286e78bd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c6e8048a2310dde0123398df86f7407b19c871e41a7465485901a19a9d37c409
MD5 55b7c0a2453d37e9249091e49134c0ba
BLAKE2b-256 190f57e686f3be888a911b4fa801d43f067bb98b13a62a2ce6f2954f3792745c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dc49062b3eab5ad5dd6f805e991690859c72bcfda0b5fb47eae13b2d3f3cb010
MD5 277cea5acaec3ca4b711913a6d78aece
BLAKE2b-256 a4cb93ea4882bb65465cc57b893c3baf7ee4d9603d5b0ebfd7c5011a78f641ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab63a6cb5ac4524b8c4eb1ac94d85a0aacef9105a2aa3ec23043fe65c341b5ef
MD5 22c31f94915d16d20222c5f68352182f
BLAKE2b-256 9ff01899c7c6a5deeb7cd6ba920afec57b1d960c37b4f7491ba77c12a46db854

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36bca745ede5304a7fa245099fbaf1366793ac8a52cb5eec7670738697091b47
MD5 637763861e85583b898c79a441ab0754
BLAKE2b-256 22e98cf5a6746376d6bacef7668e0d21cad9c0a6de0d0aa120e6c94fe9a14d8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7259e29c834f4aec0a35509ee24586120fece2675072e8e572a35e490b5ab424
MD5 5a5d40fc4803caf2b46c78c650dd9ac9
BLAKE2b-256 48a8405c385aad77203b573074ab2df78b4e0fa9ccd9dd16e79b24af38352450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d9a7953c098459b0fd45f6bf1b437b2de137a8e6cd3ba358d1207b6cb25439c
MD5 fa78d5bd1da3aa4ecd2d64b3702c62dd
BLAKE2b-256 f0d06bb83e7bf6d5a4a3cf107b6aac883c4455d0ee8daad0930b55bd200ab92d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rjieba-0.2.1-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4949d7cc61462e580fdd33291fbd7d74e820e7e125620ac80e5f4ee05666083b
MD5 3ce233ff59614ca8aa3ed292e059dfae
BLAKE2b-256 814ed99838d8bcdff47c15146837c12fc6240f569a5c301eba6deae56b10bac3

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