├── .gitignore ├── .idea ├── UGC_analysis.iml ├── deployment.xml ├── encodings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── RealTime_UGC_Analysis_GUI.py ├── data_source ├── data_source_description.txt └── demo_resource.txt ├── pic ├── 1.jpeg ├── 7.jpeg ├── GUI_main.png ├── best_comment_analysis.png ├── data_collector.png ├── environment_analysis.png ├── label.png ├── meituan.png ├── rebook.png ├── sentiment_analysis.png ├── time_line.png └── total_score.png ├── resource.txt └── txt_analysis ├── picturing.py ├── spider_xiecheng.py └── spider_zhenguo.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/UGC_analysis.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/.idea/UGC_analysis.iml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/README.md -------------------------------------------------------------------------------- /RealTime_UGC_Analysis_GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/RealTime_UGC_Analysis_GUI.py -------------------------------------------------------------------------------- /data_source/data_source_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/data_source/data_source_description.txt -------------------------------------------------------------------------------- /data_source/demo_resource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/data_source/demo_resource.txt -------------------------------------------------------------------------------- /pic/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/pic/1.jpeg -------------------------------------------------------------------------------- /pic/7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/pic/7.jpeg -------------------------------------------------------------------------------- /pic/GUI_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/pic/GUI_main.png -------------------------------------------------------------------------------- /pic/best_comment_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/pic/best_comment_analysis.png -------------------------------------------------------------------------------- /pic/data_collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/pic/data_collector.png -------------------------------------------------------------------------------- /pic/environment_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/pic/environment_analysis.png -------------------------------------------------------------------------------- /pic/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/pic/label.png -------------------------------------------------------------------------------- /pic/meituan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/pic/meituan.png -------------------------------------------------------------------------------- /pic/rebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/pic/rebook.png -------------------------------------------------------------------------------- /pic/sentiment_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/pic/sentiment_analysis.png -------------------------------------------------------------------------------- /pic/time_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/pic/time_line.png -------------------------------------------------------------------------------- /pic/total_score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/pic/total_score.png -------------------------------------------------------------------------------- /resource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/resource.txt -------------------------------------------------------------------------------- /txt_analysis/picturing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/txt_analysis/picturing.py -------------------------------------------------------------------------------- /txt_analysis/spider_xiecheng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/txt_analysis/spider_xiecheng.py -------------------------------------------------------------------------------- /txt_analysis/spider_zhenguo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarryChang/Real_Time_DataMining_Software/HEAD/txt_analysis/spider_zhenguo.py --------------------------------------------------------------------------------