https://github.com/mochafreddo/dynamic_scraper
JobScrapper is a Flask-based web application that scrapes and displays job listings from Wanted.co.kr according to user-specified keywords.
https://github.com/mochafreddo/dynamic_scraper
beautifulsoup csv-export flask job-search playwright web-scraping
Last synced: 2 months ago
JSON representation
JobScrapper is a Flask-based web application that scrapes and displays job listings from Wanted.co.kr according to user-specified keywords.
- Host: GitHub
- URL: https://github.com/mochafreddo/dynamic_scraper
- Owner: mochafreddo
- License: mit
- Created: 2024-03-27T23:51:45.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-28T16:53:00.000Z (over 2 years ago)
- Last Synced: 2025-08-25T12:43:46.692Z (10 months ago)
- Topics: beautifulsoup, csv-export, flask, job-search, playwright, web-scraping
- Language: Python
- Homepage:
- Size: 65.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JobScrapper
JobScrapper is a Flask web application designed to scrape job listings from Wanted.co.kr based on user input keywords. It uses Playwright for web scraping and BeautifulSoup for parsing HTML content.
## Features
- Web interface for entering search keywords.
- Scrapes job listings from Wanted.co.kr based on the keyword.
- Displays job title, company name, and a link to the job listing.
- Option to export the scraped job listings into a CSV file.
## Requirements
- Python 3.x
- Flask
- BeautifulSoup
- Playwright
## Installation
Ensure Python is installed, then install the required packages:
```bash
pip install Flask beautifulsoup4 playwright
```
Run the Playwright install command to download necessary browser binaries:
```bash
playwright install
```
## Usage
To start the web application, run:
```bash
python main.py
```
Navigate to `http://localhost:3000` in your web browser, enter a search keyword, and view the results.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.