├── .gitignore ├── README.md ├── cookie.txt ├── dictionary ├── Chinese_stop_words.txt ├── degree_words.txt ├── deny_words.txt ├── negative_words.txt └── positive_words.txt ├── doc ├── create_mysql_table.txt └── readme_image │ ├── comments.png │ ├── get_cookie.png │ ├── num_comments.png │ └── word_cloud.png ├── requirements.txt ├── text_emotion.py ├── weibo-comments └── 20190808082357-weibo.csv └── weibo_comment_crawler.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lu-zc/weibo-comment-crawler/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lu-zc/weibo-comment-crawler/HEAD/README.md -------------------------------------------------------------------------------- /cookie.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dictionary/Chinese_stop_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lu-zc/weibo-comment-crawler/HEAD/dictionary/Chinese_stop_words.txt -------------------------------------------------------------------------------- /dictionary/degree_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lu-zc/weibo-comment-crawler/HEAD/dictionary/degree_words.txt -------------------------------------------------------------------------------- /dictionary/deny_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lu-zc/weibo-comment-crawler/HEAD/dictionary/deny_words.txt -------------------------------------------------------------------------------- /dictionary/negative_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lu-zc/weibo-comment-crawler/HEAD/dictionary/negative_words.txt -------------------------------------------------------------------------------- /dictionary/positive_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lu-zc/weibo-comment-crawler/HEAD/dictionary/positive_words.txt -------------------------------------------------------------------------------- /doc/create_mysql_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lu-zc/weibo-comment-crawler/HEAD/doc/create_mysql_table.txt -------------------------------------------------------------------------------- /doc/readme_image/comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lu-zc/weibo-comment-crawler/HEAD/doc/readme_image/comments.png -------------------------------------------------------------------------------- /doc/readme_image/get_cookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lu-zc/weibo-comment-crawler/HEAD/doc/readme_image/get_cookie.png -------------------------------------------------------------------------------- /doc/readme_image/num_comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lu-zc/weibo-comment-crawler/HEAD/doc/readme_image/num_comments.png -------------------------------------------------------------------------------- /doc/readme_image/word_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lu-zc/weibo-comment-crawler/HEAD/doc/readme_image/word_cloud.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lu-zc/weibo-comment-crawler/HEAD/requirements.txt -------------------------------------------------------------------------------- /text_emotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lu-zc/weibo-comment-crawler/HEAD/text_emotion.py -------------------------------------------------------------------------------- /weibo-comments/20190808082357-weibo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lu-zc/weibo-comment-crawler/HEAD/weibo-comments/20190808082357-weibo.csv -------------------------------------------------------------------------------- /weibo_comment_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lu-zc/weibo-comment-crawler/HEAD/weibo_comment_crawler.py --------------------------------------------------------------------------------