Python爬虫系列——Scrapy爬虫实例
Python爬虫系列——爬取豆瓣电影信息创建项目
命令行工具:scrapy startproject DoubanBookSpider
一般先在items.py配置数据字段
12345678910111213141516class DoubanMovieCommentItem(scrapy.Item): # define the fields for your item here like
...