It's a simple task manager. It allows you to create and edit tasks, track their progress, assign categories to tasks, set deadlines, create notifications for important tasks and events, create inner tasks! Moreover you can work together with your friends and colleagues: just assign task on someone or give read/write access for task!
If you don't like how this console application looks and feels, you can create your own by using task manager library.
$ pip3 install -U pip setuptools
$ cd library
$ python3 setup.py install
$ python3 setup.py test
$ cd console
$ python3 setup.py install
$ task-manager task
$ task-manager user
$ task-manager category
$ task-manager plan
$ task-manager notification
from tmlib.logger import setup_lib_logging
setup_lib_logging(
enabled=True,
log_all_levels=True,
log_file_path='/path/to/log/file',
log_format='%(asctime)s, %(name)s, [%(levelname)s]: %(message)s')
$ python3 manage.py runserver
Made by Maksim Shylov.