views:

17

answers:

2

I need a simple library or tool with which I can upload arbitrary files (other than the explicitly supported formats, like .doc, .docx, .xls, .pdf, .txt, .ppt etc.) to Google Docs. The Perl module WWW::Google::Docs::Upload doesn't work, I get an exception (Link not found at /usr/local/share/perl/5.8.8/WWW/Google/Docs/Upload.pm line 39; it's from 2008). Any programming language which is easy to run on Linux should be fine.

The responses http://stackoverflow.com/questions/2838968/how-to-programatically-upload-document-on-google-docs suggest using the API directly. Is there a tool or library which is a convenient wrapper around the API?

A: 

The googlecl (google command line) tool allows you to upload docs.

http://code.google.com/p/googlecl/

Marc
A: 

The project you want is called googlecl - see http://code.google.com/p/googlecl/wiki/Manual

Daniel Martin