I have downloaded an Excel file with 4 sheets from the web but when I try to convert it into a pandas dataframe I can only access the first sheet.
import requests
import pandas as pd
dls = "http://www.nasdaqomxnordic.com/digitalAssets/110/110149_the-nordic-list-july-12--2019.xlsx"
resp = requests.get(dls)
output = open('test.xlsx', 'wb')
output.write(resp.content)
output.close()
df = pd.read_excel("test.xlsx", sheet_name = 1)
I get the following error message : "TypeError: 'values' is not ordered, please explicitly specify the categories order by passing in a categories argument."