7

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)?

Ali Afshar
  • 40,967
  • 12
  • 95
  • 109
otmezger
  • 10,410
  • 21
  • 64
  • 90

1 Answers1

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