A neat little todo list for your cli, made with python! You can add, list, remove and clear your tasks!
I mainly made this to learn about git and github!
To get the program on your computer, you:
- Clone the repo
git clone https://github.com/Rikemannen/todo-list
- Move to the directory:
cd todo-list
- Install requirements
pip install -r requirements.txt
- Run it!
python list.py -h
Really simple to use, to add a task:
python list.py -a "Empty Dishwasher"
But nobody likes doing that, so we delete it:
python list.py -r 1
or:
python list.py -r "empty"
The script matches both numbers, as in which order, and text.
Don't know what tasks you have?
python list.py -l
too much stuff...
python list.py -c
Sure, contributions are welcome!
- Fork the repo
- Create a branch
- Make your (awesome) additions/changes
- Commit to your fork
- Push to your branch
- Open a pull request!
Thanks for supporting! :D
Do whatever you wish, I do not care. (The repo has the unlicense-license)