Giter Club home page Giter Club logo

taskaty's Introduction

Taskaty

A simple command line interface app for task management.

Installation

  • Clone this repository then run:

  • Create a virtual environment:

python -m venv venv

Or

python3 -m venv venv

If you are on Ubuntu, make sure that python3-venv is installed:

sudo apt install python3-venv
  • Activate the virtual environment:
  • On Windows:
venv\Scripts\activate
  • On Linux and macos:
source venv/bin/activate
  • Run the following command to install the app:
pip install -e .

You will be able to run the app from the command line or terminal using the taskaty command.

Usage

Add a task

To add a task use the option add.

taskaty add "Add search bar compoent to the UI"

add option has the following optional arguments:

  • -d, --description: add a short description to the task.

  • -s, --start_date: determine the starting date of the task. Not using this argument or leaving it empty will assign the date of the current day as the starting day. Use isoformat string "YYYY-MM-DD".

  • -e, --end_date: determine the ending date of the task. Use isoformat string "YYYY-MM-DD".

  • --done: Determine whether the task is checked as done or not. ("False" or "True").

List tasks

To list the unfinished tasks use:

taskaty list

list option has the following optional argument:

  • -a, --all: List all the tasks.

Check a task

To finish a task use:

taskaty check -t <task_number>

Remove a task

To remove a task use:

taskaty remove -t <task_number>

If you don't specify the task number to be deleted, last task is removed.

Remove all tasks

To remove all tasks use:

taskaty reset

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.