Call gd_client.Export(entry, export_filename), with a spreadsheet entry using code as follows. The export_filename could be 'foo.txt' having the '.txt' suffix.
... document_query = gdata.docs.service.DocumentQuery() feed = gd_client.Query(q) ... for entry in feed.entry: ... gd_client.Export(entry, export_filename)
What is the expected output? What do you see instead?
It is expected to download the file to foo.txt but raises the following exception instead.
This entry cannot be exported as a different format SERVICE ERROR while downloading ZWOpenLog Try ranaming the file.
What version of the product are you using? gdata (2.0.18)
Please provide any additional information below.
Line 334 in service.py checks if 'Export' is in the url with the following code:
if export_format is not None: => if url.find('/Export?') == -1: raise gdata.service.Error, ('This entry cannot be exported '
It should also check for 'export' with a lowercase 'e'.
Thank you.
-- You received this message because this project is configured to send all issue notifications to this address. You may adjust your notification preferences at: https://code.google.com/hosting/settings
gdata-pyt...@googlecode.com
unread,
Nov 9, 2014, 12:33:08 AM11/9/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
--- /usr/local/lib/python2.7/dist-packages/gdata/docs/client.py.old 2014-11-08 09:51:08.000000000 +0000 +++ /usr/local/lib/python2.7/dist-packages/gdata/docs/client.py 2014-11-08 09:54:03.135481000 +0000 @@ -397,7 +397,7 @@ def _get_download_uri(self, base_uri, extra_params=None): uri = base_uri.replace('&', '&') if extra_params is not None: - if 'exportFormat' in extra_params and '/Export?' not in uri: + if 'exportFormat' in extra_params and '/Export?' not in uri and '/export?' not in uri: raise gdata.client.Error, ('This entry type cannot be exported ' 'as a different format.')
gdata-pyt...@googlecode.com
unread,
Nov 10, 2014, 6:32:46 PM11/10/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to gdata-python-client-...@googlegroups.com
Comment #2 on issue 709 bymarc...@gmail.com: Spreadsheet export cannot
if (url.find('/Export?') == -1) and (url.find('/export?') == -1): raise gdata.service.Error, ('This entry cannot be exported ' 'as a different format')
What is the protocol to get this change made in the pypi package? BTW, I have the 2.0.18 version.