#!/usr/bin/env python """Flow's exec. Run it with --help for usage.""" import logging from feed_ingestion.flows.deezer import config from feed_ingestion.util import exec_utils logger = logging.getLogger(__name__) class FlowExec(exec_utils.FlowExecDaily, exec_utils.LicensorMixin): """Flow's exec.""" flow_name = 'deezer' # cannot use config.feed_name - it brokes convention LICENSORS = config.licensors def add_args(self): """Add args.""" super().add_args() if __name__ == '__main__': FlowExec().main()