I am downloading an excel file as a stream using the requests library.
r = requests.get(my_url, stream=True)
I want to read the data in this excel file, for that I can am trying to use pandas. But I am not sure how to read the file from the response I get. What can I do?