Skip to main content

DrTodo, MD: todo list manager using markdown files and git

Project description

DrTodo

DrToDo, MD: a straightforward todo list manager for markdown files in git repos.

Quick Start

installation

$ pip install drtodo

initialization

$ todo init

add a todo to the global list

$ todo add "clean up folder `pwd`"
  0: 11348e9 ⚫ clean up folder /Users/me/work/src/tmp/p

list todo items

$ todo list
  0: 11348e9 ⚫ clean up folder /Users/me/work/src/tmp/p

mark it as done

$ todo done 0
  0: 11348e9 🔘 clean up folder /Users/me/work/src/tmp/p

use it inside a git repo

TODO: document this better including the git repo used with todo init

Contents

Markdown Files

By default, DrTodo will look for any lists formatted as GitHub-style task lists in any Markdown files it reads.

For example a file containing this:

This is my cool project readme file.

## TODO
-  write a readme
- [ ] make it useful

## Bugs assigned to me
- [ ] bug 1
- [ ] bug 2

Will produce the following output:

$ todo list
~/work/src/DrTodo/TODO.md
  0: 56a01da 🔘 write a readme
  1: 5869ea7 ⚫ make it useful
  2: 7a787ec ⚫ bug 1
  3: f237ece ⚫ bug 2

All items will be logically combined into a single list and listed together.

In the future, it will be possible to specify which section in a Markdown file to use as a list, and then all other lists will be ignored.

Also, we will have options to add to the bottom or to the top (meaning right before or right after the last task list item).

Settings

DrTodo allows plenty of configuration options that can be specialized by folder or per user. There are many config files that can be used and are combined in specific ways detailed below. Simplest case is ~/.drtodo/config.toml which is the global config file. More details below.

Command Line Options

Usage:

$ DrTodo [OPTIONS] COMMAND [ARGS]...

Options:

  • -s, --settings PATH: Settings file to use [default: /Users/bcs/.drtodo]
  • -v, --verbose: Verbose output
  • --mdfile PATH: Markdown file to use for todo list [default: TEST.md]
  • -V, --version: Show version and exit
  • --install-completion: Install completion for the current shell.
  • --show-completion: Show completion for the current shell, to copy it or customize the installation.
  • --help: Show this message and exit.

DrTodo can manage items in a global todo list (/.drtodo/TEST.md) and in a local todo list (/work/src/DrTodo/TEST.md). Settings are read from config files and env variables (see todo man config).

Commands:

  • add: Add a new todo item to the list
  • debug: List configuration, settings, version and...
  • done: Mark one or more todo items as done
  • init: Initialize DrTodo folder and files
  • list: List todo items in the list
  • man: Show detailed help and context for...
  • undone: Mark one or more todo items as NOT done...

DrTodo add

Add a new todo item to the list

Usage:

$ DrTodo add [OPTIONS] DESCRIPTION

Arguments:

  • DESCRIPTION: [required]

Options:

  • -p, --priority INTEGER
  • -d, --due TEXT: Due date in any format
  • -o, --owner TEXT: Owner userid or name
  • -D, --done: Add item marked as done
  • -G, --global: Add item to global todo list, even if current folder is under a git repo
  • --help: Show this message and exit.

DrTodo debug

List configuration, settings, version and other debug info.

Usage:

$ DrTodo debug [OPTIONS]

Options:

  • --help: Show this message and exit.

DrTodo done

Mark one or more todo items as done

Usage:

$ DrTodo done [OPTIONS] [SPEC]

Arguments:

  • [SPEC]: ID, index or regular expression to match item text

Options:

  • -i, --id TEXT: ID of the item to mark as done
  • -n, --index INTEGER: Index of the item to mark as done
  • -m, --match TEXT: Regular expression to match item text
  • -a, --all: Mark all items as done
  • --help: Show this message and exit.

DrTodo init

Initialize DrTodo folder and files

Usage:

