https://github.com/abbhiishek/todoska
  
  
    Todoska is a simple Cli Todo-Tracker. 
    https://github.com/abbhiishek/todoska
  
cli pypi pypi-package python rich sqlite3 todo-app todo-cli todoapp todolist-application todoska typer
        Last synced: 4 months ago 
        JSON representation
    
Todoska is a simple Cli Todo-Tracker.
- Host: GitHub
- URL: https://github.com/abbhiishek/todoska
- Owner: Abbhiishek
- License: mit
- Created: 2022-04-30T15:44:51.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-19T03:32:31.000Z (about 3 years ago)
- Last Synced: 2024-11-07T18:08:56.768Z (12 months ago)
- Topics: cli, pypi, pypi-package, python, rich, sqlite3, todo-app, todo-cli, todoapp, todolist-application, todoska, typer
- Language: Python
- Homepage: https://pypi.org/project/Todoska/
- Size: 3.83 MB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 0
- 
            Metadata Files:
            - Readme: README.md
- Changelog: CHANGELOG.txt
- Funding: .github/FUNDING.yml
 
Awesome Lists containing this project
README
          # Todoska
 Todoska is a simple 😇, fast ⏩, and powerful todo list manager 🛠.

## Installation
```python
pip install todoska
```
## Usage
```python
todoska --help
>>> Usage: todoska [OPTIONS] COMMAND [ARGS]...
Try 'todoska --help' for help.
Error: Missing command.
```
```python
todoska --help
>>>> python
Usage: todoska [OPTIONS] COMMAND [ARGS]...
Options:
  --install-completion [bash|zsh|fish|powershell|pwsh]
                                  Install completion for the specified shell.
  --show-completion [bash|zsh|fish|powershell|pwsh]
                                  Show completion for the specified shell, to
                                  copy it or customize the installation.     
  --help                          Show this message and exit.
Commands:
  add       Add a new task to the todo list 😀
  complete  Mark a task as complete ♦ [Index]
  delete    Delete a task from the todo list 🎈 [Index]
  show      Show all tasks in the todo Table 😀
  update    Update a task from the todo list ↗ [Index]
```
## Usage :
- `Add new task :`
```python
todoska add --help
>>> Usage: todoska add [OPTIONS] TASK CATEGORY
Arguments:
  TASK      [required]
  CATEGORY  [required]
Options:
  --help  Show this message and exit.
```
- `Update a task :`
```python
todoska update  
>>> Usage: todoska update [OPTIONS] POSITION
Arguments:
  POSITION  [required]
Options:
  --task TEXT
  --category TEXT
  --help           Show this message and exit.
```
- `Delete a task :`
```python
todoska delete 
>>> Usage: todoska delete [OPTIONS] POSITION
Arguments:
  POSITION  [required]
Options:
  --help  Show this message and exit
```
- `View All task :`
```python
todoska show --help
>>> $ todoska show  --help
Usage: todoska show [OPTIONS]
Options:
  --help  Show this message and exit.
```
## Demo :
todoska add "Buy milk" "Home"
```python
        adding Buy milk, Home
        Todos! 💻
        ┌────────┬──────────────────────┬──────────────┬──────────────┐     
        │ #      │ Todo                 │     Category │         Done │     
        ├────────┼──────────────────────┼──────────────┼──────────────┤     
        │ 1      │ Buy milk             │         Home │          ❌  │      
        └────────┴──────────────────────┴──────────────┴──────────────┘
```