Metadata-Version: 2.4
Name: tasknow
Version: 1.0.8
Summary: A terminal to-do app that helps you focus on one task at a time.
Author: Decoding Chris
License-Expression: MIT
Project-URL: Homepage, https://github.com/decodingchris/TaskNow
Project-URL: Issues, https://github.com/decodingchris/TaskNow/issues
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Operating System :: POSIX :: Linux
Classifier: Intended Audience :: End Users/Desktop
Classifier: Environment :: Console
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# TaskNow

A terminal to-do app that helps you focus on one task at a time.

## Why use TaskNow?

- Stay focused by seeing just your current task
- Add, complete, and manage tasks easily from the terminal
- No accounts, no clutter — just your tasks

## Requirements

- **Python 3.10 or higher**
- Compatible with Ubuntu/Linux systems

## Installation

Install TaskNow directly from PyPI:

```bash
pip install tasknow
```

## Commands

Add a task:

```bash
tasknow add "Write report"
```

See your current task:

```bash
tasknow
```

Mark it done:

```bash
tasknow done
```

List all tasks:

```bash
tasknow list # Also shows each task id
```

Remove a task:

```bash
tasknow remove 2 # Remove task with id: 2
```

Show completed tasks:

```bash
tasknow completed
```

Un-complete a task:

```bash
tasknow undone 3 # Un-complete task with id: 3
```

Edit a task:

```bash
tasknow edit 4 "New task description" # Edit task with id: 4
```

Show help:

```bash
tasknow help
```

## License

This project is licensed under the **MIT License**. See the [LICENSE](https://opensource.org/licenses/MIT) file for details.
