lanqiu.py 223 B

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