How can one write to a publicly available Google sheet (without authorization) in Python?
问题 I have full edit access to a Google Sheet not owned by me. I want to be able to write to the spreadsheet using Python without Google API authorization. I checked several available packages ( gdata , gspread etc.) and seems all of them ask for the credentials. I was also able to read the content of a spreadsheet without authorization using requests or pd.read_csv() by pandas (I tweaked the URL by changing the last part saying ... edit#gid= ... to ... export?format=csv&gid= ...). Yet, when