Metadata-Version: 2.1
Name: omoidasu
Version: 0.4.7
Summary: Omoidasu.
Home-page: https://github.com/0djentd/omoidasu
Author: 0djentd
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: appdirs (>=1.4.4,<2.0.0)
Requires-Dist: click (>=8.1.3,<9.0.0)
Requires-Dist: pydantic (>=1.9.1,<2.0.0)
Requires-Dist: rich (>=12.4.4,<13.0.0)
Project-URL: Repository, https://github.com/0djentd/omoidasu
Description-Content-Type: text/markdown

# omoidasu
### Description
CLI flashcards tool.

### Installation
```
pip install omoidasu
```

### How to use
```
Usage: omoidasu [OPTIONS] COMMAND [ARGS]...

  CLI for Omoidasu.

Options:
  --data-dir TEXT                 Data directory.
  --config-dir TEXT               Config directory.
  --cache-dir TEXT                Cache directory.
  --state-dir TEXT                State directory.
  --log-dir TEXT                  Log directory.
  --flashcards-dir TEXT           Flashcards directory.
  --verbose / --no-verbose        Show additional information.
  --interactive / --no-interactive
                                  Use interactive features.
  --debug / --no-debug            Show debug information.
  --help                          Show this message and exit.

Commands:
  add     Add cards interactively using text editor.
  list    Writes all cards to stdout.
  new     Add card.
  review  Review all cards.
```

```
Usage: omoidasu list [OPTIONS] REGULAR_EXPRESSION

  Writes all cards to stdout.

Options:
  --max-cards INTEGER  Max number of cards to list.
  --help               Show this message and exit.
```

```
Usage: omoidasu review [OPTIONS] REGULAR_EXPRESSION

  Review all cards.

Options:
  --max-cards INTEGER  Max number of cards to review.
  --help               Show this message and exit.
```

```
Usage: omoidasu add [OPTIONS]

  Add cards interactively using text editor. Save empty file to finish adding
  cards.

Options:
  --editor TEXT
  --help         Show this message and exit.
```

```
Usage: omoidasu new [OPTIONS] [SIDES]...

  Add card.

Options:
  --help  Show this message and exit.
```


