使用Google API在python中访问电子表格

时间:2016-11-09 11:51:51

标签: python google-sheets-api

如何使用Sheets API从Google表格访问python中的电子表格文档? 我试图访问我的谷歌帐户中的文档。那么API密钥是否足够,或者我们应该使用Oauth2client吗?

2 个答案:

答案 0 :(得分:1)

您可以使用OAuth2流程。凭据将存储在client_secret.json中。此过程详见Python Quickstart Sheets API指南。

Step 1:启用Google表格API

Step 2:安装Google客户端库

Step 3:设置示例

答案 1 :(得分:1)

您可以尝试使用库Gspread访问Google电子表格。您可以使用命令

安装gspread
pip install gspread

pip install https://github.com/burnash/gspread/archive/master.zip

我在how to access google sheets in python using gspread上写了一篇详细的博客。这可能会对你有所帮助。