Metadata-Version: 2.1
Name: practice_japanese
Version: 0.1.0
Summary: Practice Japanese character sets.
Home-page: https://github.com/hkeward/practice_japanese
Author: Heather Ward
Author-email: heather.ward13@gmail.com
License: gpl-2.0
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: Unix
Description-Content-Type: text/markdown
License-File: LICENSE

# practice_japanese

A simple flashcard program to help practice Japanese characters. Per-character statistics are collected and summarized.

## Requirements

- Python3.6+

## Installation

```bash
python3 setup.py install --user
```

This will create a CLI called `practice_japanese` on your PATH.

Alternatively, install via pip:

```bash
python3 -m pip install practice_japanese
```

## Usage

```bash
practice_japanese [--character-set CHARACTER_SET] [--statistics-file STATISTICS_FILE]
```

Characters from the selected character set will be displayed; the user is expected to enter the romaji for each character.

By default, the full character set will be used.

Press `CTRL+C` to exit; statistics for your slowest and least accurate characters (and the characters you commonly mix them up with) will be printed. These statistics are for your entire history of practicing, not the current session.

By default, character statistics will be saved to `character_stats.json` in your `pwd`. These statistics are updated each time you practice.
