hyou
v2.1.1
Hyou 提供了一个简单的 Pythonic 界面来访问您的 Google 电子表格数据。
这是 v3 的开发分支。请参阅 2.x 版本的 v2 分支。
import hyou
# Login to Google Spreadsheet with credentials
collection = hyou . login ( '/path/to/credentails.json' )
# Open a spreadsheet by ID
spreadsheet = collection [ '1ZYeIFccacgHkL0TPfdgXiMfPCuEEWUtbhXvaB9HBDzQ' ]
print spreadsheet . title # => "Hyou Test Sheet"
# Open a worksheet in a spreadsheet by sheet name
worksheet = spreadsheet [ 'Sheet1' ]
print worksheet . title # => "Sheet1"
print worksheet . rows # => 5
print worksheet . cols # => 3
# Worksheet objects can be accessed just like two-dimensional lists
print worksheet [ 1 ][ 0 ] # => "banana"
print worksheet [ 1 ][ 1 ] # => "50"
# Call Worksheet.commit() to apply changes
worksheet [ 2 ][ 0 ] = 'cinamon'
worksheet [ 2 ][ 1 ] = 40
worksheet . commit ()
文档可在 https://hyou.readthedocs.io/en/latest/ 获取。
高桥周平
该库由 Google 员工创作,版权归 Google 所有,但不是 Google 官方产品。
版权所有 2015 Google Inc. 保留所有权利。
根据 Apache 许可证 2.0 版(“许可证”)获得许可;除非遵守许可证,否则您不得使用此文件。您可以在以下位置获取许可证副本:
http://www.apache.org/licenses/LICENSE-2.0
除非适用法律要求或书面同意,否则根据许可证分发的软件均按“原样”分发,不带任何明示或暗示的保证或条件。请参阅许可证,了解许可证下管理权限和限制的特定语言。