def do_get()

in userbeacon/vscommunicator.py [0:0]


    def do_get(self, urlpath):
        """
        perform a GET request to VS, with retries. Raises on error, for details see `do_generic`
        :param urlpath:
        :return:
        """
        return self.do_generic(urlpath, lambda full_url:
                               requests.get(full_url,auth=(settings.VIDISPINE_ADMIN_USER,settings.VIDISPINE_ADMIN_PASSWORD),
                                                      headers={
                                                          "Accept": "application/json"
                                                      }, verify=self.verify))