python scrapy实例:爬取笔趣阁长篇电子书
入门案例请看本人的scrapy学习一、二、三,本篇为进阶案例(网上有好多爬虫案例,但是80%都是无效的,大部分原因是原链接失效或者原网页发生改变,如果该实例失效,请读者留言告知,笔者定将第一时间更新)
#item.py代码
import scrapy
class YieldtestItem(scrapy.Item):
# define the fields for your item here like:
# name = scrapy.Field()
content = scrapy.Field()
#piplines.py代码
import pymysql
class YieldtestPipeline(object):
def __init__(self):
self.connection = pymysql.connect(host="localhost", user="root", passwo