How do I access (read, write) Google Sheets spreadsheets with Python?

前端 未结 8 818
盖世英雄少女心
盖世英雄少女心 2020-11-29 15:41

I am wondering if you can point me to an example of reading/writing to/from a google doc/spreadsheet using python.

I did look at google docs API here https://develo

8条回答
  •  抹茶落季
    2020-11-29 15:54

    I think you're looking at the cell-based feeds section in that API doc page. Then you can just use the PUT/ GET requests within your Python script, using either commands.getstatusoutput or subprocess.

提交回复
热议问题