Metadata-Version: 2.1
Name: sougou-fenci
Version: 1.1.5
Summary: 搜狗分词工具
Home-page: https://github.com/SharpCX/sougou_fenci.git
Author: cx
Author-email: sharpcx@live.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests

## 搜狗分词工具
## python版(有node版)
### 安装
`pip install sougou_fenci`

### command-line
$ sougou_fenci 武汉市长江大桥
-> 
武汉市 n
长江 n
大桥 n
![commandline](../screenshot/screen1.png?raw=true "commandline")

### code
``` python
import sougou_fenci
resp = sougoou_fenci.get_fenci("武汉市长江大桥")
for result_item in resp.result:
    print(row_format.format(result_item[0], result_item[1]))

# 结 果
# 武汉市         n
# 长江         n
# 大桥         n
```



