Updating a published Google spreadsheet using a web application?

Is it possible (using django and python) for a web application to add content (rows with data) to a published spreadsheet?

+4
source share
1 answer

gspread is a great Python package for managing Google spreadsheets.

The documentation is comprehensive and the package is easy to implement. It allows you to access fields through the direct name of the cell or through the coordinates of the cell.

 # With name val = worksheet.acell('B1').value # With coords val = worksheet.cell(1, 2).value 
+2
source

Source: https://habr.com/ru/post/1497102/


All Articles