#!/usr/bin/env python """Flow's exec. Run it with --help for usage.""" from feed_ingestion.flows.youtube_asset import config from feed_ingestion.util import exec_utils class FlowExec(exec_utils.FlowExecDaily, exec_utils.LicensorMixin): """Flow's exec.""" flow_name = config.feed_name DEFAULT_CONCURRENCY_STRATEGY = ( exec_utils.ConcurrencyControlMixin.Strategy.WAIT) DEFAULT_MAX_CONCURRENT_FLOWS = 1 LICENSORS = config.licensors if __name__ == '__main__': FlowExec().main()