Metadata-Version: 2.1
Name: cli-task
Version: 0.2.0
Summary: A simple cli to-do list.
Home-page: https://github.com/aminFadaee/task
Author: Amin Fadaee
License: MIT
Description: # Task
        A simple cli to-do list. Created using python and click library.
        ## How to
        Create a task belonging to a group:
        ```bash
        ~ task add Movies John Wick 2
        ```
        
        Edit a task (partial match available):
        ```bash
        ~ task edit Movies John
        Enter the new name for John Wick 2 [John Wick 2]: John Wick: Chapter 2
        ```
        
        Finish a task (partial match available):
        ```bash
        ~ task finish Movies John
        ```
        
        List tasks:
        ```bash
        ~ task list Movies
            Movies
        ================================
        [ ] The Irishman
        [x] John Wick 2
        [x] Toy Story 4
        [ ] One Upon a Time in Hollywood
        [x] Avengers: End Game
        ================================
        ```
        
        Export the tasks to `.txt` file:
        ```bash
        ~ task export Movies path/to/save
        ```
        
        or to `.pdf`:
        ```bash
        ~ task export Movies path/to/save --pdf
        ```
        
        ![](assets/samples/pdf.png)
        
        ## Installation
        Install using python 3.8 and pip3:
        ```bash
        pip3 install cli-task
        ```
        
        ## Versions
        ### 0.2.0
        * Added remove functionality:
        
            ```bash
            ~ task remove Movies John
            ```
        
        ## Future
        I try to add sorting feature for list and exports, also I might try
        to add attributes to each task (due date, urgency, ...).
        
        The big next feature would be syncing the tasks in the cloud so
        you could access your tasks anywhere.
        
        ## Author
        Amin Fadaee
        
        Checkout my channel: [BackendLife](https://t.me/backendlife)
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
