Google Spreadsheets Python API
项目描述
简单的Google Spreadsheets Python API。
基本用法
连接到Google电子表格并设置单元格的值
import gspread
# Login with your Google account
gc = gspread.login('thedude@abid.es','****')
# Open a worksheet from spreadsheet with one shot
wks = gc.open("Where is the money Lebowski?").sheet1
wks.update_acell('B2', "it's down there somewhere, let me take another look.")
功能
通过标题、url或key打开电子表格。
通过标签选择单元格,例如'A1'。
提取范围、整行或整列的值。
独立于Google Data Python客户端库。
支持Python 3。
代码和文档
许可协议
MIT