【问题标题】:Scrapy returning 403 error (Forbidden)Scrapy 返回 403 错误(禁止)
【发布时间】:2016-03-07 23:04:33
【问题描述】:

我对 Scrapy 以及使用 Python 都很陌生。过去,我设法获得了一个 Scrapy 工作的最小示例,但从那以后就没有使用它。 与此同时,一个新版本已经发布(我想我上次使用的是0.24),我终其一生都无法弄清楚为什么无论我尝试访问哪个网站都会出现 403 错误爬行。

当然,我还没有深入研究中间件和/或管道,但我希望能够在进一步探索之前运行一个最小的示例。话虽如此,这是我当前的代码:

items.py

import scrapy

class StackItem(scrapy.Item):
   title = scrapy.Field()
   url = scrapy.Field()

stack_spider.py

#derived from https://realpython.com/blog/python/web-scraping-with-scrapy-and-mongodb/
from scrapy import Spider
from scrapy.selector import Selector
from stack.items import StackItem

class StackSpider(Spider):
    handle_httpstatus_list = [403, 404] #kind of out of desperation. Is it serving any purpose?
    name = "stack"
    allowed_domains = ["stackoverflow.com"]
    start_urls = [
        "http://stackoverflow.com/questions?pagesize=50&sort=newest",
    ]

    def parse(self, response):
        questions = Selector(response).xpath('//div[@class="summary"]/h3')

        for question in questions:
            self.log(question)
            item = StackItem()
            item['title'] = question.xpath('a[@class="question-hyperlink"]/text()').extract()[0]
            item['url'] = question.xpath('a[@class="question-hyperlink"]/@href').extract()[0]
            yield item

输出

