Thanks, yes, looks like that should work!

On Sunday, 30 August 2015 00:49:12 UTC+9, Lee H. wrote:
>
> I'm guessing the answer to this question is going to be 'no', but I wanted 
> to double check there is not something I am missing.
>
> Let's say you have a spider that scrapes some URLS, and you want to take 
> some information returned from analyzing ALL those requests BEFORE deciding 
> what to do next. 
>
> I know Scrapy doesn't work like the following, but just in pseduo code to 
> illustrate roughly what I want to do
>
> *def parse(self, response):*
>      
> *     resultCounts = {}*
> *     for page in pages:*
> *          resultCounts[page] = yield Request(url, callback=processPage)*
>
> *     # ALL pages visited, and all count results returned and added to 
> resultsCount*
> *     # get page with lowest count*
> *     minpage = sorted(resultCounts.items(), key=lambda t: t[1])[0][0]*
> *     yield Request(minpage, callback=processMinPage)*
>      
>
>
> *def processPage(self, response):*
>
> *      count = response.xpath('//div[@id="count"]')*
> *      return count*
>
> *def processMinPage(self, response):*
> *      # do stuff*
>
> Now I know the above doesn't work, the yield Request just returns a 
> deferred immediately, and not the count from the callback, and we get to 
> "minpage=..." way before any of the callback chains have finished anyway, 
> but I hope it illustrates the kind of thing I'd like to do in Scrapy. Is 
> there any way of doing this kind of thing? or would I need 2 spiders and a 
> python control script? 
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"scrapy-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/scrapy-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to