Closed Kevin-De-Koninck closed 6 years ago
stacoan.py [-h] [-p PATH [PATH ...]] [--disable-browser] [--log-all | --log-errors | --log-warnings]
This implements the argparser. This allows you to add some more options through the command line in the future. Current implementation allows you to specify the project, if you want to disable that the browser automatically opens, and the log level.
E.g.:
python3 stacoan.py -p test-apk.apk
python3 stacoan.py -p test-apk.apk --disable-browser
python3 stacoan.py -p test-apk.apk --disable-browser --log-warnings
python3 stacoan.py -h
ToDo: if you implement this, you should update the readme
stacoan.py [-h] [-p PATH [PATH ...]] [--disable-browser] [--log-all | --log-errors | --log-warnings]
This implements the argparser. This allows you to add some more options through the command line in the future. Current implementation allows you to specify the project, if you want to disable that the browser automatically opens, and the log level.
E.g.:
How you used it until now
python3 stacoan.py -p test-apk.apk
disable browser
python3 stacoan.py -p test-apk.apk --disable-browser
only log errors and warnings
python3 stacoan.py -p test-apk.apk --disable-browser --log-warnings
view the help
python3 stacoan.py -h
ToDo: if you implement this, you should update the readme