Skip to content

Kartheek1508/To-do_CLI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

4 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

To-Do List CLI

A simple command-line to-do list app in Python.

Installation

Requires Python 3.6+. No external dependencies needed.

Usage

Run the app:

python to_do.py

Commands

  • add <task> - Add a new task
  • list - Show all tasks
  • complete <id> - Mark task as done
  • delete <id> - Remove a task
  • help - Show help
  • exit - Exit

Example

> add Buy groceries
βœ“ Added: Buy groceries

> list
πŸ“‹ Your To-Do List:
------------------------------------------------------------
β—‹ [1] Buy groceries
------------------------------------------------------------

> complete 1
βœ“ Completed: Buy groceries

> exit
Goodbye!

Storage

Tasks are saved to todos.json in the same directory.

About

A Python to-do maker with CLI

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages