Metadata-Version: 1.2
Name: todd
Version: 0.0.7
Summary: An interactive terminal based todo.txt file editor
Home-page: https://github.com/laktak/todd
Author: Christian Zangl
Author-email: laktak@cdak.net
License: UNKNOWN
Description: todd
        ====
        
        *todd* is an interactive console TODO-list manager with VI key bindings.
        
        It provides a minimalistic interface with a view on your todo list,
        following in the spirit of spirit of
        `ranger <https://ranger.github.io/>`__ and
        `mutt <http://www.mutt.org/>`__.
        
        The file format conforms to
        `todo.txt <https://github.com/todotxt/todo.txt#readme>`__. This means
        you have full control over your data and can choose to store it locally
        or in the cloud (like Dropbox). You can use different applications to
        access your tasks on your desktop or mobile devices.
        
        Thanks to the creator and contributors of
        `todotxt-machine <https://github.com/AnthonyDiGirolamo/todotxt-machine/tree/04a0306ea30c2645f2474da5830852ccd8e49082>`__
        for providing the basis for this project.
        
        Features
        --------
        
        -  View your tasks in a column formatted list with relative due dates
        -  Switch context (only view tasks that you can work on)
        -  Sort by due date or priority
        -  Search/filter
        -  Edit in plain text with tab completion or adjust priority and due
        -  Due dates can be set with
        
           -  weekday name (mo, tu, …)
           -  offset (``2d`` in two days, ``3m`` in three moths, ``1y`` in a
              year)
           -  a fixed date (YYYY-MM-DD)
        
        Installation
        ------------
        
        Supports Python 3.6 on Linux or macOS.
        
        Using `pip <https://pypi.python.org/pypi/pip>`__
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        ::
        
            pip3 install todd
        
        (Or ``pip install todd`` if Python 3 is the default for your system.)
        
        Manually
        ~~~~~~~~
        
        Download or clone this repo and run the ``todd.py`` script.
        
        ::
        
            git clone https://github.com/laktak/todd
            cd todd
            pip3 install -r requirements.txt
            ./todd.py
        
        Command Line Options
        --------------------
        
        ::
        
            todd
        
            Usage:
              todd [--config FILE] [TODOFILE] [DONEFILE]
              todd (-h | --help)
              todd --version
              todd --show-default-bindings
        
            Options:
              -c FILE --config=FILE               Path to your todd configuraton file [default: ~/.toddrc]
              -h --help                           Show this screen.
              --version                           Show version.
              --show-default-bindings             Show default keybindings in config parser format
        
        Config File
        -----------
        
        You can tell todd to use the same todo.txt file whenever it starts up by
        adding a ``file`` entry to the ``~/.toddrc`` file. If you want to
        archive done tasks, you can specify a done.txt file using an ``archive``
        entry. You can also set you preferred colorscheme or even define new
        themes.
        
        Here is a short example:
        
        ::
        
            [settings]
            file = ~/todo.txt
            archive = ~/done.txt
            enable-word-wrap = True
            colorscheme = myawesometheme
        
        Color Schemes
        -------------
        
        Here is a config file with a complete colorscheme definition:
        
        ::
        
            [settings]
            file = ~/todo.txt
            colorscheme = myawesometheme
        
            [colorscheme-myawesometheme]
            plain=h250
            ...
        
        You can add colorschemes by adding sections with names that start with
        ``colorscheme-``. Then under the ``[settings]`` section you can say
        which colorscheme you want to use.
        
        The format for a color definitions is:
        
        ::
        
            name=[foreground],[background]
        
        Foreground and background colors are follow the 256 color formats
        `defined by
        urwid <http://urwid.org/manual/displayattributes.html#color-foreground-and-background-colors>`__.
        You can see all the colors defined
        `here <http://urwid.org/examples/index.html#palette-test-py>`__.
        
        Key Bindings
        ------------
        
        See active key bindings with ``h`` or ``?`` in todd.
        
        You can customize any key binding by adding a setting to the ``[keys]``
        section of your config file ``~/.toddrc``.
        
        For a list of the default key bindings run:
        
        ::
        
            todd --show-default-bindings
        
Keywords: todotxt,todo.txt,todo,terminal,urwid,curses,console
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console :: Curses
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Office/Business :: Scheduling
Requires-Python: >=3.6.0
