一、首先cmd命令创建scrapy项目:scrapy startproject 项目名

--然后cmd命令创建scrapy爬虫任务:scrapy genspider 爬虫任务名 域名.com

如果需要在pycharm中运行scrapy框架,就在scrapy.cfg文件的同级目录下创建一个可执行文件  :文件名(随意起)

二、打开settings文件,设置用户代理:这个是初始的代码:

1.UA设置:#USER_AGENT = 'douban2 (+http://www.yourdomain.com)',需要把注释关掉,uA改为自己电脑的用户代理值,例如:
USER_AGENT = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.8 Safari/537.36'

2.关闭爬虫协议:初始是这样的:#ROBOTSTXT_OBEY = True,改为 ROBOTSTXT_OBEY = False

3.设置下载延迟,防止请求过快导致IP被封:DOWNLOAD_DELAY = 0.5

4.设置Cookie:COOKIES_ENABLED = False

DEFAULT_REQUEST_HEADERS = { # 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', # 'Accept-Language': 'en', 'Cookie':'cookie的值'

'Referer':'跳转参数' }

5.打开管道:

ITEM_PIPELINES = { 'douban2.pipelines.Douban2Pipeline': 300, } #ITEM_PIPELINES要解开注释才能把数据存储到文件

下面是scrapy爬取豆瓣电影250案例

任务文件movie.py

import scrapy
from ..items import Douban2Item  # 从items.py中导入Douban2Item类来装载数据class Movie2Spider(scrapy.Spider):name = 'movie2'allowed_domains = ['douban.com']start_urls = ['https://movie.douban.com/top250']def parse(self, response):# 提取数据# 另外一种方法:title_list = response.xpath('//span[@class="title"][1]/text()').extract()#             score_list = response.xpath('//span[@class="rating_num"]/text()').extract()title_list = response.xpath('//span[@class="title"][1]/text()').getall()  # 电影名称print(title_list)score_list = response.xpath('//span[@class="rating_num"]/text()').getall()  # 电影评分print(score_list)url_list = response.xpath('//div[@class="hd"]/a/@href').getall()  # 详情页url# 构建数据载体,装载数据方式类似字典for i in range(len(url_list)):item_ = Douban2Item()item_['title_'] = title_list[i]item_['score_'] = score_list[i]# 详情页的url需要手动构造requst对象来发送请求,用yield把requstq对象传给引擎#               url          解析方法       跨方法传递数据的方法 装载数据的对象作为meta字典的值yield scrapy.Request(url_list[i], callback=self.parse_url, meta={'fish': item_})# 手动构造详情页的解析方法def parse_url(self, response):# xpath语法不通用 需要两种语句才能提取 这里提取到的text是单个的简介,而且分成好几个部分的,所以需要拼接text_list = response.xpath('//div[@class="indent"]/span[2]/text()|//div[@class="indent"]/span[1]/text()').getall()text_ = ''.join(text_list)  # yield单个传递请求,所以解析出来的是单个电影的简介text_ = text_.replace('\u3000','')text_ = text_.replace('\n','')text_ = text_.replace(' ','')print(text_)# 另外一种接收item对象数据的方法: item_ = response.meta['fish']item_ = response.meta.get('fish')# 将text_数据装进运输载体item_['text_'] = text_# 把数据交给引擎,引擎再交给管道yield item_

pipelines.py

import jsonclass Douban2Pipeline:def __init__(self):self.file = open('douban250_2.json', 'w', encoding='UTF-8')print('文件douban250_2.json >>>>打开了')def process_item(self, item, spider):# 数据载体对象字典转换dict_ = dict(item)# 字典数据转为json数据格式,存入文件json_data = json.dumps(dict_, ensure_ascii=False) + ',\n'self.file.write(json_data)print('一条数据被写入文件douban250_2.json')return item  # 多管道时,用于把数据载体对象传递给下一个管道def close_spider(self, spider):self.file.close()print('文件douban250_2.json >>>>关闭了')

setting.py

