Compare commits
No commits in common. '6e212752343e8274f6cc8a5863872d682030c9b1' and '2ebf883df7b513b00d8dcc9de29bb3b0fd10812f' have entirely different histories.
6e21275234
...
2ebf883df7
@ -0,0 +1,10 @@
|
||||
import scrapy
|
||||
|
||||
|
||||
class DouabnTop250Spider(scrapy.Spider):
|
||||
name = "douabn_top250"
|
||||
allowed_domains = ["book.douban.com"]
|
||||
start_urls = ["https://book.douban.com"]
|
||||
|
||||
def parse(self, response):
|
||||
pass
|
@ -1,10 +0,0 @@
|
||||
import scrapy
|
||||
|
||||
|
||||
class DoubanTop250Spider(scrapy.Spider):
|
||||
name = "douban_top250"
|
||||
allowed_domains = ["book.douban.com"]
|
||||
start_urls = ["https://book.douban.com/top250?start=0"]
|
||||
|
||||
def parse(self, response):
|
||||
pass
|
Loading…
Reference in New Issue