"""Config file for uploading Spotify Weekly Market Share.""" import snowflake.connector # Personal Keys AWS_ACCESS_KEY_ID = '' AWS_SECRET_ACCESS_KEY = '' credentials = snowflake.connector.connect( user='', password='', account='orchard' ) # Snowflake table names SNOWFLAKE_DATABASE = 'dev_engineering' SNOWFLAKE_SCHEMA = 'cgeitz' # File names and paths PREPROCESSED_PATH = 'archive/preprocessed_xlsx/(Week {week}_{year}) The Orchard Pro ' \ 'Rata Report.xlsx' PROCESSED_PATH = 'archive/processed_csv/' S3_BUCKET = 'dev-dataanalyticsdept' S3_DIR = 'spotify_weekly_market_share' CSV_FILENAME = 'spotify_market_share_week_{week}_{year}.csv'