https://github.com/fbukevin/todo
Toy project - todo list written in Python
https://github.com/fbukevin/todo
Last synced: 9 months ago
JSON representation
Toy project - todo list written in Python
- Host: GitHub
- URL: https://github.com/fbukevin/todo
- Owner: fbukevin
- Created: 2017-05-08T00:23:33.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-16T10:10:33.000Z (about 9 years ago)
- Last Synced: 2025-02-26T10:16:40.624Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A command-line todo list for practice.
## Usage
```bash
Usage:
todo task
todo book
todo task add
todo book add
todo task rm [ | (-n | --no) ]
todo book rm [ | (-n | --no) ]
todo task find
todo book find
todo task WIP
todo task DONE
todo book PENDING
todo book WIP
todo book DONE
todo book PENDING
todo task update
todo book update
todo (-h | --help)
todo --version
```
## References
* Command line arguments parser and prompt: https://docs.python.org/2/library/argparse.html
* Sqlite3 module and tutorial: http://www.runoob.com/sqlite/sqlite-python.html