You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/user_guide/io.rst
+61Lines changed: 61 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6324,6 +6324,65 @@ More information about the SAV and ZSAV file formats is available here_.
6324
6324
6325
6325
.. _io.other:
6326
6326
6327
+
Google Sheets(via Colab)
6328
+
--------------------------------
6329
+
6330
+
Google Colab provides a utility class to read from and write to Google Sheets.
6331
+
6332
+
Opening and reading from a sheet
6333
+
''''''''''''''''''''''''''''''''
6334
+
We can open existing sheets by initializing ``sheets.InteractiveSheet`` with either:
6335
+
6336
+
* the ``url`` parameter, for example https://docs.google.com/spreadsheets/d/1MaOZNCUIe-NzhZ1aI3PgnBcs2TqNTB-AWBSNNcS15KI
6337
+
* the ``sheet_id`` parameter for example 1MaOZNCUIe-NzhZ1aI3PgnBcs2TqNTB-AWBSNNcS15KI
6338
+
6339
+
By default the left-most worksheets will be used, this can be changed by providing either ``worksheet_id`` or ``worksheet_name``.
6340
+
6341
+
The first time in each session that we use the ``InteractiveSheet`` method we will need to give Colab permission to edit our drive assets on our behalf.
0 commit comments