Completed
Push — master ( 9e61c1...9d0aac )
by Amresh
03:31
created

fuzzer.cli.args   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 7
dl 0
loc 11
rs 10
c 0
b 0
f 0
1
import argparse
2
3
4
parser = argparse.ArgumentParser(description='Fuzz the system')
5
parser.add_argument('--host', help='Api server\'s host-name.')
6
parser.add_argument('--port', help='Port on which the server is running.')
7
parser.add_argument('--api-json', help='File containing api endpoint and expected request objects')
8
9
10
cli_args = parser.parse_args()
11