python - 使用 scrapy 抓取特定网站时出现 "Too many requests"错误

标签 python web-scraping scrapy python-requests

我编写了一个蜘蛛来从 http://allevents.in 获取详细信息。 每次我尝试废弃时,我都会收到响应正文

Too many requests, please try after some time or report this problem at <a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="43202c2d3722203703222f2f2635262d37306d2a2d" rel="noreferrer noopener nofollow">[email protected]</a>

我也尝试过使用 shell 命令。

 scrapy shell 'http://allevents.in/new%20delhi/all'

但我仍然收到与 response.body 相同的响应。 我尝试过其他网站,例如 amazon效果很好。 另外,可以使用 requests 以及 urllib.urlopen() 获取上述 url。

这是我的settings.py 文件

# -*- coding: utf-8 -*-

# Scrapy settings for tutorial project
#
# For simplicity, this file contains only settings considered important or
# commonly used. You can find more settings consulting the documentation:
#
#     http://doc.scrapy.org/en/latest/topics/settings.html
#     http://scrapy.readthedocs.org/en/latest/topics/downloader-middleware.html
#     http://scrapy.readthedocs.org/en/latest/topics/spider-middleware.html

BOT_NAME = 'tutorial'

SPIDER_MODULES = ['tutorial.spiders']
NEWSPIDER_MODULE = 'tutorial.spiders'


# Crawl responsibly by identifying yourself (and your website) on the user-agent
#USER_AGENT = 'tutorial (+http://www.yourdomain.com)'

# Obey robots.txt rules
ROBOTSTXT_OBEY = True

# Configure maximum concurrent requests performed by Scrapy (default: 16)
# CONCURRENT_REQUESTS = 1

# Configure a delay for requests for the same website (default: 0)
# See http://scrapy.readthedocs.org/en/latest/topics/settings.html#download-delay
# See also autothrottle settings and docs
DOWNLOAD_DELAY = 5
# The download delay setting will honor only one of:
CONCURRENT_REQUESTS_PER_DOMAIN = 1
CONCURRENT_REQUESTS_PER_IP = 1

# Disable cookies (enabled by default)
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',
# }

# Enable or disable spider middlewares
# See http://scrapy.readthedocs.org/en/latest/topics/spider-middleware.html
#SPIDER_MIDDLEWARES = {
#    'tutorial.middlewares.TutorialSpiderMiddleware': 543,
#}

# Enable or disable downloader middlewares
# See http://scrapy.readthedocs.org/en/latest/topics/downloader-middleware.html
# DOWNLOADER_MIDDLEWARES = {
# #    'tutorial.middlewares.MyCustomDownloaderMiddleware': 543,
#      'scrapy.downloadermiddlewares.httpproxy.HttpProxyMiddleware': None,
#      # 'tutorial.middlewares.ProxyMiddleware': 100,
# }

# Enable or disable extensions
# See http://scrapy.readthedocs.org/en/latest/topics/extensions.html
#EXTENSIONS = {
#    'scrapy.extensions.telnet.TelnetConsole': None,
#}

# Configure item pipelines
# See http://scrapy.readthedocs.org/en/latest/topics/item-pipeline.html
#ITEM_PIPELINES = {
#    'tutorial.pipelines.TutorialPipeline': 300,
#}

# Enable and configure the AutoThrottle extension (disabled by default)
# See http://doc.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 http://scrapy.readthedocs.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'

我是 scrapy 的初学者。请帮忙

最佳答案

Scrapy 使用多个并发请求(默认为 8 个)来抓取您指定的网站。看来 allevents.in 不喜欢你点击太多。

您的解决方案很可能是设置以下配置选项之一:

  • CONCURRENT_REQUESTS_PER_DOMAIN(默认为 8,尝试使用较小的数字)
  • CONCURRENT_REQUESTS_PER_IP(默认为 0,如果设置为正数,则覆盖前一个)

或者,您也可以使用 AutoThrottle extension .

关于python - 使用 scrapy 抓取特定网站时出现 "Too many requests"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47093405/

相关文章:

python - 如何从 Pandas 的数据框中删除/省略计数列?

python - 如何在python的scrapy中删除字符串的特定部分

python - 无法使用 '"c :\bld\scrapy_1564674375870\_h_env\python. exe 创建进程”

python - python 中的动态 numpy 数组

python - Jupyter 笔记本无法从 Centos 7 打开

python - 在 Django 中保存表单数据

python - 递归抓取页面

java - JSOUP网站HTML解析: Java

python - bs4 python 找不到文本

mysql - Scrapy selenium 中间件内存泄漏