2016-10-05 83 views
0

這是我的代碼:Crapy錯誤IndentationError:預計縮進塊

from scrapy.spider import Spider 
from scrapy.selector import Selector 
from thuctapsinhvietnam.items import ThuctapsinhvietnamItem 


class ThuctapsinhvietnamSpider(Spider): 
    name = "thuctapsinhvietnam" 
    allowed_domains ["thuctapsinhvietnam.com"] 
    start_urls = [ 
     "http://www.thuctapsinhvietnam.com/thuctap-phuong-vinh-hao-3970.html" 
     ] 

    def parse(self, response): 
     def parse(self, response): 
     cases = Selector(response).xpath('//div[@id="areaThongTinCaNhan"]/table/tbody/tr[2]/td/table/tbody/tr/td/table/tbody/tr') 

     for case in cases: 
      item = ThuctapsinhvietnamItem() 
      item['Name'] = question.xpath(
       '//td[3][@class="thongtin"]/text()')extract()[0] 
      item['Phone'] = question.xpath(
       '//td[3][@class="thongtin"]/text()')extract()[0] 
      item['Email'] = question.xpath(
       '//td[3][@class="thongtin"]/text()')extract()[0] 
      item['Dob'] = question.xpath(
       '//td[3][@class="thongtin"]/text()')extract()[0] 
      item['Sex'] = question.xpath(
       '//td[3][@class="thongtin"]/text()')extract()[0] 
      item['School'] = question.xpath(
       '//td[3][@class="thongtin"]/text()')extract()[0] 
      item['Introduction'] = question.xpath(
       '//td[3][@class="thongtin"]/text()')extract()[0] 
      item['Place'] = question.xpath(
       '//td[3][@class="thongtin"]/text()')extract()[0] 
      yield item 

我有問題時,試圖在Ubuntu scrapy,我使用XPath獲取數據。 我從這個網站試圖scrapy信息,但它的主要錯誤在這裏:

File "thuctapsinhvietnam_spider.py", line 15 
cases = Selector(response).xpath('//div[@id="areaThongTinCaNhan"]/table/tbody/tr[2]/td/table/tbody/tr/td/table/tbody/tr') 
    ^
IndentationError: expected an indented block 

回答

0

你有這兩個:

def parse(self, response): 
    def parse(self, response): 
相關問題