https://github.com/assad2008/python-scws
scws Python扩展
https://github.com/assad2008/python-scws
Last synced: 9 months ago
JSON representation
scws Python扩展
- Host: GitHub
- URL: https://github.com/assad2008/python-scws
- Owner: assad2008
- Created: 2013-04-10T07:25:44.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-04-19T09:51:28.000Z (over 12 years ago)
- Last Synced: 2025-03-28T23:34:18.028Z (10 months ago)
- Language: C
- Size: 127 KB
- Stars: 7
- Watchers: 1
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Simple Chinese Word Segmentation Python package
======================
SCWS:http://www.ftphp.com/scws/
使用
#coding:utf8
import sys
from fenci import fenci
fc = fenci()
fc.init_fenci()
ret = fc.get_text_fc('王晓明是个大坏蛋,十点二十分天马行空般的去打篮球')
for i in ret:
print i[0]
print '-----'