"""Config for YouTube Red Marketshare Workflow.""" import os feed_name = 'youtube_red_marketshare' secrets_path = 'youtube_red_marketshare' feed_version = '1.0' s3_feed_name = 'YouTubeRedMarketShare' storeid = 569 # environment to run in environment = os.environ.get('ENVIRONMENT', 'dev') # staging raw table for the flow staging_raw_table = 'staging_raw_youtube_red_market_share' # youtube monthly staging raw tables used as sources in the flow youtube_monthly_reports_and_tables = { 'red_summary_v1_1': {'staging_raw_red_summary_music': 'staging_raw_youtube_monthly_red_summary_v1_1__music_summary'}, 'red_label_summary_v1_1': {'staging_raw_red_label_summary_music': 'staging_raw_youtube_monthly_red_label_summary_v1_1__music_summary', 'staging_raw_red_label_summary_subscribers': 'staging_raw_youtube_monthly_red_label_summary_v1_1__subscriber_summary'} # noqa: E501 }