$ DrTodo init [OPTIONS]

Options:

  • --help: Show this message and exit.

DrTodo list

List todo items in the list

Usage:

$ DrTodo list [OPTIONS]

Options:

  • --help: Show this message and exit.

DrTodo man

Show detailed help and context for settings, file format and heuristics

Usage:

$ DrTodo man [OPTIONS] COMMAND [ARGS]...

Options:

  • --help: Show this message and exit.

Commands:

  • config
  • mdfiles

DrTodo man config

Usage:

$ DrTodo man config [OPTIONS]

Options:

  • --help: Show this message and exit.

DrTodo man mdfiles

Usage:

$ DrTodo man mdfiles [OPTIONS]

Options:

  • --help: Show this message and exit.

DrTodo undone

Mark one or more todo items as NOT done (undone)

Usage:

$ DrTodo undone [OPTIONS] [SPEC]

Arguments:

  • [SPEC]: ID, index or regular expression to match item text

Options:

  • -i, --id TEXT: ID of the item to mark as done
  • -n, --index INTEGER: Index of the item to mark as done
  • -m, --match TEXT: Regular expression to match item text
  • -a, --all: Mark all items as done
  • --help: Show this message and exit.

Configuration File Options

The primary options are below with their default values. You can override any of these in a toml config file.

    mdfile = 'TODO.md'      # default markdown file to use
    verbose = false         # verbose output
    keep_backups = 3        # number of old md file backups to keep
    hide_hash = false       # don't show hash (use index or RE instead)

Style

Style can be either configured at a high level by name or configured in detailed individual settings. High level configuration is easy, just set the style option as follows:

style = 'round'

Valid options for style are:

  • 'round': 🔘/⚫
  • 'ascii': /[ ]
  • 'bright': ✅/❌
  • 'check': ✓/✗
  • 'boxed': ☑/☐
  • 'dark': ✅/🔳
  • 'light': ✅/🔲

Detailed Style Configuration

If you want to configure the style in more detail, you can do so with any of these options:

checked = '🔘'              # emoji or symbols used for done items
unchecked = '⚫'            # emoji or symbols used for undone items
strike_done = False         # strike through done items
dim_done = False            # dim done items
index = 'bright_black'      # color of index
hash = 'italic dim yellow'  # color of hash
text = 'white'              # color of TODO text
header = 'bold cyan'        # color of header
warning = 'bold yellow'     # color of warnings
error = 'red'               # color of errors

All the colors above use the rich style and color names. See (https://rich.readthedocs.io/en/latest/style.html#style) for more info.

Global Folder

  • ~/.drtodo global config folder
  • ~/.drtodo/config.toml global config
  • ~/.drtodo/config.USER.toml user specific config (in case this folder is shared)
  • ~/.drtodo/TODO.md default location for todo list (configurable, and there could be more)
  • ~/.drtodo/.git git repo for todo list (can be shared)

Local Folder (under any git repo)

  • /somefolder/.git root folder for nearest .git repo (submodules NOT supported yet)
  • /somefolder/.drtodo.toml local config file for this git repo (safe to commit)
  • /somefolder/.drtodo.USER.toml local config file for this git repo (safe to commit, ignored by other users)
  • /somefolder/TODO.md default location for todo list for this git repo (configurable)

Environment variables

  • DRTODO_MDFILE default location for todo list
  • DRTODO_VERBOSE verbose output

Sample config file (TOML)

mdfile = 'TODO.md'
verbose = false
keep_backups = 3
hide_hash = false

checked = '🔘'
unchecked = '⚫'
strike_done = false
dim_done = false
index = 'bright_black'
hash = 'italic dim yellow'
text = 'white'
header = 'bold cyan'
warning = 'bold yellow'
error = 'red'

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

drtodo-0.5.2.tar.gz (15.3 kB view hashes)

Uploaded Source

Built Distribution

drtodo-0.5.2-py3-none-any.whl (20.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page