The relevant snippet of my code: 



            request = Request(url, callback=self.parse_moredetails_page)
            request.meta['item'] = item
            yield request
            


    #code to go inspect details page goes here    
    def parse_moredetails_page(self, response):
        item = response.meta['item']
        



On Friday, 9 October 2015 07:32:01 UTC-7, Jeremy D wrote:
>
> Be sure in your first function (parse) has 
>
> request.meta['item'] = item
>
> put what you have in a pastebin if its still borked
>
> On Fri, Oct 9, 2015 at 10:25 AM, house_scraper <rmi...@gmail.com 
> <javascript:>> wrote:
>
>> Thanks!
>>
>> My version of this is throwing up a "keyerror" on the following line: 
>>
>>  item = response.meta['item']
>>
>>
>> -- 
>> 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 scrapy-users...@googlegroups.com <javascript:>.
>> To post to this group, send email to scrapy...@googlegroups.com 
>> <javascript:>.
>> Visit this group at http://groups.google.com/group/scrapy-users.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
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 scrapy-users+unsubscr...@googlegroups.com.
To post to this group, send email to scrapy-users@googlegroups.com.
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