vs-metadata/purgeout.py [49:56]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
print("Deleting {0}...".format(url_to_delete))

response = requests.delete(url_to_delete, auth=(args.user, args.passwd), headers={"Content-Type":"application/xml"}, verify=False)
if response.status_code==200:
    print("Successfully sent")
else:
    print("Vidispine returned a {0} error:".format(response.status_code))
    print(response.text)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



