Metadata-Version: 2.4
Name: jieba_pyfast
Version: 4.0.0
Summary: Tokenize Chinese characters
Author-email: snapADDY GmbH <info@snapaddy.com>
License-Expression: MIT
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# jieba_pyfast

A Chinese text segmentation module with C extensions for speed.

## Installation

```
pip install jieba_pyfast
```

## Usage

```python
import jieba_pyfast as jieba

# Basic segmentation
list(jieba.cut('下雨天留客天留我不留'))
# ['下雨天', '留客', '天留', '我', '不留']

# Load custom dictionary
jieba.load_userdict('userdict.txt')
```
