xxxxxxxxxx
sheet = parse_excel_file(var.MATRICE_WALLIX_SHEET_PROFILES, file_name)
xxxxxxxxxx
import pandas as pd
df = pd.read_excel (r'Path where the Excel file is stored\File name.xlsx')
print (df)
xxxxxxxxxx
import pandas as pd
# Read the Excel file into a pandas DataFrame
df = pd.read_excel('path/to/file.xlsx')
# Access the data in the DataFrame
print(df)
xxxxxxxxxx
READ .xlsx
import pandas as pd
df = pd.read_excel (r'Path where the Excel file is stored\File name.xlsx')
print (df)