https://github.com/nawazm92/py-todo
Simple TODO app CLI based built using python
https://github.com/nawazm92/py-todo
python python-todo python27 todo
Last synced: 3 months ago
JSON representation
Simple TODO app CLI based built using python
- Host: GitHub
- URL: https://github.com/nawazm92/py-todo
- Owner: nawazm92
- Created: 2018-05-08T12:54:35.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-10T10:31:34.000Z (about 7 years ago)
- Last Synced: 2025-01-07T09:36:05.505Z (5 months ago)
- Topics: python, python-todo, python27, todo
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# py-todo
This is simple TODO app (command line interface only) built using python 2.7# How to use
Make sure you have python installed in your system, to check python installed, just open terminal and run
```python -V```If not installed, google it "how to install python in mac/linux/win"
Else
```git clone ...```
and then open terminal and run it like
```$ python todo.py PARAMS```### PARAMS
```list [all / completed]``` To list all tasks```add "Task details"``` To add new task
```complete #TaskID``` To complete particular task followed by TaskID
```delete #TaskID``` To delete particular task followed by TaskID