# Scrapy settings for douban2 project
#
# For simplicity, this file contains only settings considered important or
# commonly used. You can find more settings consulting the documentation:
#
#     https://docs.scrapy.org/en/latest/topics/settings.html
#     https://docs.scrapy.org/en/latest/topics/downloader-middleware.html
#     https://docs.scrapy.org/en/latest/topics/spider-middleware.htmlBOT_NAME = 'douban2'SPIDER_MODULES = ['douban2.spiders']
NEWSPIDER_MODULE = 'douban2.spiders'# Crawl responsibly by identifying yourself (and your website) on the user-agent
#USER_AGENT = 'douban2 (+http://www.yourdomain.com)'
USER_AGENT = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.8 Safari/537.36'
# Obey robots.txt rules
ROBOTSTXT_OBEY = False  # 爬虫协议关闭一下# Configure maximum concurrent requests performed by Scrapy (default: 16)
#CONCURRENT_REQUESTS = 32# Configure a delay for requests for the same website (default: 0)
# See https://docs.scrapy.org/en/latest/topics/settings.html#download-delay
# See also autothrottle settings and docs
DOWNLOAD_DELAY = 0.5
# The download delay setting will honor only one of:
#CONCURRENT_REQUESTS_PER_DOMAIN = 16
#CONCURRENT_REQUESTS_PER_IP = 16# Disable cookies (enabled by default)
# COOKIES_ENABLED = False
COOKIES_ENABLED = False# Disable Telnet Console (enabled by default)
#TELNETCONSOLE_ENABLED = False# Override the default request headers:
DEFAULT_REQUEST_HEADERS = {
#   'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
#   'Accept-Language': 'en','Cookie':'ll="118286"; bid=47FMkTWzZI8; push_noty_num=0; push_doumail_num=0; __utmv=30149280.21661; _vwo_uuid_v2=D2BD448DF51E5648418E0B28487BF4D1B|b06c2cda3cc6f9239f9ba52c2539bef8; __gads=ID=31827dbd1130432c-22caf2faacca0016:T=1628049782:RT=1628049782:S=ALNI_Mb469ig1mvKwkQiQ6H9iVtUkKueeg; __yadk_uid=9Q8Ffj5vYmiFTyr8HsXK5mC03cMANKSo; __utmz=30149280.1631278427.25.8.utmcsr=baidu|utmccn=(organic)|utmcmd=organic; __utmz=223695111.1631278427.25.9.utmcsr=baidu|utmccn=(organic)|utmcmd=organic; dbcl2="216614413:uIcIZKCE9f8"; ck=nmba; _pk_ref.100001.4cf6=%5B%22%22%2C%22%22%2C1631338051%2C%22https%3A%2F%2Fwww.baidu.com%2Flink%3Furl%3Di6tGjC8wPEiSsu-JxdkiWUBcEQU81foPjJE0zHiZOUG7-rZEPYg7qK1XSHyEKgvH%26wd%3D%26eqid%3Da11ed622000282fc00000006613b5539%22%5D; _pk_id.100001.4cf6=51a2307cd23f3f40.1627965241.26.1631338051.1631280367.; _pk_ses.100001.4cf6=*; __utma=30149280.2139467737.1627965184.1631278427.1631338051.26; __utmb=30149280.0.10.1631338051; __utmc=30149280; __utma=223695111.889268973.1627965241.1631278427.1631338051.26; __utmb=223695111.0.10.1631338051; __utmc=223695111','Referer':'https://movie.douban.com/top250'
}# Enable or disable spider middlewares
# See https://docs.scrapy.org/en/latest/topics/spider-middleware.html
#SPIDER_MIDDLEWARES = {
#    'douban2.middlewares.Douban2SpiderMiddleware': 543,
#}# Enable or disable downloader middlewares
# See https://docs.scrapy.org/en/latest/topics/downloader-middleware.html
#DOWNLOADER_MIDDLEWARES = {
#    'douban2.middlewares.Douban2DownloaderMiddleware': 543,
#}# Enable or disable extensions
# See https://docs.scrapy.org/en/latest/topics/extensions.html
#EXTENSIONS = {
#    'scrapy.extensions.telnet.TelnetConsole': None,
#}# Configure item pipelines
# See https://docs.scrapy.org/en/latest/topics/item-pipeline.html
ITEM_PIPELINES = {'douban2.pipelines.Douban2Pipeline': 300,
}   #ITEM_PIPELINES要解开注释才能把数据存储到文件# Enable and configure the AutoThrottle extension (disabled by default)
# See https://docs.scrapy.org/en/latest/topics/autothrottle.html
#AUTOTHROTTLE_ENABLED = True
# The initial download delay
#AUTOTHROTTLE_START_DELAY = 5
# The maximum download delay to be set in case of high latencies
#AUTOTHROTTLE_MAX_DELAY = 60
# The average number of requests Scrapy should be sending in parallel to
# each remote server
#AUTOTHROTTLE_TARGET_CONCURRENCY = 1.0
# Enable showing throttling stats for every response received:
#AUTOTHROTTLE_DEBUG = False# Enable and configure HTTP caching (disabled by default)
# See https://docs.scrapy.org/en/latest/topics/downloader-middleware.html#httpcache-middleware-settings
#HTTPCACHE_ENABLED = True
#HTTPCACHE_EXPIRATION_SECS = 0
#HTTPCACHE_DIR = 'httpcache'
#HTTPCACHE_IGNORE_HTTP_CODES = []
#HTTPCACHE_STORAGE = 'scrapy.extensions.httpcache.FilesystemCacheStorage'
# FEED_EXPORT_ENCODING = 'UTF-8'

