pip install nlp_segmentation
$ sougou_fenci 武汉市长江大桥
武汉市 n
长江 n
大桥 n
$ baidu_fenci 武汉市长江大桥
武汉 地名
长江大桥 地名
import nlp_segmentation
resp = nlp_segmentation.sougou("武汉市长江大桥")
for result_item in resp.result:
print(row_format.format(result_item[0], result_item[1]))
# 结 果
# 武汉市 n
# 长江 n
# 大桥 n
import nlp_segmentation
resp = nlp_segmentation.baidu("武汉市长江大桥")
for result_item in resp.result:
print(row_format.format(result_item[0], result_item[1]))
# 结 果
# 武汉市 地名
# 长江大桥 地名