Thumbs.db ehthumbs.db Desktop.ini
*.pyc *.so *.egg *.egg-info
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| ######################################################################## | |
| # | |
| # Copyright (c) 2016 Baidu.com, Inc. All Rights Reserved | |
| # | |
| ######################################################################## | |
| """ | |
| File: config_parse_read.py |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| ######################################################################## | |
| # | |
| # Copyright (c) 2016 Baidu.com, Inc. All Rights Reserved | |
| # | |
| ######################################################################## | |
| """ | |
| File: worker_costumer.py |
| import termcolor | |
| # special use | |
| red_on_cyan = lambda x: termcolor.colored(x, 'red', 'on_cyan') | |
| print red_on_cyan('* MiniSpider is Staring ... ') | |
| # general use | |
| print termcolor.colored('* MiniSpider Configurations list as follows:', 'green') | |
| print termcolor.colored('* MiniSpider Configurations list as follows:', 'red') |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| ######################################################################## | |
| # | |
| # Copyright (c) 2016 Baidu.com, Inc. All Rights Reserved | |
| # | |
| ######################################################################## | |
| """ | |
| File: log.py |
##参考链接
##问题 - 可能会遇到多个版本同时部署的情况
##解决方法 - pyenv
####Defination: SeaweedFS is a simple and highly scalable distributed file system, two objectives as follows:
####Fetures:
| ###<font color=red>Jieba</font> | |
| ___ | |
| ####Features | |
| ######1.三种分词模式 | |
| > | |
| * 精确模式:试图将句子最精确地切开,适合文本分析; | |
| * 全模式:把句子中所有的可以成词的词语都扫描出来, 速度非常快,但是不能解决歧义; | |
| * 搜索引擎模式:在精确模式的基础上,对长词再次切分,提高召回率,适合用于搜索引擎分词。 | |
| ######2.支持繁体分词 |