update link to upper-constraints.txt
[vfc/nfvo/lcm.git] / resources / testscripts / F-version / ns / ns_get.py
1 import requests
2
3 from testscripts.const import MSB_BASE_URL
4
5 requests.packages.urllib3.disable_warnings()
6 resp = requests.get(MSB_BASE_URL + '/api/nsd/v1/ns_descriptors', verify=False)
7 print(resp.status_code, resp.json())