Skip to content

TerryFunggg/Simpletodo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

To-Do App

This is a simple command-line to-do app built with Python and SQLite3.

Toy app, easy modify. Even db is just created on home directory directly. Cus I just want db file easily using like scp or rsync to transfer between different pc.

but it's work!

Features

  • Add tasks with status(TODO, HOLD, DONE, CANCELED) and content
  • List tasks in table format
  • Store data in a SQLite3 database

Prerequisites

  • Python 3.x
  • pip (Python package installer)

Installation

Clone the repository or download the script:

git clone https://github.com/yourusername/todo-app.git

Build

require pyinstaller

pip install pyinstaller

Install pacakges

pip install -r requirements.txt
make 
mv dist/todo /usr/local/bin/

Usage

  1. Add todo task
todo add "Your task" 

or with content/remark

todo add "Your task description" --content "Your task content"
  1. list task
todo list
  1. delete task
todo delete TASK_ID
  1. update task status or content
todo update TASK_ID --status STATUS --content "New content.." 

About

Just simple todo app for fun

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors