# -*- coding: utf-8 -*- import scrapy class LanqiuSpider(scrapy.Spider): name = 'lanqiu' allowed_domains = ['m.hgg070.com/'] start_urls = ['http://m.hgg070.com//'] def parse(self, response): pass