Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qreolq/review-parser
This Java application is designed to parse and save viewer reviews for a movie from the Kinopoisk website.
https://github.com/qreolq/review-parser
java jsoup lombok opencsv
Last synced: about 1 month ago
JSON representation
This Java application is designed to parse and save viewer reviews for a movie from the Kinopoisk website.
- Host: GitHub
- URL: https://github.com/qreolq/review-parser
- Owner: qReolq
- Created: 2024-02-04T14:29:16.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-02-04T15:45:42.000Z (11 months ago)
- Last Synced: 2024-02-04T18:05:33.446Z (11 months ago)
- Topics: java, jsoup, lombok, opencsv
- Language: Java
- Homepage:
- Size: 4.53 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Review-parser
This Java application is designed to parse and save viewer reviews for a movie from the Kinopoisk website.
The application utilizes Jsoup for web scraping, and the parsed data is stored in CSV format using OpenCSV.## Technologies
Java, Jsoup, Lombok, OpenCSV## Usage
To run the application, provide the following command-line arguments:
```Bash
java -jar jar
```
* csvFilePath: The path where the CSV file will be saved.
* prePages: Number of reviews processe by one thread(50,100,200). Affects the number of threads created in the executor service## Quick start
1. Clone this repo into folder.```Bash
git clone https://github.com/qReolq/review-parser.git
cd review-parser\target
```
2 Then, run the Main class with the appropriate command-line arguments.
```Bash
java -jar .\target\ReviewParser-1.0-SNAPSHOT.jar \path\to\reviews.csv 100
```## Examle
```Bash
java -jar .\target\ReviewParser-1.0-SNAPSHOT.jar C:\Users\admin\Desktop 100
```