├── .gitignore ├── README.md ├── data ├── count_product_reviews.py ├── create_data_sub.py └── products-sorted-by-reviews.json ├── example.txt ├── keyword_extraction.py ├── license.txt ├── model.py ├── product_genius.py ├── product_genius.sql ├── requirements.txt ├── seed.py ├── server.py ├── static ├── css │ ├── jqcloud.css │ └── styles.css ├── img │ ├── Shopping-online.jpg │ ├── favicon.ico │ ├── favorite.png │ ├── heart-empty.jpg │ ├── heart.png │ ├── homepage.png │ ├── keywords.png │ ├── login.png │ ├── pg_score.png │ ├── review_search.png │ ├── search_results.png │ └── user_page.png └── js │ ├── favorites.js │ ├── histogram.js │ ├── jqcloud.js │ ├── jquery.highlight-5.js │ ├── search_reviews.js │ └── word-clouds.js ├── templates ├── base.html ├── homepage.html ├── login_form.html ├── product_details.html ├── product_listing.html ├── register_form.html └── user_page.html └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | env 2 | SECRETS.sh 3 | *.pyc 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/README.md -------------------------------------------------------------------------------- /data/count_product_reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/data/count_product_reviews.py -------------------------------------------------------------------------------- /data/create_data_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/data/create_data_sub.py -------------------------------------------------------------------------------- /data/products-sorted-by-reviews.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/data/products-sorted-by-reviews.json -------------------------------------------------------------------------------- /example.txt: -------------------------------------------------------------------------------- 1 | Hi 2 | -------------------------------------------------------------------------------- /keyword_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/keyword_extraction.py -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/license.txt -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/model.py -------------------------------------------------------------------------------- /product_genius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/product_genius.py -------------------------------------------------------------------------------- /product_genius.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/product_genius.sql -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/requirements.txt -------------------------------------------------------------------------------- /seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/seed.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/server.py -------------------------------------------------------------------------------- /static/css/jqcloud.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/css/jqcloud.css -------------------------------------------------------------------------------- /static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/css/styles.css -------------------------------------------------------------------------------- /static/img/Shopping-online.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/img/Shopping-online.jpg -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/img/favorite.png -------------------------------------------------------------------------------- /static/img/heart-empty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/img/heart-empty.jpg -------------------------------------------------------------------------------- /static/img/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/img/heart.png -------------------------------------------------------------------------------- /static/img/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/img/homepage.png -------------------------------------------------------------------------------- /static/img/keywords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/img/keywords.png -------------------------------------------------------------------------------- /static/img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/img/login.png -------------------------------------------------------------------------------- /static/img/pg_score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/img/pg_score.png -------------------------------------------------------------------------------- /static/img/review_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/img/review_search.png -------------------------------------------------------------------------------- /static/img/search_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/img/search_results.png -------------------------------------------------------------------------------- /static/img/user_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/img/user_page.png -------------------------------------------------------------------------------- /static/js/favorites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/js/favorites.js -------------------------------------------------------------------------------- /static/js/histogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/js/histogram.js -------------------------------------------------------------------------------- /static/js/jqcloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/js/jqcloud.js -------------------------------------------------------------------------------- /static/js/jquery.highlight-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/js/jquery.highlight-5.js -------------------------------------------------------------------------------- /static/js/search_reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/js/search_reviews.js -------------------------------------------------------------------------------- /static/js/word-clouds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/static/js/word-clouds.js -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/templates/homepage.html -------------------------------------------------------------------------------- /templates/login_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/templates/login_form.html -------------------------------------------------------------------------------- /templates/product_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/templates/product_details.html -------------------------------------------------------------------------------- /templates/product_listing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/templates/product_listing.html -------------------------------------------------------------------------------- /templates/register_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/templates/register_form.html -------------------------------------------------------------------------------- /templates/user_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/templates/user_page.html -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michberr/ProductGenius/HEAD/tests.py --------------------------------------------------------------------------------