Usually the xlrd library uses pathname/filename to read the file as follows
workbook = xlrd.open_workbook('some_filename.xls')
But in my flask project i am dealing with an uploaded file.So i got the file as
xlsfile = request.files['file']
So how can i use this file object in xlrd.?