stop_words.py
用来获取停用词集合,会生成stopwords.txt
文件
generate_user_dict.py
用来生成自定义词典文件 userdict.txt
conf.py
一些简单配置
client.py
rpc客户端测试代码,调用rpc服务的代码参考该文件内代码实现
custom_cut_server.py
是自定义词典分词的rpc服务代码,其中加载了自定义分词,并使用停用词和词性进行了过滤
rpc_conf.py
是rpc服务的几个配置项
1.根据需要配置 conf.py
内数据库信息和server目录内rpc_conf.py
信息
2.运行server目录内的custom_cut_server.py
启动rpc服务端
3.运行client.py
测试
pip install grpcio
pip install protobuf
pip install grpcio-tools