https://github.com/ahmetfurkandemir/trendyol-product-comments
Reviews of clothing products in Trendyol.
https://github.com/ahmetfurkandemir/trendyol-product-comments
html java jsoup selenium-java sqlite sqlite3 trendyol web-scraping
Last synced: about 1 month ago
JSON representation
Reviews of clothing products in Trendyol.
- Host: GitHub
- URL: https://github.com/ahmetfurkandemir/trendyol-product-comments
- Owner: AhmetFurkanDEMIR
- Created: 2022-07-16T08:04:06.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-16T13:32:04.000Z (almost 3 years ago)
- Last Synced: 2025-04-15T21:51:46.880Z (about 1 month ago)
- Topics: html, java, jsoup, selenium-java, sqlite, sqlite3, trendyol, web-scraping
- Language: Java
- Homepage: https://www.kaggle.com/datasets/ahmetfurkandemr/trendyol-product-comments
- Size: 2.86 MB
- Stars: 17
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
   
## Trendyol-Product-Comments
Web scraping tool written in Java Selenium and Jsoup for pulling product and product reviews from Trendyol e-commerce site.
**Kaggle Dataset :** https://www.kaggle.com/datasets/ahmetfurkandemr/trendyol-product-comments
**Kaggle Comment classification project :** https://www.kaggle.com/code/ahmetfurkandemr/trendyol-product-reviews-classification
* **Gender of clothing products.**
```java
/*
1 : Women
2 : Men
3 : Child
*/String gender = "1,2,3";
```* **Brands of clothing products**
```java
String brands = "38,37,271,101990,43,44,136,230,33,124,160,101439,436,189,257,146279,131,634,150,859";// Products
String url = "https://www.trendyol.com/sr?wg="+genders+"&wb="+brands+"&wc=82&os=1&pi=";
```* **The schema of the tables created for writing the data**
