<Retrieving data from an Excel file in Django usin...
# community-feeds
r
Retrieving data from an Excel file in Django using Pandas: How can I include duplicates that are being overwritten by Python? I am creating a django application which retrieves data from an excel file.

The excel file

I access the excel file through the scrape.py file: import pandas as pd import os from pathlib import Path BASE_DIR = Path(file).resolve().parent DATA_DIR = os.path.join(BASE_DIR, "Data") database_path = os.path.join(DATA_DIR, "Data.xlsx") Database = pd.read_excel(database_path) Then I have this class: class skimask: def...