John Coggeshall
Results
31
comments of
John Coggeshall
``` logging.info("Downloading {} thing(s).".format(self.total)) for idx, thing in enumerate(self.things): logging.info("Downloading thing {} - {}".format(idx, thing)) return_code = Thing(thing).download(self.download_dir, self.compress, self.api_key) time.sleep(5) if self.quick and return_code == State.ALREADY_DOWNLOADED: logging.info("Caught up, stopping.")...