https://github.com/pmcfernandes/tasks-console
Create tasks with console and python
https://github.com/pmcfernandes/tasks-console
python task-manager
Last synced: 5 months ago
JSON representation
Create tasks with console and python
- Host: GitHub
- URL: https://github.com/pmcfernandes/tasks-console
- Owner: pmcfernandes
- License: apache-2.0
- Created: 2022-11-26T00:47:31.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-07-16T05:32:56.000Z (almost 2 years ago)
- Last Synced: 2024-07-16T07:57:03.611Z (almost 2 years ago)
- Topics: python, task-manager
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
### tasks
Create tasks with console and python
#### Usage
task.py list [--project=]
task.py find [--project=]
task.py add [--due=] [--project=]
task.py change [] [--due=] [--mark=] [--project=]
task.py resolved
task.py delete
task.py show projects
task.py -h | --help
#### examples
python3 task.py list
python3 task.py list --project=supermarket
python3 task.py find "hello world \w*"
python3 task.py find "buy chocolate \w*" --project=supermarket
python3 task.py add "My first task"
python3 task.py add "My first task" --due=2weeks
python3 task.py add "buy chocolate for easter" --due=2weeks --project=supermarket
python3 task.py 1 change "hello task"
python3 task.py 1 change --due=1month
python3 task.py 1 change --project=easter
python3 task.py 1 resolved
python3 task.py 1 delete
python3 task.py show projects