New issue 554 by hcv...@gmail.com: AttributeError: 'DocsClient' object has
no attribute 'GetDocList'
http://code.google.com/p/gdata-python-client/issues/detail?id=554
What steps will reproduce the problem?
1. Upgrade to 2.0.15 from 2.0.14
2. Access 'GetDocList' method of gdata.docs.client.DocsClient
What is the expected output? What do you see instead?
I used to get a doc list now this error:
AttributeError: 'DocsClient' object has no attribute 'GetDocList'
Was this deprecated? If so, how would I have found out?
What version of the product are you using?
2.0.15 - after downgrade to 2.0.14 it works again (Python 2.7)
Please provide any additional information below.
Sample:
client = gdata.docs.client.DocsClient(source='hcvst-spreadsheetexport-v1')
client.ssl = True
client.ClientLogin('username', 'password', client.source)
feed =
client.GetDocList(uri='/feeds/default/private/full?title=ABC&title-exact=true&max-results=1')
Comment #1 on issue 554 by vicfry...@google.com:
AttributeError: 'DocsClient' object has no attribute 'GetDocList'
http://code.google.com/p/gdata-python-client/issues/detail?id=554
This is mentioned in the changelog. Upgrading to the latest version is not
backwards compatible with the Docs client. You'll have to update your
method use (in this case client.GetResources...)
FWIW, I also got bitten by this because the doc at
http://code.google.com/apis/documents/docs/3.0/developers_guide_python.html
is not updated. The doc still says:
feed = client.GetDocList(uri='/feeds/us...@yourdomain.com/private/full')
PrintFeed(feed) # PrintFeed() defined below
Yep! Sorry, but we are updating the guide too as part of a bigger change.
Just got bit by this when trying out the "Retrieving a list of documents"
example in the docs
http://code.google.com/apis/documents/docs/3.0/developers_guide_python.html
Yes, sorry, that documentation is out of date. Please use GetResources.
I used GetResources, but now I need to use Copy() and Move(), but those are
not working either. Which methods should I use?
When the document could be updated? I worry there are a lot of changed not
match the document.
Just got hit by this too!!! These docs are way out of date!! At the least,
put a warning in there!
Just got hit by this too!!! Please update these docs!
Yeah please update docs... or at least tell people they're current as of
2.0.14?
As a new user this also confused the crap out of me. Please update the
documentation...