diff --git a/lib/input.py b/lib/input.py deleted file mode 100644 index d5690f7..0000000 --- a/lib/input.py +++ /dev/null @@ -1,10 +0,0 @@ -import sys - -def getValueOfKey(key): # get the value of an input key, example: -c {VALUE} - for i in sys.argv: - if( i == key ): - return sys.argv[sys.argv.index(key) + 1] - return -1 # if no value was found return -1 - -def inputHasKeys(keyList): - return all(key in sys.argv for key in keyList)