I have a cron job that exports some data to CSV every day. Is it possible to write this data directly to a Google doc (spreadsheet) from the Linux shell (Ubuntu)?
Asked
Active
Viewed 1.4k times
7

Ali Afshar
- 40,967
- 12
- 95
- 109

otmezger
- 10,410
- 21
- 64
- 90
-
This might help https://code.google.com/p/googlecl/ – malkia Dec 07 '12 at 20:28
1 Answers
8
For that you have the Google Documents List API
Example code at Write to a Google Spreadsheet from a Python script
-
Thanks a lot. I did it with the provided python script, and manage to install it locally **without root rights**. – otmezger Dec 08 '12 at 10:57