11 lines
191 B
Python
11 lines
191 B
Python
import scrapy
|
|
|
|
|
|
class Db250Spider(scrapy.Spider):
|
|
name = "db250"
|
|
allowed_domains = ["douban.com"]
|
|
start_urls = ["http://douban.com/"]
|
|
|
|
def parse(self, response):
|
|
pass
|