I'm using pandas to load an excel file.
I get the file from an email attachment using my_excel_content = email.get_payload(decode=True) on the body of the email.
I would like to load my_excel_content into a pandas dataframe. I could write to it to file and use read_excel(path), but is there any way to load my excel in pandas directly instead of first saving it and loading it anew?