Metadata-Version: 2.1
Name: navercafe
Version: 0.2.0
Summary: 
Author: Yong Choi
Author-email: sk8er.choi@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: pandas (>=1.5.2,<2.0.0)
Requires-Dist: pyperclip (>=1.8.2,<2.0.0)
Requires-Dist: selenium (>=4.7.2,<5.0.0)
Requires-Dist: webdriver-manager (>=3.8.5,<4.0.0)
Description-Content-Type: text/markdown

## Setup

```
$ pip install navercafe
```

## Usage

```
from navercafe import NaverCafe

# 1. setup
cafe_name = 'wikibookstudy'
club_id = '30853297'
cafe = NaverCafe(cafe_name, club_id)

# 2. (optional) enter user id and pw
# This is semi-automatic (needs manual authentication)
cafe.enter_id_pw('your_id', 'your_pw')

# 3. get article board
board_id = 34
df1 = cafe.articleboard(board_id)
print(len(df1))
print(df1.head())

# 4. get comments
article_id = 139
df2 = cafe.comments(article_id)
print(len(df2))
print(df2.head())
```


