├── .gitignore ├── .gitmodules ├── README.md ├── config ├── grabrr.py ├── mysql.ini └── spider.ini ├── downloader.py ├── get_info.py ├── net_graph.py ├── parse.py ├── repo_file.py ├── repo_mysql.py ├── requirement.txt ├── settings.py ├── spider.py ├── test_net_graph.png ├── test_parse.py └── topic ├── README.md ├── demo.py ├── jieba-master.zip ├── jieba ├── README.md ├── __init__.py ├── analyse │ ├── __init__.py │ └── idf.txt ├── dict.txt ├── finalseg │ ├── __init__.py │ ├── prob_emit.py │ ├── prob_start.py │ └── prob_trans.py └── posseg │ ├── __init__.py │ ├── char_state_tab.py │ ├── prob_emit.py │ ├── prob_start.py │ ├── prob_trans.py │ └── viterbi.py └── nstatus_nkeyword.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/README.md -------------------------------------------------------------------------------- /config/grabrr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/config/grabrr.py -------------------------------------------------------------------------------- /config/mysql.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/config/mysql.ini -------------------------------------------------------------------------------- /config/spider.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/config/spider.ini -------------------------------------------------------------------------------- /downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/downloader.py -------------------------------------------------------------------------------- /get_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/get_info.py -------------------------------------------------------------------------------- /net_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/net_graph.py -------------------------------------------------------------------------------- /parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/parse.py -------------------------------------------------------------------------------- /repo_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/repo_file.py -------------------------------------------------------------------------------- /repo_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/repo_mysql.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- 1 | httplib2 2 | mysql-python 3 | -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/settings.py -------------------------------------------------------------------------------- /spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/spider.py -------------------------------------------------------------------------------- /test_net_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/test_net_graph.png -------------------------------------------------------------------------------- /test_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/test_parse.py -------------------------------------------------------------------------------- /topic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/README.md -------------------------------------------------------------------------------- /topic/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/demo.py -------------------------------------------------------------------------------- /topic/jieba-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/jieba-master.zip -------------------------------------------------------------------------------- /topic/jieba/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/jieba/README.md -------------------------------------------------------------------------------- /topic/jieba/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/jieba/__init__.py -------------------------------------------------------------------------------- /topic/jieba/analyse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/jieba/analyse/__init__.py -------------------------------------------------------------------------------- /topic/jieba/analyse/idf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/jieba/analyse/idf.txt -------------------------------------------------------------------------------- /topic/jieba/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/jieba/dict.txt -------------------------------------------------------------------------------- /topic/jieba/finalseg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/jieba/finalseg/__init__.py -------------------------------------------------------------------------------- /topic/jieba/finalseg/prob_emit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/jieba/finalseg/prob_emit.py -------------------------------------------------------------------------------- /topic/jieba/finalseg/prob_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/jieba/finalseg/prob_start.py -------------------------------------------------------------------------------- /topic/jieba/finalseg/prob_trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/jieba/finalseg/prob_trans.py -------------------------------------------------------------------------------- /topic/jieba/posseg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/jieba/posseg/__init__.py -------------------------------------------------------------------------------- /topic/jieba/posseg/char_state_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/jieba/posseg/char_state_tab.py -------------------------------------------------------------------------------- /topic/jieba/posseg/prob_emit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/jieba/posseg/prob_emit.py -------------------------------------------------------------------------------- /topic/jieba/posseg/prob_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/jieba/posseg/prob_start.py -------------------------------------------------------------------------------- /topic/jieba/posseg/prob_trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/jieba/posseg/prob_trans.py -------------------------------------------------------------------------------- /topic/jieba/posseg/viterbi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/jieba/posseg/viterbi.py -------------------------------------------------------------------------------- /topic/nstatus_nkeyword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/renren/HEAD/topic/nstatus_nkeyword.png --------------------------------------------------------------------------------