result = urlfetch.fetch(url=apiurl, method=urlfetch.POST)conn = httplib.HTTPConnectionFile "C:\Users\Martin\Documents\google_appengine\martindevans\eveapi.py", line 24, in get File "C:\Program Files (x86)\Google\g
因此,要执行并行处理,许多实例将同时打开该文件,因此,由于该文档的限制,达到了URLFetch速率限制:
raise Exception("File could not be opened: %s" % path)
问题
我们需要一种绕过URLFetch是否有一种从API读取GCS文件的方法,它不通过URLFetch进行路由,就像数据存储API不产生url获取速率限制一样?