注意:cookie值需要更新的。如果没什么改动,直接运行scrapy框架发现爬取不到数据,那重新复制一下cookie值就了,例如出现这样的:

pipelines.py

# Define your item pipelines here
#
# Don't forget to add your pipeline to the ITEM_PIPELINES setting
# See: https://docs.scrapy.org/en/latest/topics/item-pipeline.html# useful for handling different item types with a single interface
from itemadapter import ItemAdapter
import jsonclass Douban2Pipeline:def __init__(self):self.file = open('douban250_2.json', 'w', encoding='UTF-8')print('文件douban250_2.json >>>>打开了')def process_item(self, item, spider):# 数据载体对象字典转换dict_ = dict(item)# 字典数据转为json数据格式,存入文件json_data = json.dumps(dict_, ensure_ascii=False) + ',\n'self.file.write(json_data)print('一条数据被写入文件douban250_2.json')return item  # 多管道时,用于把数据载体对象传递给下一个管道def close_spider(self, spider):self.file.close()print('文件douban250_2.json >>>>关闭了')

items.py

# Define here the models for your scraped items
#
# See documentation in:
# https://docs.scrapy.org/en/latest/topics/items.htmlimport scrapyclass Douban2Item(scrapy.Item):# define the fields for your item here like:# name = scrapy.Field()title_ = scrapy.Field()score_ = scrapy.Field()text_ = scrapy.Field()pass

-----如果有帮到你,麻烦给个赞,哈哈。。。

