├── .gitattributes ├── .gitignore ├── README.md ├── __init__.py ├── analysis ├── __init__.py ├── analysis_main.py ├── analyze_data.py ├── analyze_spark.py ├── create_chart.py ├── input_data.py ├── interaction.py └── process_data.py ├── conf ├── conf.ini ├── my.ini └── 一万.ini ├── data └── test.csv ├── install_package.bat ├── js.7z ├── my.ini ├── requirements.txt ├── server.py ├── spider ├── conf.ini ├── spider_main.py └── tool │ ├── __init__.py │ ├── log.py │ └── timer.py ├── static ├── css │ ├── c1.css │ └── mdui.min.css ├── html │ ├── bing.html │ ├── qiu1.html │ ├── qiu2.html │ └── qiu3.html ├── icon │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── QR.jpg │ ├── home.png │ ├── qq.png │ ├── robot.png │ ├── us.png │ └── us │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ └── 5.jpg └── webjs │ ├── jquery-3.3.1.min.js │ └── mdui.min.js └── templates ├── index.html ├── interaction.html ├── show.html ├── spider.html ├── test.html └── us.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Project exclude paths 2 | /web/data/ 3 | /static/webjs/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/analysis/__init__.py -------------------------------------------------------------------------------- /analysis/analysis_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/analysis/analysis_main.py -------------------------------------------------------------------------------- /analysis/analyze_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/analysis/analyze_data.py -------------------------------------------------------------------------------- /analysis/analyze_spark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/analysis/analyze_spark.py -------------------------------------------------------------------------------- /analysis/create_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/analysis/create_chart.py -------------------------------------------------------------------------------- /analysis/input_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/analysis/input_data.py -------------------------------------------------------------------------------- /analysis/interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/analysis/interaction.py -------------------------------------------------------------------------------- /analysis/process_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/analysis/process_data.py -------------------------------------------------------------------------------- /conf/conf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/conf/conf.ini -------------------------------------------------------------------------------- /conf/my.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/conf/my.ini -------------------------------------------------------------------------------- /conf/一万.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/conf/一万.ini -------------------------------------------------------------------------------- /data/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/data/test.csv -------------------------------------------------------------------------------- /install_package.bat: -------------------------------------------------------------------------------- 1 | pip install -r requirements.txt -------------------------------------------------------------------------------- /js.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/js.7z -------------------------------------------------------------------------------- /my.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/my.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/server.py -------------------------------------------------------------------------------- /spider/conf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/spider/conf.ini -------------------------------------------------------------------------------- /spider/spider_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/spider/spider_main.py -------------------------------------------------------------------------------- /spider/tool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spider/tool/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/spider/tool/log.py -------------------------------------------------------------------------------- /spider/tool/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/spider/tool/timer.py -------------------------------------------------------------------------------- /static/css/c1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/css/c1.css -------------------------------------------------------------------------------- /static/css/mdui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/css/mdui.min.css -------------------------------------------------------------------------------- /static/html/bing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/html/bing.html -------------------------------------------------------------------------------- /static/html/qiu1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/html/qiu1.html -------------------------------------------------------------------------------- /static/html/qiu2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/html/qiu2.html -------------------------------------------------------------------------------- /static/html/qiu3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/html/qiu3.html -------------------------------------------------------------------------------- /static/icon/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/icon/1.png -------------------------------------------------------------------------------- /static/icon/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/icon/2.png -------------------------------------------------------------------------------- /static/icon/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/icon/3.png -------------------------------------------------------------------------------- /static/icon/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/icon/4.png -------------------------------------------------------------------------------- /static/icon/QR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/icon/QR.jpg -------------------------------------------------------------------------------- /static/icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/icon/home.png -------------------------------------------------------------------------------- /static/icon/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/icon/qq.png -------------------------------------------------------------------------------- /static/icon/robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/icon/robot.png -------------------------------------------------------------------------------- /static/icon/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/icon/us.png -------------------------------------------------------------------------------- /static/icon/us/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/icon/us/1.jpg -------------------------------------------------------------------------------- /static/icon/us/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/icon/us/2.jpg -------------------------------------------------------------------------------- /static/icon/us/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/icon/us/3.jpg -------------------------------------------------------------------------------- /static/icon/us/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/icon/us/4.jpg -------------------------------------------------------------------------------- /static/icon/us/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/icon/us/5.jpg -------------------------------------------------------------------------------- /static/webjs/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/webjs/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /static/webjs/mdui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/static/webjs/mdui.min.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/interaction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/templates/interaction.html -------------------------------------------------------------------------------- /templates/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/templates/show.html -------------------------------------------------------------------------------- /templates/spider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/templates/spider.html -------------------------------------------------------------------------------- /templates/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/templates/test.html -------------------------------------------------------------------------------- /templates/us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xming521/WorkAggregation/HEAD/templates/us.html --------------------------------------------------------------------------------