├── .gitignore ├── README.md ├── data_analysis_ML ├── Products_DataAnalysis_ML.ipynb ├── Reviews_EDA.ipynb ├── dbs.pdf ├── price.png └── rating_vs_lovecount.png ├── image ├── brand_list_screenshot.png ├── product_info_screenshot.png └── product_list_screenshot.png ├── index.html ├── nb_clean_data ├── clean_product_data.ipynb └── clean_review_data.ipynb ├── nb_recommendation ├── Recom_CB.ipynb ├── Recom_CF_FastAI.ipynb ├── Recom_CF_wo_packages.ipynb └── Recom_Hybrid.ipynb ├── scraper ├── parse_reviews.py ├── scrape_brand_links.py ├── scrape_product_info.py ├── scrape_product_links.py └── scrape_reviews.py └── vis ├── cat.png ├── cat_1.png ├── cat_2.png ├── cat_3.png ├── corr_pop.png ├── price_1.png ├── price_age_1.png ├── price_age_2.png ├── price_brand.png ├── price_dist.png ├── price_love.png ├── price_ratings.png ├── price_reviews.png └── price_subcat.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/README.md -------------------------------------------------------------------------------- /data_analysis_ML/Products_DataAnalysis_ML.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/data_analysis_ML/Products_DataAnalysis_ML.ipynb -------------------------------------------------------------------------------- /data_analysis_ML/Reviews_EDA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/data_analysis_ML/Reviews_EDA.ipynb -------------------------------------------------------------------------------- /data_analysis_ML/dbs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/data_analysis_ML/dbs.pdf -------------------------------------------------------------------------------- /data_analysis_ML/price.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/data_analysis_ML/price.png -------------------------------------------------------------------------------- /data_analysis_ML/rating_vs_lovecount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/data_analysis_ML/rating_vs_lovecount.png -------------------------------------------------------------------------------- /image/brand_list_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/image/brand_list_screenshot.png -------------------------------------------------------------------------------- /image/product_info_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/image/product_info_screenshot.png -------------------------------------------------------------------------------- /image/product_list_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/image/product_list_screenshot.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/index.html -------------------------------------------------------------------------------- /nb_clean_data/clean_product_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/nb_clean_data/clean_product_data.ipynb -------------------------------------------------------------------------------- /nb_clean_data/clean_review_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/nb_clean_data/clean_review_data.ipynb -------------------------------------------------------------------------------- /nb_recommendation/Recom_CB.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/nb_recommendation/Recom_CB.ipynb -------------------------------------------------------------------------------- /nb_recommendation/Recom_CF_FastAI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/nb_recommendation/Recom_CF_FastAI.ipynb -------------------------------------------------------------------------------- /nb_recommendation/Recom_CF_wo_packages.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/nb_recommendation/Recom_CF_wo_packages.ipynb -------------------------------------------------------------------------------- /nb_recommendation/Recom_Hybrid.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/nb_recommendation/Recom_Hybrid.ipynb -------------------------------------------------------------------------------- /scraper/parse_reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/scraper/parse_reviews.py -------------------------------------------------------------------------------- /scraper/scrape_brand_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/scraper/scrape_brand_links.py -------------------------------------------------------------------------------- /scraper/scrape_product_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/scraper/scrape_product_info.py -------------------------------------------------------------------------------- /scraper/scrape_product_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/scraper/scrape_product_links.py -------------------------------------------------------------------------------- /scraper/scrape_reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/scraper/scrape_reviews.py -------------------------------------------------------------------------------- /vis/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/vis/cat.png -------------------------------------------------------------------------------- /vis/cat_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/vis/cat_1.png -------------------------------------------------------------------------------- /vis/cat_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/vis/cat_2.png -------------------------------------------------------------------------------- /vis/cat_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/vis/cat_3.png -------------------------------------------------------------------------------- /vis/corr_pop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/vis/corr_pop.png -------------------------------------------------------------------------------- /vis/price_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/vis/price_1.png -------------------------------------------------------------------------------- /vis/price_age_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/vis/price_age_1.png -------------------------------------------------------------------------------- /vis/price_age_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/vis/price_age_2.png -------------------------------------------------------------------------------- /vis/price_brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/vis/price_brand.png -------------------------------------------------------------------------------- /vis/price_dist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/vis/price_dist.png -------------------------------------------------------------------------------- /vis/price_love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/vis/price_love.png -------------------------------------------------------------------------------- /vis/price_ratings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/vis/price_ratings.png -------------------------------------------------------------------------------- /vis/price_reviews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/vis/price_reviews.png -------------------------------------------------------------------------------- /vis/price_subcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirleyiscool/Scraping-Sephora/HEAD/vis/price_subcat.png --------------------------------------------------------------------------------