diff --git a/landing_zone/.DS_Store b/landing_zone/.DS_Store index 5baaedc..27819ae 100644 Binary files a/landing_zone/.DS_Store and b/landing_zone/.DS_Store differ diff --git a/landing_zone/synthetic/.DS_Store b/landing_zone/synthetic/.DS_Store index b8579d6..a84e956 100644 Binary files a/landing_zone/synthetic/.DS_Store and b/landing_zone/synthetic/.DS_Store differ diff --git a/landing_zone/synthetic/supermarket_products/supermarket_products.py b/landing_zone/synthetic/supermarket_products/supermarket_products.py index 1701c09..cc6e7b2 100644 --- a/landing_zone/synthetic/supermarket_products/supermarket_products.py +++ b/landing_zone/synthetic/supermarket_products/supermarket_products.py @@ -10,7 +10,7 @@ logger = logging.getLogger() # Load configuration -config_path = os.path.join('/Users/pratistha99/PycharmProjects/pythonProject/pythonProject','config.ini') +config_path = os.path.join('../../','config.ini') config = configparser.ConfigParser() config.read(config_path) logging.info(f'Configuration loaded from {config_path}') @@ -26,7 +26,7 @@ # Reading file paths from config file products_json = os.path.join(raw_data_dir,'flipkart_products.json' ) stores_csv = os.path.join(raw_data_dir, 'establishments_catalonia.csv') -output_csv = os.path.join(raw_data_dir, 'assigned_products.csv') +output_csv = os.path.join(raw_data_dir, 'supermarket_products.csv') # Load JSON data from file with open(products_json, 'r') as file: