Metadata-Version: 2.1
Name: hebikani
Version: 1.2.2
Summary: WaniKani command line interface
Home-page: https://github.com/ajite/hebikani
License: MIT
Author: Augustin
Author-email: ajitekun@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: Pillow (>=9.1.0,<10.0.0)
Requires-Dist: PyGObject (>=3.42.1,<4.0.0); sys_platform == "linux"
Requires-Dist: ascii-magic (>=1.6,<2.0)
Requires-Dist: colorama (>=0.4.4,<0.5.0)
Requires-Dist: playsound (>=1.3.0,<2.0.0)
Requires-Dist: pyobjc (>=8.5,<9.0); sys_platform == "darwin"
Requires-Dist: requests (>=2.27.1,<3.0.0)
Requires-Dist: romkan (>=0.2.1,<0.3.0)
Project-URL: Repository, https://github.com/ajite/hebikani
Description-Content-Type: text/x-rst

.. image:: https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/ajite/c90a126b4e926b94c07a36ac78e9a9ad/raw/hebikani_coverage.json
	:target: https://github.com/ajite/hebikani
	:alt: Coverage

.. image:: https://readthedocs.org/projects/hebikani/badge/?version=latest
	:target: https://hebikani.readthedocs.io/en/latest/?badge=latest
	:alt: Documentation Status

HebiKani
============

**This program is not an official WaniKani client. Use at your own risk.**

A command line interface to do your WaniKani lessons and reviews.

.. figure:: docs/source/_static/demo.gif
   :alt: CLI demo gif

INSTALL
-------

.. code-block:: bash

    pip install hebikani

If you are missing libraries check the  `documentation <https://hebikani.readthedocs.io/en/latest/install.html>`_

RUN
---

Check the help:

.. code-block:: bash

    hebikani --help

To display your review summary:

.. code-block:: bash

    hebikani summary

To start a review session:

.. code-block:: bash

    hebikani reviews

To start a review session in hard mode with audio and a limited number of reviews:

.. code-block:: bash

    hebikani reviews --hard --autoplay --limit 10

DEVELOPMENT
-----------
This project uses `Poetry <https://python-poetry.org/docs/>`_.

.. code-block:: bash

    poetry install

TEST
----

Run the test:

.. code-block:: bash

    poetry run pytest