pycharm运行scrapy框架爬取豆瓣电影250可能遇到的问题相关推荐

  1. 用Scrapy框架爬取豆瓣电影,构建豆瓣电影预测评分模型

    文章目录 前言 一.Scrapy爬虫爬取豆瓣电影 1. Scrapy框架介绍 (1) Scrapy框架构造: (2) 数据流 (3) 项目结构 2. 创建爬虫爬取豆瓣 (1)创建项目 (2) 创建It ...

  2. 03_使用scrapy框架爬取豆瓣电影TOP250

    前言: 本次项目是使用scrapy框架,爬取豆瓣电影TOP250的相关信息.其中涉及到代理IP,随机UA代理,最后将得到的数据保存到mongoDB中.本次爬取的内容实则不难.主要是熟悉scrapy相关 ...

  3. 杀鸡用用牛刀 scrapy框架爬取豆瓣电影top250信息

    文章目录 一.分析网页 二.scrapy爬虫 三.处理数据 原文链接:https://yetingyun.blog.csdn.net/article/details/108282786 创作不易,未经 ...

  4. 基于Scrapy框架爬取豆瓣《复联4》影评,并生成词云

    基于Scrapy框架爬取豆瓣<复联4>影评,并生成词云 1. 介绍及开发环境 2. 爬虫实现 2.1 新建项目 2.2 构造请求 2.3 提取信息 2.4 数据存储 2.4 运行结果 3. ...

  5. python爬虫——用Scrapy框架爬取阳光电影的所有电影

    python爬虫--用Scrapy框架爬取阳光电影的所有电影 1.附上效果图 2.阳光电影网址http://www.ygdy8.net/index.html 3.先写好开始的网址 name = 'yg ...

  6. 爬虫利器初体验 scrapy,爬取豆瓣电影

    目录 前言 scrapy 数据流 scrapy 组件 爬取豆瓣电影 Top250 后记 送书后话 前言 为什么要学 scrapy 呢?看下图中的招聘要求,就清楚了.很多招聘要求都有 scrapy,主要 ...

  7. 爬虫项目实操三、用scrapy框架爬取豆瓣读书Top250的书名,出版信息和评分

    安装方法:Windows:在终端输入命令:pip install scrapy:mac:在终端输入命令:pip3 install scrapy,按下enter键,再输入cd Python,就能跳转到P ...

  8. python scrapy框架爬取豆瓣top250电影篇一Windows下建立Scrapy项目,pycharm编辑

    1.打开cmd,进入到项目准备所放在的文件夹,执行命令: scrapy startproject douban 然后就可以使用pycharm打开项目了 2.建立spider文件 cmd命令行进入到项目 ...

  9. Python 采用Scrapy爬虫框架爬取豆瓣电影top250

    scrapy 简介 在此,默认已经安装好Scrapy,如果没有安装可以到scrapy 官网下载安装. 注意: 在安装Scrapy之前首先需要安装一下python第三方库:(安装方法并不在本文讲解范围, ...

  10. 爬虫框架scrapy,爬取豆瓣电影top250

    1 . 新建项目 进入打算存储代码的目录,命令行运行如下语句 scrapy startproject tutorial 2 . 定义Item import scrapyclass DoubanItem ...

最新文章

  1. 海思移植opencv+车辆检测
  2. 【090723】动态调用webservice
  3. 机器人学习--Hans Moravec在斯坦福博士论文1980年-Obstacle Avoidance and Navigation in the Real World by a Seeing Ro
  4. 详解Spring缓存注解@Cacheable,@CachePut , @CacheEvict使用
  5. java 共享锁_Java锁--共享锁和ReentrantReadWriteLock
  6. html5 电流效果,在HTML5 Canvas 2D上绘制云雾中的电流动画特效
  7. 数据结构与算法的时间空间复杂度
  8. Python3之max key参数学习记录
  9. 鼠标、键盘键值对应表
  10. SVG 学习四 基础API
  11. C++复合类型-指针变量
  12. HM67主板开启ACHI
  13. 2020中青杯B题股指与国家经济数学建模全过程文档及程序
  14. 分辨率、像素、像素尺寸、GSD、图片文件大小
  15. Unity 使用Socket 简单实现通讯
  16. prometheus常用函数详解
  17. numpy和pandas的操作
  18. 评估指标——均方误差(MSE)、平均绝对误差(MAE)
  19. 2021年N1叉车司机新版试题及N1叉车司机模拟考试题库
  20. 英迈国际和MassChallenge选出入围彗星竞赛决赛的最佳B2B初创公司

热门文章

  1. 人工智能专题讲学:开源数据支撑下的人物与装备分析
  2. sap采购定价过程配置
  3. CTF:菜狗截获了一张菜鸡发给菜猫的动态图,却发现另有玄机
  4. 学习问题--js图片路径加载问题
  5. ITN网络课程笔记(十一)
  6. 用PHP查看微信撤回的消息,[笔记]使用itchat监听微信撤回消息
  7. vscode汇编环境配置
  8. 快速生产地图瓦片解决方案:多任务切图
  9. 济南市公安局人口数据备份库项目(数据复制)之二
  10. npm安装同一个包的不同版本,以echarts为例