Skip to content

CLI tool to priorities by scoring. Prioritise your tasks by comparing two tasks and deciding which one to prioritise

License

Notifications You must be signed in to change notification settings

fackelm2/priority-order-decision

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

priority-order-decision

Command line tool to prioritise tasks (written in Python)

A simple commandline-tool to prioritise tasks by scoring them.
Prioritise your tasks by comparing two of them and deciding which one to prioritise.
Enter your tasks or task list, answer which task to prioritise and get the priority list.

Download & Run

git clone https://github.com/fackelm2/priority-order-decision
cd df.priority-order-decision
df.priority-order-decision.py

Usage Guide

usage: priority-order-decision.py [-h] [-i INPUT_FILE] [-o OUTPUT_FILE] [-f {text,csv,html}] [-d] [-v] [--version] mytask [mytask ...]

Options for command-line tool priority-order-decision.py

positional arguments:
  mytask                list of tasks space separeted or filename [-i ] with one task per line

optional arguments:
  -h, --help            show this help message and exit
  -i INPUT_FILE, --input_file INPUT_FILE
                        set input filename
  -o OUTPUT_FILE, --output_file OUTPUT_FILE
                        set output filename (default )
  -f {text,csv,html}, --output_format {text,csv,html}
                        set output format (default )
  -d, --debug           set debug mode
  -v, --verbose         set verbose mode
  --version             print version

Examples

I want to learn something about Python, Amazon AWS Cloud, Malware Analysis and Android - but with what should i begin?

priority-order-decision.py python aws android malware_analysis
task 1 : malware_analysis
task 2 : android
enter more important task 1 or 2: 2

task 1 : malware_analysis
task 2 : aws
enter more important task 1 or 2: 1

task 1 : malware_analysis
task 2 : python
enter more important task 1 or 2: 2

task 1 : android
task 2 : aws
enter more important task 1 or 2: 1

task 1 : android
task 2 : python
enter more important task 1 or 2: 2

task 1 : aws
task 2 : python
enter more important task 1 or 2: 2

[['python', 3], ['aws', 0], ['android', 2], ['malware_analysis', 1]]

The result of my choices is the following order:
1. Python
2. Android
3. Malware Analysis
4. Amazon AWS Cloud

About

CLI tool to priorities by scoring. Prioritise your tasks by comparing two tasks and deciding which one to prioritise

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages