"""Config for YouTube Facts workflow.""" import os feed_name = 'youtube_facts' secrets_path = 'youtube_facts' feed_version = '1.0' storeid = 453 feedid = 38 # environment to run in environment = os.environ.get('ENVIRONMENT', 'dev') licensors = ['theorchard', 'sme'] report_dynamo_status_names = { 'asset': { 'theorchard': [ 'youtube_bulk_reports_theorchard_asset_basic', 'youtube_bulk_reports_theorchard_asset_estimated_revenue', 'youtube_bulk_reports_theorchard_asset_combined' ], 'sme': [ 'youtube_bulk_reports_sme_asset_basic', 'youtube_bulk_reports_sme_asset_combined' ] }, 'video': { 'theorchard': [ 'youtube_bulk_reports_theorchard_basic', 'youtube_bulk_reports_theorchard_estimated_revenue', 'youtube_bulk_reports_theorchard_ad_rates', 'youtube_bulk_reports_theorchard_combined' ], 'sme': [ 'youtube_bulk_reports_sme_basic', 'youtube_bulk_reports_sme_ad_rates', 'youtube_bulk_reports_sme_combined' ] }, } snowflake = { 'staging_db': os.environ.get( 'SNOWFLAKE_YOUTUBE_DATABASE', 'prod'), 'staging_schema': os.environ.get( 'SNOWFLAKE_YOUTUBE_SCHEMA', 'yt_reports_api'), } mapping_table = 'youtube_video_asset_type_mapping'