An open API service indexing awesome lists of open source software.

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

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. Input

Command:

`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:

image

Command:

`python -m todoapp --query tags`

Ouput:

image

### 3. Update

Command:

`python -m todoapp --update 1 Play`

Ouput:

image

### 4. Delete

Command: `python -m todoapp --remove STUDY`

image

Output:

image

### 5. Complete

Command: `python -m todoapp --complete 1`

Output:

image

## Communication