Skip to main content

内存优化的 CppJieba Python 绑定 (基于 DAT)

Project description

CppJieba-Py-Dat

PyPI version License: MIT

基于 byronhe/cppjieba(使用 Double-Array Trie 进行了内存优化)的 Python (PyBind11) 绑定。旨在提供与原版 CppJieba 相似的功能,但具有显著降低的内存占用和快速的加载速度(通过 mmap)。

请注意: 由于本项目主要基于 DAT 优化版本的 CppJieba,其主要优势在于大幅降低了相对于原版 CppJieba 的内存消耗(来源),并利用 mmap 实现了快速加载和潜在的多进程内存共享。与纯 Python 的 jieba 库相比,虽然仍有内存和速度优势,但内存降低幅度可能不如对比原版 CppJieba 那样显著。

特别说明: 本项目的 Python 绑定代码很大程度上是在 AI 辅助下完成的。如果您在使用中发现任何错误或有改进建议,欢迎提交 Issue 和 PR!

本项目主要是作者自己写着用的,所以代码很垃,勿喷

主要特性

  • 较低内存占用: 使用 Double-Array Trie (DAT) 替换原版 CppJieba 的内存 Trie,大幅降低词典加载内存(尤其对比原版 CppJieba)。
  • 快速加载: 利用 mmap 加载预先构建的 DAT 缓存文件,实现近乎瞬时的初始化(非首次运行)。
  • 高性能: 基于 C++ 实现,分词速度通常远快于纯 Python 实现。
  • 兼容 CppJieba 主要功能: 支持精确模式、全模式、搜索引擎模式分词,以及词性标注和关键词提取。

与原版 jieba (Python) 和 cppjieba-py 的区别

  • 内存: 通常比纯 Python jieba 和基于原版 CppJieba 的绑定占用更少内存。
  • 速度: 分词速度通常快于纯 Python jieba,与基于原版 CppJieba 的绑定性能相当或取决于具体实现。
  • 初始化:
    • 首次运行/词典更新: 需要构建 DAT 缓存文件,可能耗时几秒钟。
    • 后续运行: 加载速度极快。
  • 动态词典: 不支持 运行时动态添加用户词 (add_word / InsertUserWord 功能被移除)。如需更新用户词典,需要修改用户词典文件并重新运行程序(会自动检测到变更并重建 DAT 缓存)。
  • 依赖: 需要 C++ 编译环境(如果从源码安装),但提供了预编译的 Wheel 包方便安装。

安装

通过 pip 安装 (推荐):

pip install cppjieba-py-dat

从源码安装:

如果想从源码安装,或者没有提供适合你平台的预编译 Wheel 包,你需要:

  1. 一个支持 C++14 的 C++ 编译器 (例如 GCC, Clang, MSVC)。
  2. 安装 Python 开发头文件 (例如 python3-dev on Debian/Ubuntu, python3-devel on Fedora/CentOS, 或 Visual Studio Build Tools C++ workload on Windows)。
  3. 安装 pybind11: pip install pybind11>=2.6
  4. 安装 setuptoolswheel: pip install setuptools wheel build
  5. 克隆本仓库并构建:
    git clone https://github.com/xiaosuyydds/cppjieba-py-dat.git
    cd cppjieba-py-dat
    python -m build
    pip install dist/cppjieba_py_dat-*.whl
    

使用示例

import cppjieba_py_dat as jieba
import os

# --- 初始化 (自动处理 DAT 缓存) ---
# 默认使用包内词典
j = jieba.Jieba()
print("Jieba initialized.")

# # 使用自定义用户词典
# user_dict = 'path/to/my_user.dict'
# if os.path.exists(user_dict):
#     j_user = jieba.Jieba(user_dict_path=user_dict)
# else:
#     print(f"User dict not found: {user_dict}")

# --- 分词 ---
sentence = "我来到北京清华大学"
print("Default cut:", "/ ".join(j.cut(sentence)))
# Output: 我/ 来到/ 北京/ 清华大学

print("Full mode cut:", "/ ".join(j.cut(sentence, cut_all=True)))
# Output: 我/ 来到/ 北京/ 清华/ 清华大学/ 华大/ 大学

print("Search mode cut:", "/ ".join(j.cut_for_search(sentence)))
# Output: 我/ 来到/ 北京/ 清华/ 华大/ 大学/ 清华大学

