mirror of https://github.com/E-Almqvist/cipher
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
316 B
11 lines
316 B
5 years ago
|
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)
|