Add test scripts of F version
[vfc/nfvo/lcm.git] / resources / testscripts / F-version / ns / ns_get.py
1 import requests
2
3 requests.packages.urllib3.disable_warnings()
4 resp = requests.get('https://192.168.235.89:30283/api/nsd/v1/ns_descriptors', verify=False)
5 print(resp.status_code, resp.json())