"""Config for Spotify Demographics Insights pre-aggregation workflow.""" import os from analytics_aggregation import base_config FEED_NAME = 'spotify_demographics' SQL2SF_STATUS_TABLE = '{env}_sql2sf_table_sync_status'.format( env=base_config.environment) SNOWFLAKE_WARM_UP_URL = os.environ.get('SNOWFLAKE_WARM_UP_URL') QUERY_ROOT = os.path.realpath(os.path.dirname(__file__)) + '/queries/' SNOWFLAKE_CACHE_WARMUP_ATTEMPT_LIMIT = 5 DAYS_BACK_FOR_LAST_SPOTIFY_INGESTION = 14