(pyplayground) 22:39 ~/stack $ scrapy crawl stack                                                                                                                             
2016-03-07 22:39:38 [scrapy] INFO: Scrapy 1.0.5 started (bot: stack)                                                                                                          
2016-03-07 22:39:38 [scrapy] INFO: Optional features available: ssl, http11                                                                                                   
2016-03-07 22:39:38 [scrapy] INFO: Overridden settings: {'NEWSPIDER_MODULE': 'stack.spiders', 'SPIDER_MODULES': ['stack.spiders'], 'RETRY_TIMES': 5, 'BOT_NAME': 'stack', 'RET
RY_HTTP_CODES': [500, 502, 503, 504, 400, 403, 404, 408], 'DOWNLOAD_DELAY': 3}                                                                                                
2016-03-07 22:39:39 [scrapy] INFO: Enabled extensions: CloseSpider, TelnetConsole, LogStats, CoreStats, SpiderState                                                           
2016-03-07 22:39:39 [scrapy] INFO: Enabled downloader middlewares: HttpAuthMiddleware, DownloadTimeoutMiddleware, UserAgentMiddleware, RetryMiddleware, DefaultHeadersMiddlewa
re, MetaRefreshMiddleware, HttpCompressionMiddleware, RedirectMiddleware, CookiesMiddleware, HttpProxyMiddleware, ChunkedTransferMiddleware, DownloaderStats                  
2016-03-07 22:39:39 [scrapy] INFO: Enabled spider middlewares: HttpErrorMiddleware, OffsiteMiddleware, RefererMiddleware, UrlLengthMiddleware, DepthMiddleware                
2016-03-07 22:39:39 [scrapy] INFO: Enabled item pipelines:                                                                                                                    
2016-03-07 22:39:39 [scrapy] INFO: Spider opened                                                                                                                              
2016-03-07 22:39:39 [scrapy] INFO: Crawled 0 pages (at 0 pages/min), scraped 0 items (at 0 items/min)                                                                         
2016-03-07 22:39:39 [scrapy] DEBUG: Telnet console listening on 127.0.0.1:6023                                                                                                
2016-03-07 22:39:39 [scrapy] DEBUG: Retrying <GET http://stackoverflow.com/questions?pagesize=50&sort=newest> (failed 1 times): 403 Forbidden                                 
2016-03-07 22:39:42 [scrapy] DEBUG: Retrying <GET http://stackoverflow.com/questions?pagesize=50&sort=newest> (failed 2 times): 403 Forbidden                                 
2016-03-07 22:39:47 [scrapy] DEBUG: Retrying <GET http://stackoverflow.com/questions?pagesize=50&sort=newest> (failed 3 times): 403 Forbidden                                 
2016-03-07 22:39:51 [scrapy] DEBUG: Retrying <GET http://stackoverflow.com/questions?pagesize=50&sort=newest> (failed 4 times): 403 Forbidden                                 
2016-03-07 22:39:55 [scrapy] DEBUG: Retrying <GET http://stackoverflow.com/questions?pagesize=50&sort=newest> (failed 5 times): 403 Forbidden                                 
2016-03-07 22:39:58 [scrapy] DEBUG: Gave up retrying <GET http://stackoverflow.com/questions?pagesize=50&sort=newest> (failed 6 times): 403 Forbidden                         
2016-03-07 22:39:58 [scrapy] DEBUG: Crawled (403) <GET http://stackoverflow.com/questions?pagesize=50&sort=newest> (referer: None)                                            
2016-03-07 22:39:58 [scrapy] INFO: Closing spider (finished)                                                                                                                  
2016-03-07 22:39:58 [scrapy] INFO: Dumping Scrapy stats:                                                                                                                      
{'downloader/request_bytes': 1488,                                                                                                                                            
 'downloader/request_count': 6,                                                                                                                                               
 'downloader/request_method_count/GET': 6,                                                                                                                                    
 'downloader/response_bytes': 6624,                                                                                                                                           
 'downloader/response_count': 6,                                                                                                                                              
 'downloader/response_status_count/403': 6,                                                                                                                                   
 'finish_reason': 'finished',                                                                                                                                                 
 'finish_time': datetime.datetime(2016, 3, 7, 22, 39, 58, 458578),                                                                                                            
 'log_count/DEBUG': 8,                                                                                                                                                        
 'log_count/INFO': 7,                                                                                                                                                         
 'response_received_count': 1,                                                                                                                                                
 'scheduler/dequeued': 6,                                                                                                                                                     
 'scheduler/dequeued/memory': 6,                                                                                                                                              
 'scheduler/enqueued': 6,                                                                                                                                                     
 'scheduler/enqueued/memory': 6,                                                                                                                                              
 'start_time': datetime.datetime(2016, 3, 7, 22, 39, 39, 607472)}                                                                                                             
2016-03-07 22:39:58 [scrapy] INFO: Spider closed (finished) 

【问题讨论】:

  • 您使用的是什么版本,是否只是在您遇到问题?
  • 哦,对不起。忘了提那个。我在 Ubuntu (Linux 3.13.0-76-generic #120-Ubuntu SMP Mon Jan 18 15:59:10 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux) 上使用 Scrapy 1.0.5
  • 尝试在您的设置文件中添加用户代理。类似USER_AGENT = 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.36 Safari/535.7'
  • 还没有运气。我尝试了您的字符串和变体(USER_AGENT = "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.93 Safari/537.36")。它仍然抛出 403 错误。
  • scrapy shell 为该 URL 提供了什么?你对https://stackoverflow.... 有同样的看法吗?这是我在本地运行时的 Scrapy 1.0.5 shell 会话输出:gist.github.com/redapple/ada965243a5c187e41a1。你能运行同样的程序并分享你的日志吗?

标签: python scrapy web-crawler http-status-code-403


【解决方案1】:

你肯定是在代理后面。检查并正确设置您的http_proxyhttps_proxy 环境变量。如果您可以从终端获取该 URL,请与 curl 交叉检查。

【讨论】:

  • 你说的完全正确。事实证明,我在一个远程环境中工作,完全忘记了那个细节。尝试 cURL 是我一开始就应该做的。
猜你喜欢
  • 1970-01-01
  • 2021-06-17
  • 1970-01-01
  • 1970-01-01
  • 2020-10-17
  • 2020-11-20
  • 1970-01-01
  • 2022-06-11
  • 1970-01-01
相关资源
最近更新 更多