Metadata-Version: 1.1
Name: wanikani
Version: 0.1
Summary: Python Library for WaniKani
Home-page: http://github.com/kfdm/wanikani/
Author: Paul Traylor
Author-email: UNKNOWN
License: UNKNOWN
Description: # wanikani
        
        Various helpers for working with the [WaniKani API](http://www.wanikani.com/api)
        
        ## Usage
        
        This is written as a standard Python package, so it can be installed in the standard way.
        
        ```
        python setup.py install
        ```
        
        First, set your API key
        
        ```
        wk set_key <api key>
        ```
        
        ### Show upcoming reviews
        
        ```
        # --current show the current level only
        # --rollup - rollup anything that is due now
        # --limit 10 - Only show the next 10 reviews
        $ wk upcoming --current --rollup --limit 10
        Showing upcoming items for level 17
        Rolled up reviews
        Timestamp              Radicals      Kanji      Vocab      Total
        2014-01-02 18:39:34           0          6         15         21
        2014-01-02 18:45:00           7         23          1         31
        2014-01-02 22:00:00           0          0          1          1
        2014-01-02 22:30:00           0          3          0          3
        2014-01-02 23:30:00           2          0          0          2
        2014-01-03 06:45:00           0          0         10         10
        2014-01-03 08:15:00           0          0          1          1
        2014-01-03 08:45:00           0          0          5          5
        2014-01-03 09:30:00           3          0          0          3
        2014-01-03 11:15:00           0          1          0          1
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
