Issue 709 in gdata-python-client: Spreadsheet export cannot convert file to txt

22 views
Skip to first unread message

gdata-pyt...@googlecode.com

unread,
Oct 27, 2014, 9:56:07 AM10/27/14
to gdata-python-client-...@googlegroups.com
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 709 by marc...@gmail.com: Spreadsheet export cannot convert file
to txt
https://code.google.com/p/gdata-python-client/issues/detail?id=709

What steps will reproduce the problem?

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
to gdata-python-client-...@googlegroups.com

Comment #1 on issue 709 by al...@velocloud.net: Spreadsheet export cannot
Same goes for docs/client.py

--- /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
to gdata-python-client-...@googlegroups.com

Comment #2 on issue 709 by marc...@gmail.com: Spreadsheet export cannot
I fixed mine by change the code to:

if export_format is not None:
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.

Thank you.
Reply all
Reply to author
Forward
0 new messages