├── .gitignore ├── Mid.png ├── Neg.png ├── Pos.png ├── README.txt ├── bd.jpg ├── crawl.py ├── degree_dict ├── insufficiently.txt ├── inverse.txt ├── ish.txt ├── more.txt ├── most.txt ├── over.txt └── very.txt ├── dict_main.py ├── emotion_dict ├── neg_all_dict.txt ├── pos_all_dict.txt └── stop_words.txt ├── font.ttf ├── gui.py ├── text ├── Read Me.txt ├── mid.csv ├── neg.csv ├── pos.csv ├── result.txt ├── test_result.txt └── text_test.txt ├── text_process.py └── word_cloud.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/.gitignore -------------------------------------------------------------------------------- /Mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/Mid.png -------------------------------------------------------------------------------- /Neg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/Neg.png -------------------------------------------------------------------------------- /Pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/Pos.png -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/README.txt -------------------------------------------------------------------------------- /bd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/bd.jpg -------------------------------------------------------------------------------- /crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/crawl.py -------------------------------------------------------------------------------- /degree_dict/insufficiently.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/degree_dict/insufficiently.txt -------------------------------------------------------------------------------- /degree_dict/inverse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/degree_dict/inverse.txt -------------------------------------------------------------------------------- /degree_dict/ish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/degree_dict/ish.txt -------------------------------------------------------------------------------- /degree_dict/more.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/degree_dict/more.txt -------------------------------------------------------------------------------- /degree_dict/most.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/degree_dict/most.txt -------------------------------------------------------------------------------- /degree_dict/over.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/degree_dict/over.txt -------------------------------------------------------------------------------- /degree_dict/very.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/degree_dict/very.txt -------------------------------------------------------------------------------- /dict_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/dict_main.py -------------------------------------------------------------------------------- /emotion_dict/neg_all_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/emotion_dict/neg_all_dict.txt -------------------------------------------------------------------------------- /emotion_dict/pos_all_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/emotion_dict/pos_all_dict.txt -------------------------------------------------------------------------------- /emotion_dict/stop_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/emotion_dict/stop_words.txt -------------------------------------------------------------------------------- /font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/font.ttf -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/gui.py -------------------------------------------------------------------------------- /text/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/text/Read Me.txt -------------------------------------------------------------------------------- /text/mid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/text/mid.csv -------------------------------------------------------------------------------- /text/neg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/text/neg.csv -------------------------------------------------------------------------------- /text/pos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/text/pos.csv -------------------------------------------------------------------------------- /text/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/text/result.txt -------------------------------------------------------------------------------- /text/test_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/text/test_result.txt -------------------------------------------------------------------------------- /text/text_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/text/text_test.txt -------------------------------------------------------------------------------- /text_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/text_process.py -------------------------------------------------------------------------------- /word_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqh0612/Zhihu-Crawler-and-Sentiment-Analysis/HEAD/word_cloud.py --------------------------------------------------------------------------------