# --- 词性标注 ---
sentence_pos = "他来到了网易杭研大厦"
tags = j.tag(sentence_pos)
print("POS Tagging:", tags)
# Output: [('他', 'r'), ('来到', 'v'), ('了', 'ul'), ('网易', 'nz'), ('杭研', 'x'), ('大厦', 'n')] (示例)

print("Tag for '清华大学':", j.lookup_tag('清华大学'))
# Output: nt (示例)

# --- 关键词提取 ---
long_sentence = "..." # (省略长文本)
keywords = j.extract_keywords(long_sentence, top_k=5)
print("Keywords:", keywords)
# Output: [('关键词1', 权重1), ('关键词2', 权重2), ...]

# 带词性过滤
keywords_filtered = j.extract_keywords(long_sentence, top_k=5, allow_pos=('ns', 'n', 'vn', 'v'))
print("Keywords (filtered):", keywords_filtered)

# --- 检查词语是否存在 ---
print("'清华大学' exists:", j.word_exists('清华大学')) # True
print("'不存在的词' exists:", j.word_exists('不存在的词')) # False

DAT 缓存

  • 为了实现快速加载,本库会在首次运行时根据当前词典(主词典+用户词典)内容生成一个 .dat 缓存文件。
  • 缓存文件默认存放在用户缓存目录下(例如 Linux 的 ~/.cache/cppjieba_py_dat/, Windows 的 C:\Users\<用户>\AppData\Local\cppjieba_py_dat\cppjieba_py_dat\Cache\)。可以通过 Jieba 构造函数的 dat_cache_dir 参数指定位置。
  • 文件名包含词典内容的 MD5 值,当词典文件发生变化时,程序会自动检测并重新生成缓存。
  • 生成缓存可能需要几秒钟时间。

注意事项

  • 不支持动态添加词语: 由于 DAT 的特性,无法在运行时添加用户词。
  • 修改用户词典: 修改用户词典文件后,需要重新运行程序才能生效(会自动重建缓存)。
  • 依赖库许可证: 本项目使用了 CppJieba, limonp, darts-clone 等库,请遵守它们各自的开源许可证(详情见 LICENSE 文件)。

致谢

  • 感谢 Yanyi Wu 创建了优秀的 CppJieba 项目。
  • 感谢 byronhe 提供了基于 DAT 优化的 CppJieba 版本。
  • 感谢 s-yata 开发了 darts-clone 库。
  • 感谢 pybind11 提供了方便的 C++/Python 绑定工具。
  • 感谢 AI 在本项目开发过程中提供的巨大帮助。

许可证

本项目使用 MIT License

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

cppjieba_py_dat-0.0.1.tar.gz (5.0 MB view details)

Uploaded Source

Built Distributions

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

cppjieba_py_dat-0.0.1-cp313-cp313-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.13Windows x86-64

cppjieba_py_dat-0.0.1-cp313-cp313-win32.whl (5.2 MB view details)

Uploaded CPython 3.13Windows x86

