summaryrefslogtreecommitdiffstats
path: root/todo.py
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-12-16 23:39:29 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2014-12-16 23:39:29 +0100
commitd96716803ba81b388bf10d936c5c57a2a7283665 (patch)
treecafc7df96b96faadb0d39af7ce25c3fa42d4462d /todo.py
parent9a4a8ec31a99156e40c0dde320e655c462219c36 (diff)
downloadtodo-d96716803ba81b388bf10d936c5c57a2a7283665.tar.xz
todo.py → todo
Diffstat (limited to 'todo.py')
-rwxr-xr-xtodo.py61
1 files changed, 0 insertions, 61 deletions
diff --git a/todo.py b/todo.py
deleted file mode 100755
index 3ef47e4..0000000
--- a/todo.py
+++ /dev/null
@@ -1,61 +0,0 @@
-#!/usr/bin/env python3
-"""
-Usage: todo [--priority | --date] [--reverse]
-
-Options:
- -p --priority Sort by priority
- -d --date Sort by date
- -r --reverse Reverse sort order
- -h --help Show this screen.
- -v --version Show version.
-"""
-
-from sys import exit
-from collections import OrderedDict
-from docopt import docopt
-import pytoml
-
-
-def sort_toml(toml_dict, sort_key, rev=False):
- return sorted(
- list(toml_dict.items()),
- key=lambda d: (sort_key not in d[1], d[1].get(sort_key, None)),
- reverse=rev)
-
-def main():
- arguments = docopt(__doc__, version='todo 0.0.1.alpha')
- print(arguments)
- if arguments['--date']:
- sort_key = 'date'
- elif arguments['--priority']:
- sort_key = 'priority'
- else:
- sort_key = 'priority'
- rev = arguments['--reverse']
-
- with open("/home/kyrias/documents/notes/TODO.toml", "rt") as in_file:
- tasks = in_file.read()
-
- unsorted = OrderedDict(sorted(pytoml.loads(tasks).items()))
- sorted_toml = OrderedDict(sort_toml(unsorted, sort_key, rev))
-
- print(sorted_toml)
-
- for t_id in sorted_toml:
- task = sorted_toml[t_id]
- output = "{}. ".format(t_id)
- if 'priority' in task:
- output += "({}) ".format(task['priority'])
- if 'date' in task:
- output += "{}".format(task['date'])
- if 'description' in task:
- output += "\n {}".format(task['description'])
- if 'url' in task:
- output += "\n URL: {}".format(task['url'])
- if 'context' in task:
- output += "\n Contexts: {}".format(task['context'])
-
- print(output)
-
-if __name__ == '__main__':
- main()