Metadata-Version: 2.1
Name: korean_news_scraper
Version: 0.1.5
Summary: A python package for web scraping korean news articles
Home-page: https://github.com/kimminsum/korean-news-scraper.git
Author: kar7mp5
Author-email: kimminsum <tommy1005a@gmail.com>
Project-URL: Homepage, https://github.com/kimminsum/korean-news-scraper
Project-URL: Issues, https://github.com/kimminsum/korean-news-scraper/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# Korean News Scraper

Hello World!  Korean News Scraper aims to be a Korean language data collection tool for LLM.

After version 0.1.1. is possible to use. Please do not use it before.


## Build

```bash
$ python3 setup.py
```


## Required Libraries

- beautifulsoup4
- selenium
- pandas
- requests
- tqdm

## Quick Start

```python
import korean_news_scraper

keywords = ["news", "happy", "environment"]
korean_news_scraper.save_article_links(keywords, "data", lang="en-EN")
korean_news_scraper.extract_article_content("data")
```
