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