├── .gitattributes ├── .idea ├── ProductAnalysis.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── markdown-navigator.xml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── ProductAnalysis ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── README.md ├── app ├── ProductData │ ├── __init__.py │ ├── config.py │ ├── items.py │ ├── log_helper.py │ ├── middlewares.py │ ├── pipelines.py │ ├── redis_helper.py │ ├── run.py │ ├── settings.py │ ├── spiders │ │ ├── __init__.py │ │ └── zol.py │ └── sql_hepler.py ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── scrapy.cfg ├── search_indexes.py ├── templatetags │ ├── __init__.py │ └── product_tags.py ├── tests.py └── views.py ├── doc ├── django1.8中文文档.pdf ├── django之查询.md ├── python必备知识点.md ├── scrapy知识汇总.md └── 数据分析之pandas.md ├── hepler ├── __init__.py ├── config.py ├── file_hepler.py ├── log_helper.py ├── make_bokeh_hepler.py ├── make_gif_helper.py ├── make_plot_helper.py └── redis_helper.py ├── manage.py ├── requirements.txt ├── screen ├── Scrapy流程.png ├── index.png └── search.png ├── static ├── css │ ├── bokeh-0.12.6.min.css │ ├── bootstrap.min.css │ ├── font-awesome.min.css │ ├── light-bootstrap-dashboard.css │ ├── loading.css │ └── main.css ├── file │ └── product_info.json ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── gif │ ├── loading.gif │ └── loading1.gif ├── img │ ├── bg-1.jpg │ ├── bg-2.jpg │ ├── load.gif │ ├── logo.png │ └── sidebar.jpg ├── js │ ├── bokeh-0.12.6.min.js │ ├── bootstrap.min.js │ ├── jquery-1.11.1.min.js │ ├── jquery.backstretch.min.js │ ├── jquery.simple-text-rotator.min.js │ ├── loading.js │ ├── main.js │ ├── search.js │ └── wow.min.js └── upload │ ├── no_good_comments.png │ ├── no_hot.png │ └── no_overview.png └── templates ├── analysis.html ├── base.html ├── index.html └── search ├── indexes └── app │ └── productinfo_text.txt └── search.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/.gitattributes -------------------------------------------------------------------------------- /.idea/ProductAnalysis.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/.idea/ProductAnalysis.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /ProductAnalysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/ProductAnalysis/__init__.py -------------------------------------------------------------------------------- /ProductAnalysis/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/ProductAnalysis/settings.py -------------------------------------------------------------------------------- /ProductAnalysis/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/ProductAnalysis/urls.py -------------------------------------------------------------------------------- /ProductAnalysis/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/ProductAnalysis/wsgi.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/README.md -------------------------------------------------------------------------------- /app/ProductData/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/ProductData/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/ProductData/config.py -------------------------------------------------------------------------------- /app/ProductData/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/ProductData/items.py -------------------------------------------------------------------------------- /app/ProductData/log_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/ProductData/log_helper.py -------------------------------------------------------------------------------- /app/ProductData/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/ProductData/middlewares.py -------------------------------------------------------------------------------- /app/ProductData/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/ProductData/pipelines.py -------------------------------------------------------------------------------- /app/ProductData/redis_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/ProductData/redis_helper.py -------------------------------------------------------------------------------- /app/ProductData/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/ProductData/run.py -------------------------------------------------------------------------------- /app/ProductData/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/ProductData/settings.py -------------------------------------------------------------------------------- /app/ProductData/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/ProductData/spiders/__init__.py -------------------------------------------------------------------------------- /app/ProductData/spiders/zol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/ProductData/spiders/zol.py -------------------------------------------------------------------------------- /app/ProductData/sql_hepler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/ProductData/sql_hepler.py -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/admin.py -------------------------------------------------------------------------------- /app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/apps.py -------------------------------------------------------------------------------- /app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/migrations/0001_initial.py -------------------------------------------------------------------------------- /app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/models.py -------------------------------------------------------------------------------- /app/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/scrapy.cfg -------------------------------------------------------------------------------- /app/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/search_indexes.py -------------------------------------------------------------------------------- /app/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | # !/usr/bin/env python 2 | # -*- coding:utf-8 -*- 3 | -------------------------------------------------------------------------------- /app/templatetags/product_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/templatetags/product_tags.py -------------------------------------------------------------------------------- /app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/tests.py -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/app/views.py -------------------------------------------------------------------------------- /doc/django1.8中文文档.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/doc/django1.8中文文档.pdf -------------------------------------------------------------------------------- /doc/django之查询.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/doc/django之查询.md -------------------------------------------------------------------------------- /doc/python必备知识点.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/doc/python必备知识点.md -------------------------------------------------------------------------------- /doc/scrapy知识汇总.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/doc/scrapy知识汇总.md -------------------------------------------------------------------------------- /doc/数据分析之pandas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/doc/数据分析之pandas.md -------------------------------------------------------------------------------- /hepler/__init__.py: -------------------------------------------------------------------------------- 1 | # !/usr/bin/env python 2 | # -*- coding:utf-8 -*- -------------------------------------------------------------------------------- /hepler/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/hepler/config.py -------------------------------------------------------------------------------- /hepler/file_hepler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/hepler/file_hepler.py -------------------------------------------------------------------------------- /hepler/log_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/hepler/log_helper.py -------------------------------------------------------------------------------- /hepler/make_bokeh_hepler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/hepler/make_bokeh_hepler.py -------------------------------------------------------------------------------- /hepler/make_gif_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/hepler/make_gif_helper.py -------------------------------------------------------------------------------- /hepler/make_plot_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/hepler/make_plot_helper.py -------------------------------------------------------------------------------- /hepler/redis_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/hepler/redis_helper.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/requirements.txt -------------------------------------------------------------------------------- /screen/Scrapy流程.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/screen/Scrapy流程.png -------------------------------------------------------------------------------- /screen/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/screen/index.png -------------------------------------------------------------------------------- /screen/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/screen/search.png -------------------------------------------------------------------------------- /static/css/bokeh-0.12.6.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/css/bokeh-0.12.6.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /static/css/light-bootstrap-dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/css/light-bootstrap-dashboard.css -------------------------------------------------------------------------------- /static/css/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/css/loading.css -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/file/product_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/file/product_info.json -------------------------------------------------------------------------------- /static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/gif/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/gif/loading.gif -------------------------------------------------------------------------------- /static/gif/loading1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/gif/loading1.gif -------------------------------------------------------------------------------- /static/img/bg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/img/bg-1.jpg -------------------------------------------------------------------------------- /static/img/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/img/bg-2.jpg -------------------------------------------------------------------------------- /static/img/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/img/load.gif -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /static/img/sidebar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/img/sidebar.jpg -------------------------------------------------------------------------------- /static/js/bokeh-0.12.6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/js/bokeh-0.12.6.min.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/js/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /static/js/jquery.backstretch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/js/jquery.backstretch.min.js -------------------------------------------------------------------------------- /static/js/jquery.simple-text-rotator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/js/jquery.simple-text-rotator.min.js -------------------------------------------------------------------------------- /static/js/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/js/loading.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/js/main.js -------------------------------------------------------------------------------- /static/js/search.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /static/js/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/js/wow.min.js -------------------------------------------------------------------------------- /static/upload/no_good_comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/upload/no_good_comments.png -------------------------------------------------------------------------------- /static/upload/no_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/upload/no_hot.png -------------------------------------------------------------------------------- /static/upload/no_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/static/upload/no_overview.png -------------------------------------------------------------------------------- /templates/analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/templates/analysis.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/search/indexes/app/productinfo_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/templates/search/indexes/app/productinfo_text.txt -------------------------------------------------------------------------------- /templates/search/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonhy/ProductAnalysis/HEAD/templates/search/search.html --------------------------------------------------------------------------------