forked from google/hyou
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
84 lines (59 loc) · 2.48 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
Hyou - Pythonic Interface to access Google Spreadsheet
======================================================
Hyou provides a simple Pythonic interface to access your Google
Spreadsheet data.
|PyPI version| |Build Status| |Coverage Status|
**This is the development branch for v3**. Please see `v2
branch <https://github.com/google/hyou/tree/v2>`__ for 2.x releases.
Synopsis
--------
.. code:: python
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()
Documentation
-------------
Documentation is available at https://hyou.readthedocs.io/en/latest/.
Author
------
Shuhei Takahashi
- Website: https://nya3.jp/
- Twitter: https://twitter.com/nya3jp/
Disclaimer
----------
This library is authored by a Googler and copyrighted by Google, but is
not an official Google product.
License
-------
Copyright 2015 Google Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may
not use this file except in compliance with the License. You may obtain
a copy of the License at
::
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
.. |PyPI version| image:: https://badge.fury.io/py/hyou.svg
:target: http://badge.fury.io/py/hyou
.. |Build Status| image:: https://travis-ci.org/google/hyou.svg
:target: https://travis-ci.org/google/hyou
.. |Coverage Status| image:: https://coveralls.io/repos/google/hyou/badge.svg?branch=master&service=github
:target: https://coveralls.io/github/google/hyou?branch=master