views:

308

answers:

2

Hello,

I want to upload document, file to google docs using Google Apps Engine (python)

any code or link will be appreciated

A: 

See the documentation, but you might try something like:

ms = gdata.MediaSource(file_path='/path/to/your/test.doc',  content_type=gdata.docs.service.SUPPORTED_FILETYPES['DOC'])
entry = gd_client.Upload(ms, 'MyDocTitle')
print 'Document now accessible online at:', entry.GetAlternateLink().href
fmark
Hi,I have already gone from this. I am using a web form to upload my file in Google app engine now i want to store that file in google docsI am finding solution to that problem
JQuery Guru
A: 

Did you ever find an answer to this?

Jason
this should be as a comment not an answer.
Gopi