def __init__(self, ocr_path): self.ocr = fast_unpickle_gzip(ocr_path) self.ocr._update_rq = False print 'ocr loaded' self.seedoku = Seedoku(self.ocr) print 'seedoku created'
def __init__(self, config, ocr_path): self.ocr = fast_unpickle_gzip(ocr_path) self.ocr._update_rq = False print 'ocr loaded' self.seedoku = Seedoku(self.ocr) print 'seedoku created' keys = (key for key in config if key.startswith('AWS_SEEDOKU') is True) for key in keys: self.config[key] = config[key] print 'config loaded'