Metadata-Version: 2.1
Name: grasspy-jieba
Version: 0.0.2
Summary: Chinsese version of jieba for grasspy
Home-page: https://gitee.com/laowu2019_admin/zwjieba
Author: Laowu Grasspy
Author-email: 760230681@qq.com
License: UNKNOWN
Project-URL: Bug Tracker, https://gitee.com/laowu2019_admin/zwjieba/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# 结巴——jieba 中文版

#### 介绍
草蟒中文分词库——结巴（jieba中文版）

#### 安装

`python -m pip install -U grasspy-jieba`

#### 使用说明

```python
>>> 导入 结巴
>>> 结巴.分词列表('我来到了中国科学技术大学')
['我', '来到', '了', '中国', '科学技术', '大学']
```

更多信息请参阅《草蟒（Python 中文版）入门指南》中的分词相关示例


