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
除非適用法律要求或書面同意,否則根據許可證分發的軟體均以「原樣」分發,不帶任何明示或暗示的保證或條件。請參閱許可證,了解許可證下管理權限和限制的特定語言。