Skip to content

Latest commit

 

History

History
67 lines (55 loc) · 1.21 KB

README.md

File metadata and controls

67 lines (55 loc) · 1.21 KB

Task

A simple cli to-do list. Created using python and click library.

How to

Create a task belonging to a group:

~ task add Movies John Wick 2

Edit a task (partial match available):

~ task edit Movies John
Enter the new name for John Wick 2 [John Wick 2]: John Wick: Chapter 2

Finish a task (partial match available):

~ task finish Movies John

List tasks:

~ task list Movies
    Movies
================================
[ ] The Irishman
[x] John Wick 2
[x] Toy Story 4
[ ] One Upon a Time in Hollywood
[x] Avengers: End Game
================================

Export the tasks to .txt file:

~ task export Movies path/to/save

or to .pdf:

~ task export Movies path/to/save --pdf

Installation

Install using python 3.8 and pip3:

pip3 install cli-task

Versions

0.2.0

  • Added remove functionality:

    ~ task remove Movies John

Future

I try to add sorting feature for list and exports, also I might try to add attributes to each task (due date, urgency, ...).

The big next feature would be syncing the tasks in the cloud so you could access your tasks anywhere.

Author

Amin Fadaee