I want to Connect to an excel from Sharepoint using python but it doesnt work.
My code:
df = pd.read_excel(url,sheet_name = 'Sheet1', header = 0, auth=(username, password))
My error:
TypeError: read_excel() got an unexpected keyword argument 'auth'
How can I connect?
find a solution at this problem
authargument there. Refer to the official document, ` pandas.read_excel(io, sheet_name=0, *, header=0, names=None, index_col=None, usecols=None, squeeze=None, dtype=None, engine=None, ...)`