From reading here I understood that I have to use all=True if I want to get all results, and then do as_list=False to get a generator to iterate over. But in fact this does not work well together. By specifying all=True it first starts fetching all results and generator does not call anything with results as pages are coming in.
I think all=True should just work with as_list=False. If I understand correctly, all=True is a noop in that case because as_list=False already implies it?
From reading here I understood that I have to use
all=Trueif I want to get all results, and then doas_list=Falseto get a generator to iterate over. But in fact this does not work well together. By specifyingall=Trueit first starts fetching all results and generator does not call anything with results as pages are coming in.I think
all=Trueshould just work withas_list=False. If I understand correctly,all=Trueis a noop in that case becauseas_list=Falsealready implies it?