diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-17 00:04:23 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-17 00:04:23 +0100 |
commit | 37ce8d89a293000579caefe3e01e4d2073c42d63 (patch) | |
tree | 51eab9f15939e44730b14b6d56a1006247263a76 /todo | |
parent | 955ec52091aa268e78baae52b89ca7eec187d9c6 (diff) | |
download | bin-37ce8d89a293000579caefe3e01e4d2073c42d63.tar.xz |
todo: split argument parsing out to own function
Diffstat (limited to 'todo')
-rw-r--r--[-rwxr-xr-x] | todo | 41 |
1 files changed, 33 insertions, 8 deletions
@@ -14,6 +14,7 @@ Options: from sys import exit from collections import OrderedDict +from os import getenv, path from docopt import docopt import pytoml @@ -24,22 +25,46 @@ def sort_toml(toml_dict, sort_key, rev=False): key=lambda d: (sort_key not in d[1], d[1].get(sort_key, None)), reverse=rev) +class Config(): + def __init__(self): + self.todo_file = None + self.sort_key = None + self.reverse = False + +def parse_args(args): + config = Config() + home_dir = path.expanduser('~') + data_home = getenv('XDG_DATA_HOME') + + if args['--id']: + config.sort_key = 'id' + elif args['--date']: + config.sort_key = 'date' + else: + config.sort_key = 'priority' + + config.reverse = args['--reverse'] + + if args['<file>']: + config.todo_file = args['<file>'] + else: + if data_home: + config.todo_file = data_home + '/todo.toml' + else: + config.todo_file = home_dir + '/.local/share/todo.toml' + + return config + def main(): arguments = docopt(__doc__, version='todo 0.0.1.alpha') + config = parse_args(arguments) 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)) + sorted_toml = OrderedDict(sort_toml(unsorted, config.sort_key, config.reverse)) print(sorted_toml) |