https://github.com/theogrammer/pytodoapp
ASE 420 - A Python CLI task manager app
https://github.com/theogrammer/pytodoapp
Last synced: 2 months ago
JSON representation
ASE 420 - A Python CLI task manager app
- Host: GitHub
- URL: https://github.com/theogrammer/pytodoapp
- Owner: theogrammer
- Created: 2022-12-16T05:51:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-16T13:00:48.000Z (over 2 years ago)
- Last Synced: 2025-01-17T21:42:58.692Z (4 months ago)
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PyTodoApp
PyTodoApp is a python CLI (Command Line Interface) app that lets users manage their daily tasks in different ways.## Installation
## Usage
Once you’ve downloaded the repository on to your local machine, head over to your preferred IDE and open the project.
If you run into any issues, feel free to open an issue [here](https://github.com/teddygizachew/PyTodoApp/issues)All of the Commands are here:
```
--query
--update
--remove
--record
--complete
```
### 1. InputCommand:
`python -m todoapp --record tonight "06:30 PM" "07:00 PM" "Cook Dinner" :Food`
Ouput:`Successfully inserted 'Cook Dinner'!`
### 2. Read
Command:
`python -m todoapp --query all`
Ouput:
Command:
`python -m todoapp --query tags`
Ouput:
### 3. Update
Command:
`python -m todoapp --update 1 Play`
Ouput:
### 4. Delete
Command: `python -m todoapp --remove STUDY`
Output:
### 5. Complete
Command: `python -m todoapp --complete 1`
Output:
## Communication