I wish to read a Google sheet to pandas. There are number of questions already answered on this topic, but all of the answers (using gspread, basically) require credentials. Here I don't have (or want to have) the credentials, but have a shared link opened for view.
I can even download the buffer (as HTML) with urllib.request
So, given a shared link, or a buffer, but no credentials, how can I parse the Google sheet to a Python data structure?
Thank you,