Metadata-Version: 2.1
Name: eda-nijin
Version: 0.4.0
Summary: Default template for PDM package
Author-Email: heejin131 <journeyjean131@gmail.com>
License: MIT
Requires-Python: >=3.10
Requires-Dist: pandas>=2.2.3
Requires-Dist: president-speech>=0.9.1
Requires-Dist: typer>=0.15.1
Description-Content-Type: text/markdown

# eda-nijin
 ![LGTM](https://i.lgtm.fun/2vtu.png)

### USE
```bash
$ pip install eda-nijin
$ eda-nijin
Usage: eda-nijin [OPTIONS] KEYWORD
Try 'eda-nijin --help' for help.
╭─ Error ─────────────────────────────────────────────────────────────────────────────────────────────╮
│ Missing argument 'KEYWORD'.                                                                         │
╰─────────────────────────────────────────────────────────────────────────────────────────────────────╯
$ eda-nijin --help
 Usage: eda-nijin [OPTIONS] KEYWORD

╭─ Arguments ──────────────────────────────────────────────────────────────────────────────╮
│ *    keyword      TEXT  [default: None] [required]                                       │
╰──────────────────────────────────────────────────────────────────────────────────────────╯
╭─ Options ────────────────────────────────────────────────────────────────────────────────╮
│ --asc            --no-asc                     [default: no-asc]                          │
│ --rcnt                               INTEGER  [default: 12]                              │
│ --keyword-sum    --no-keyword-sum             [default: no-keyword-sum]                  │
│ --help                                        Show this message and exit.                │
╰──────────────────────────────────────────────────────────────────────────────────────────╯

$ eda-nijin 자유
president  count
      윤보선      1
      최규하     14
      박근혜    111
      노무현    230
      전두환    242
      이명박    262
      김영삼    274
      문재인    275
      김대중    305
      노태우    399
      이승만    438
      박정희    513
총 합계:12

$ eda-nijin 자유 --asc --rcnt 3 --keyword-sum
president  count  keyword_sum
      윤보선      1            6
      최규하     14           28
      박근혜    111          250
총 합계:3

```
### DEV
```bash
$ source .venv/bin/activate
$ pdm add pandas
$ pdm add -dG eda jupyter
```
### EDA
- run jupyterlab
```
$ jupyter lab
```
### REF
- [install jupyterlab](https://jupyter.org/install)
- https://pypi.org/project/president-speech/
