#!/usr/bin/env python """Flow's exec. Run it with --help for usage.""" from feed_ingestion.flows.amazon_unlimited_marketshare import config from feed_ingestion.util.exec_utils import FlowExecMonthly class FlowExec(FlowExecMonthly): """Flow's exec.""" flow_name = config.feed_name if __name__ == '__main__': FlowExec().main()