Hi,

we have a list of two-thousand-some subcribers maintained as a Google
Spreadsheet.

I use the following code to fetch the subscriber list:

###################################################
try:
  from xml.etree import ElementTree
except ImportError:
  from elementtree import ElementTree
import gdata.spreadsheet.service
import gdata.service
import atom.service
import gdata.spreadsheet
import atom
import string
from os.path import basename
import identity

def getbb():
    # Create a client class which will make HTTP requests with Google
Docs server.
    #client = gdata.docs.service.DocsService()
    client = gdata.spreadsheet.service.SpreadsheetsService()
    # Authenticate using your Google Docs email address and password.
    client.ClientLogin(identity.googleuser, identity.googlepass)

    feed=client.GetWorksheetsFeed(identity.dockey)
    feed2=client.GetListFeed(identity.dockey, basename(feed.entry
[0].id.text))
    return set([x.title.text for x in feed2.entry])
#################################################

This used to work fine but now I experience that no more than 1308
entires are fetched. Is this limit imposed on srpreadsheets as a free
service or is it a bug? Or am I not using the API properly?

Thanks,
Csaba

--

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 google-docs-data-a...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/Google-Docs-Data-APIs?hl=en.


Reply via email to