我正在使用 suds 连接到 Web 服务。
from suds.client import Client
client=Client(url)
#then i'm using web servise methods to get table. It is very big table.
big_table=client.service.GetVeryBigTable()
#nd trying read every row
for row in big_table:
print row.Id + row.Nmae + row.Description + row.Item1 +......
问题是 - 当我阅读行时,它是从我的本地内存中读取的,还是每次都从远程 webservise 读取?我的意思是变量big_table
包含指向我内存中所有表的链接,还是每次都像迭代器一样从远程获取它?