Hi all,
i'm trying to use :
class DocsSample(object):
def __init__(self, email, password):
self.gd_client = gdata.docs.service.DocsService()
self.gd_client.email = email
self.gd_client.password = password
self.gd_client.source = 'Document List Python Sample'
self.gd_client.ProgrammaticLogin()
query =
gdata.docs.service.DocumentQuery(categories=['document'])
self.feed = self.gd_client.Query(query.ToUri())
docs_sample = DocsSample(emal, password)
print docs_sample.feed.entry[0].content.src
http://docs.google.com/a/test.com/feeds/download/documents/RawDocContents?action=fetch&justBody=false&revision=_latest&editMode=false&docID=<xxxx>
How can i print out the html content ?
Any idea ?
thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Docs Data APIs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/Google-Docs-Data-APIs?hl=en
-~----------~----~----~----~------~----~------~--~---