Skip to content

Commit

Permalink
chnaged supermarket products script
Browse files Browse the repository at this point in the history
  • Loading branch information
Pratistha authored and Pratistha committed Apr 7, 2024
1 parent 99c220d commit bd8bbc7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified landing_zone/.DS_Store
Binary file not shown.
Binary file modified landing_zone/synthetic/.DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -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}')
Expand All @@ -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:
Expand Down

0 comments on commit bd8bbc7

Please sign in to comment.