An open API service indexing awesome lists of open source software.

https://github.com/assad2008/python-scws

scws Python扩展
https://github.com/assad2008/python-scws

Last synced: 9 months ago
JSON representation

scws Python扩展

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 '-----'