cppjieba_py_dat-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cppjieba_py_dat-0.0.1-cp313-cp313-musllinux_1_2_i686.whl (8.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cppjieba_py_dat-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cppjieba_py_dat-0.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

cppjieba_py_dat-0.0.1-cp313-cp313-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cppjieba_py_dat-0.0.1-cp313-cp313-macosx_10_13_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

cppjieba_py_dat-0.0.1-cp312-cp312-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.12Windows x86-64

cppjieba_py_dat-0.0.1-cp312-cp312-win32.whl (5.2 MB view details)

Uploaded CPython 3.12Windows x86

cppjieba_py_dat-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cppjieba_py_dat-0.0.1-cp312-cp312-musllinux_1_2_i686.whl (8.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cppjieba_py_dat-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cppjieba_py_dat-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

cppjieba_py_dat-0.0.1-cp312-cp312-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cppjieba_py_dat-0.0.1-cp312-cp312-macosx_10_13_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

cppjieba_py_dat-0.0.1-cp311-cp311-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.11Windows x86-64

cppjieba_py_dat-0.0.1-cp311-cp311-win32.whl (5.2 MB view details)

Uploaded CPython 3.11Windows x86

cppjieba_py_dat-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cppjieba_py_dat-0.0.1-cp311-cp311-musllinux_1_2_i686.whl (8.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cppjieba_py_dat-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cppjieba_py_dat-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

cppjieba_py_dat-0.0.1-cp311-cp311-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cppjieba_py_dat-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

cppjieba_py_dat-0.0.1-cp310-cp310-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.10Windows x86-64

cppjieba_py_dat-0.0.1-cp310-cp310-win32.whl (5.2 MB view details)

Uploaded CPython 3.10Windows x86

cppjieba_py_dat-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cppjieba_py_dat-0.0.1-cp310-cp310-musllinux_1_2_i686.whl (8.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cppjieba_py_dat-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cppjieba_py_dat-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

cppjieba_py_dat-0.0.1-cp310-cp310-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cppjieba_py_dat-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

cppjieba_py_dat-0.0.1-cp39-cp39-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.9Windows x86-64

cppjieba_py_dat-0.0.1-cp39-cp39-win32.whl (5.2 MB view details)

Uploaded CPython 3.9Windows x86

cppjieba_py_dat-0.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cppjieba_py_dat-0.0.1-cp39-cp39-musllinux_1_2_i686.whl (8.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

cppjieba_py_dat-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

cppjieba_py_dat-0.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

cppjieba_py_dat-0.0.1-cp39-cp39-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

cppjieba_py_dat-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

cppjieba_py_dat-0.0.1-cp38-cp38-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.8Windows x86-64

cppjieba_py_dat-0.0.1-cp38-cp38-win32.whl (5.2 MB view details)

Uploaded CPython 3.8Windows x86

cppjieba_py_dat-0.0.1-cp38-cp38-musllinux_1_2_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

cppjieba_py_dat-0.0.1-cp38-cp38-musllinux_1_2_i686.whl (8.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

cppjieba_py_dat-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

cppjieba_py_dat-0.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

cppjieba_py_dat-0.0.1-cp38-cp38-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

cppjieba_py_dat-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file cppjieba_py_dat-0.0.1.tar.gz.

File metadata

  • Download URL: cppjieba_py_dat-0.0.1.tar.gz
  • Upload date:
  • Size: 5.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cppjieba_py_dat-0.0.1.tar.gz
Algorithm Hash digest
SHA256 fb82e30d7053f2bc6eeeb4cf75a0a567d104d3fb87d45c2a42b31d0bfa97501d
MD5 3a3e98596096ceb0840225df4c08b259
BLAKE2b-256 a187305a3dbcc3ebf2320227cfe02d77a70fd609e741e5b358e7455331bff3d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1.tar.gz:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f7e1d6cb6fecf65d22b9c4a9b3e58fc6870847a462ed18611e68bd86866072e4
MD5 a7a0aedad0ea63a79d4b3f3f28f46008
BLAKE2b-256 6be779105c66c94524cbcf1b186e822535870072de62bc3cafe4abace8158a97

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp313-cp313-win_amd64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 319da162ccd2437f82f63cab3070c287e3e526d69ba49f99e3eccc78f93c1c33
MD5 6e528d5660fe78e00f99849ecbed4e64
BLAKE2b-256 4f277227690504ce4450459d34fd2f5172a5cb4d2adb65be3fe037b434ad646d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp313-cp313-win32.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9fe5773f06c6e48ebcd3288f52253d63a9774f654fe986d195dc2443486f8703
MD5 f94bb3ad239c224568e2ee76ce03a2ac
BLAKE2b-256 987c8c8ac42c07b51da18de43ea72bdecd1a3997d96ea0a163308112235c6e3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fcb76709fdc1db3ca9149690e95de038f7a7f00407b8bf8b3d8c057482115ae3
MD5 c52ba277c1e767de2ab030d44bc88d27
BLAKE2b-256 62a8a7aa0ab1ef3525a9ce08336932858586adae8ff9afb522eadc45d0c2a3c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3eca8313a143378a93df1f5667c138d21b7b7326ff746377c0577f2f3d4c3ac9
MD5 1fe538381edfe1b0f6f3d3bb3a9680a3
BLAKE2b-256 aa395b0d72037b51bfcec38edf2c8d15c3fb91faf252cfd058e677de4622cc02

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b7e6f445facc97ab270b7c68846a91ee56a50f987389af942f9b493269706967
MD5 95afadfb568d4100779b6a1558f2b441
BLAKE2b-256 9265754541e2c734d35ebf71a32363f2719966aa35f56e141469963c254cdcc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fa7fa837e50fe1a5268f215bc7e55e70cca84107b3e3e38ca19dfba1671c028
MD5 88ebb54002cbb4dd5ac441e988e2856a
BLAKE2b-256 fbd60b2e4b3b4531acff1770d5ebf2429a361d98415f24782f857df7c48cd065

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3b2b3737e1245782fabde155446df788dbd16f2206d40b041e97844cb3ef530a
MD5 4074b9baeb809cfa272b23fbc6df5222
BLAKE2b-256 d1f99139730d6c0b972fb350ab9222c9416f5b66709efc45d4dd4f5e1c4fd21a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 966a73d69f8167b14ab6de8ad38fd10f0840236342fbf28a2de5f943588ebb38
MD5 d96ed0bb2a625b9848dd94590bbc80b0
BLAKE2b-256 a4f44ac5a303b6cdb63c84e8121144d9d94534c01f1ccb97cf6cce7fd073e098

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp312-cp312-win_amd64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 47361e43ce76d34932da5f1f65e6b6353a516e0d3764d8b911811622211d887c
MD5 34326abb55eb2a4063c1d8a42fb2aef7
BLAKE2b-256 04e340c85ed6636bfd6aab34bad265becf22c64776e7679037bd43212b3fff38

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp312-cp312-win32.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33eff772a492e2f7d81f8f0ce7bf5e8b7a55b30fcc13f4e2cef92ed99c71e4f1
MD5 c058c5b99153a58a1b593f4f1fae1684
BLAKE2b-256 656c177727698976b748517b114d68e982388dc29e8d608bbf9dee75880df10d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a75aa66fb9b54cefcd532667564694f6521b1886111fea866f8bfa00e18c83f
MD5 44de066effcd3c8440c135cae95e8019
BLAKE2b-256 be033f4af04fffb9339f2030911c904af7f50513c11766e3d8119c8f4480992c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fe6975dcfbbf7cc41ffdc58f6d2bff77f6439715e1ae7b0361c6fbb431abbe2
MD5 0edcc62d8108757a74ef4e3f0e3cc62a
BLAKE2b-256 6867b185ad1eba8dc03a577fe17101d646e6c0fe18d01ee9feca82a790062dbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6aaba3042b59db07578700c8a7403f4a74dae73f061fe454b8db2da98ce29404
MD5 c51fd2a1923b951d988b14155fc045b3
BLAKE2b-256 55577f0fe64a668d9f6658cbef48002748f4e7b5696d19a389856947714f87ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acedfaec6c20bf0e2255442b793b5675fb7b3819141e1a92937d662b856df725
MD5 d2efa877d36d4cc52fb0a7fdc3924019
BLAKE2b-256 3a96922292803bc138816a2e57979f8cc5083936c618e4367769bcf1875b4309

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 15305108d942b16d617cc3243eb844ef6281b22bcb38f19d1af00fcbea2eb866
MD5 bf5f95bb8265980f6b5be80240a5014b
BLAKE2b-256 ed2f9584316c59735dd58a0520e256f02a340a721d6f615d3d070aabfa46e0e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4bf695312b6106ea012d724892c27479c0ec95431941bbf0fa1b12c94fdf5e30
MD5 487ffc086dca4f1c02d248c34fb23931
BLAKE2b-256 45ee97616290bd14f3969122d63ece600ecd73984e9f17a1f5a8e47cd3108ea6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp311-cp311-win_amd64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1d416a5d8140782c73781842a691df66f524a63abc54d07dac81c52e65d141f5
MD5 ccaf1b51228cea409a9dc75705d5f388
BLAKE2b-256 5b753c572d88a09253198dcef0aa358c3d0eae6e85e48c7635ef500c73a80cb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp311-cp311-win32.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bf73ff5d021c29d4e0e2b51d77b37bc01351b5a8b548e8588b277c970a40291
MD5 cec65a8f072fd7e6ddfdd5fcf7e0a463
BLAKE2b-256 a89ad57202df47a979d5355ff373ffddffb5bc7484c79fa800771e76c8a025f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce9916cbf9a863cdb6d52046c46e53ed332b21744a6a08b189dd16d959070115
MD5 f01ec7a17e4a67183df571c2ce3f5361
BLAKE2b-256 285f4306f09d6abe5eabed039bd35fa4bd1553e73c6b60b9c13bab2be71cebb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2cbdba1294b6c58fa44744fa8cafda78fa6afa209c819b8957c0ff633aa1e04
MD5 3f36f115a9954093ecf94764e53497c0
BLAKE2b-256 c29435921db64aa448dbd48aca6b526387c7336490729ed4576bc50940bb4fc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8717a96abed1cbfb080e6247306286845e3fa324f247ff4d24becd49a9292d51
MD5 20f4a87ae28543e7fc5947be5a6374c1
BLAKE2b-256 073892238bb5ba0649d511f073709e2a8f334e0fd6f8f4d56016d8bdb46bc323

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34b813e75e55c3020525989728f6d9aa5aba0185beae1efec954d0de214bb006
MD5 fba9566db93b75ab3e5bd10233241862
BLAKE2b-256 55fbd7e3d55da77fdee2d9f2cfa2e2010a5b6c2725f9afd489d5b691465337f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6673e881fdc46c0c6842d4eaaac18d3bc8db619633e9d771dd830ca175d4d9a9
MD5 4777882e58795d7dea01fae180d82b20
BLAKE2b-256 23a7a7d006184ce30d633bba912ceee9dea7653c72dbfae613f2ef036e17f96c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 93cb1980db08bf9c6b76752f907c05316719a7aa232c65e9dcf8e5a3ab1b32cd
MD5 00f46b9122d93b1cf88e506b41919dac
BLAKE2b-256 6b5a252868147e55e4a40338a31b350c0e56ef1b6b6c9ddf973742572cadb206

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp310-cp310-win_amd64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 054e0b0fb265fbe09f6e4b36b2437aec768508553e541eafb8e9d5a976c47ffd
MD5 18e2272e7d02eb3e0d5aa8e6a758dbf3
BLAKE2b-256 5bd0fcdf8d4fea8dcc76437d7ebe989272d9734be374d8ef64349440bdd62738

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp310-cp310-win32.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5167eb14c3493bf8ce60aedf7a5400c033bb2653406c4b0af37d1333790adbaa
MD5 6b92533a53141afc219841bd7b4099df
BLAKE2b-256 1738cad67deb7b1571814854fb686316973c7dd1b941b16ac4223ac49a21c1cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e8f865cd4a39aa32673430df2717648f9c17caadbdfde38e1eac5991f2e76294
MD5 d750f224f224681afbc48fc72e96ae2b
BLAKE2b-256 b8e7e879385ef17a1bc6b4bd3e8398ca5acac4117b484c83b590f9138c40f50c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40010adf684dd0da67a6729fa8c3aba6b7546270f3bfefc75f47bbf5005b1640
MD5 5df579f58d4ada5f0886f2d52ae49ef4
BLAKE2b-256 f5ac79ce58515f4580c8f194801a404d13cc01248f031b0323605f5a028f4f33

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c6472786d777e71c0656c42a6b0e430121e0123150efd774ef614876fe4a2409
MD5 af1cb47f0c23c21313ae1e089bc4c2d8
BLAKE2b-256 e15f4b733c566062f62289c9c00e03b37163ba31c7718848c3c5bfa45a7bd48d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8987ec55d5f13eaf2c900bdf8d2d9fe6da8226accecf8a07c53b1d55aa8d5365
MD5 71b0c482086324fd7ef51755d3bb1735
BLAKE2b-256 346230b69caf0d4c94877622326180c9f6e9e9e7f1f7d000b316ae1ec323f278

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4e5215ec8ab9412d0be84289be3675b381b937eeea8821284efb7218a31834b8
MD5 a9c5aba94a0ef7f2bfc38c884b30f988
BLAKE2b-256 3fc0e3b54ee178a7e3ee2002018f3819cca5e84eb528311b7f30d8fccfd415c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f6d51db51ca5710ecc4211374a1790a0adb8cfa2157d92420e3f0971912ad65a
MD5 b6e1dbcd4ae24aefaa5c5c6387b46bd8
BLAKE2b-256 5bcd6cff95fac6924e1c60975e11a973f1baaa47186aa02dded3d35887a5244f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp39-cp39-win_amd64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: cppjieba_py_dat-0.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d94c36d395280021cc57fa9d32b4c00d794278df9179dbc633cca9112045a940
MD5 c2541e4133275e59fe1e47579d358a95
BLAKE2b-256 32751da2514372d73a94fe7132c3d74cdd08d9552f022e849332611a6a297448

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp39-cp39-win32.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ccf50b067e1329b6a9b13a0f445dbe1da96b104e575d303ecb6793c26806e15a
MD5 2ee1d264782aa553c5d8f1d9e6ea48eb
BLAKE2b-256 43939765365674462ec8b7cc051a7ccb745b4cb37ed86e7db23087177a121035

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3d5d6daac75529ad456cc45d667cfd73810cef7f3b9d4d12fe0eaf3da9c9af9d
MD5 7e09b07fa9c30b37bb607e8ee3f83543
BLAKE2b-256 459d5e5a8672adadca8ec142ac7bc1ee8a6ff66cae08e02332af737812830640

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71dd66cb658d60008551cefb02fc350ac7b8b84c6f92e56a5e56cf93c992d589
MD5 b61a2fe0d717caee2de4436180ff1f64
BLAKE2b-256 fc3ad31b9e54a94b659377308c11047980baf9c3124f6331d7f501c0aba66ac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2e4890b3571eef8623f14837e9c056a1094f38a32e628e45ba1020caa3a642f0
MD5 df9551cd1b7006e200ad0e06d92528ae
BLAKE2b-256 f1f74773f1587afa4606d0f44e3c8eea313844dee955bb484ffe1945d4c6471c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c81d8c1db8803e12bbcb624065fa07f26ab633498a2ddb5bea728b0aa98426f3
MD5 fb0d4a4cbac324adbcbd2b812bde27e2
BLAKE2b-256 dac4aaec3366bb36c9e8467b02c0afb2e5fded35e19fbbcb9305f5e9ab185f98

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0fdaccf98bf83a81a5176284820cae04349be3d9f35eed914533fa336f685399
MD5 8f7196fa3808cba09516df28b66c8f12
BLAKE2b-256 b82beec58b06369c4d9b0974606d184828582288ce704f1477943bb89bfede65

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b5508b3093486647b06dd25c15b8d0d25d495e4eb59ae0b5decc130b6d2517d5
MD5 82dce0dd0be13887b7307b19ba341d66
BLAKE2b-256 a9b1c1fe8a1f570ecfcc25364d89bc00c3fccb463a3754e40d0a0b33efd942b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp38-cp38-win_amd64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: cppjieba_py_dat-0.0.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3723232cbb5c6ee711ef4162b7af5d1eb2e259ba1d802460de286ae735e168d7
MD5 be194ff3e073bda7f4e4a3c45fb7ab55
BLAKE2b-256 045e5a1455ad8b77235293cad570e19775713ed61cfe4bb1be508b3121a3473c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp38-cp38-win32.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 853d7e56115c66d867419b1bf0a5d0eca953de685be3f4e4dc224da9061326d5
MD5 888f6df068b49340658157f243f1529f
BLAKE2b-256 c0b93e710dd0725a8e24031ec249b2f45b940f9eb04d3867108e481994d3d892

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb86130474e6201cc9bf886e1c541f936594dc64531fbb4d14472f9597232ca5
MD5 65bb5ba50ffe5e01bd84a7b35f305115
BLAKE2b-256 224090f418d637b047062339f635f7dbb8b92581b3a074ce80ecb90b9bb44c00

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6871533b40c55ef84e82cda52782ef69da5bf62503ce8cc87d47028aab10b3da
MD5 4aebcf8e961d991d60992572ce9dd1df
BLAKE2b-256 f6dbe2c71b60035ef666dbbd3fe3d22ce7026aad438591440ba558ff8aff2ba3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ab71695300e89df247553c158e12055c41a38880e1474d2ae21938eb7d4718b
MD5 1be2534f9f1a079c8c4f83ef6bb61909
BLAKE2b-256 a7c414e24da75692803300626c5290ad776ae4470155bf23985f61a3e3d1560a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e731fa2051d06aacaa9d973980833a7761ea8365e0d9f245012a1236cbd5d7f8
MD5 561f7e4a42ff296ef3560c6995277eca
BLAKE2b-256 89f95c030f4ae41c62ab908d0866ba811012b8e667988e5f2ca432cf9ad8518e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cppjieba_py_dat-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cppjieba_py_dat-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e781dba57bb30e160645dafb216068af6e0905e7ad400b8f88b5c759ce0288cb
MD5 c2815396bd14c87bb6e424f3e83b080b
BLAKE2b-256 483c8ec787e2cd9a205005e8877fcca5f93b24bfc7bd8e27cc89d385d6b9ed52

See more details on using hashes here.

Provenance

The following attestation bundles were made for cppjieba_py_dat-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on xiaosuyyds/cppjieba-py-dat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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