How to read excel file into python from a particular website

Viewed 29

I am trying to read several excel files available on this website https://www.motilaloswalmf.com/download/month-end-portfolio, using python's request library. However I am not able to figure out the exact url for downloading excels through network tab.

Can someone please help with it ? Thank you !

1 Answers

The given site needs JS rendering to extract the excel file links. You need selenium or playwright to achieve your goal.

Related