kerberos
kerberos

Reputation: 1645

Scrapy twisted. Web error

twisted.web._newclient.ResponseNeverReceived:
<twisted.python.failure.Failure OpenSSL.SSL.Error: [('SSL routines', 'ssl3_get_record', 'wrong version number')]>

I'm going to run scrapy and get this exception

Upvotes: 0

Views: 2311

Answers (2)

kerberos
kerberos

Reputation: 1645

I've already solved it, because I started the VPN, and I'll just close it

Upvotes: 0

Tom&#225;š Linhart
Tom&#225;š Linhart

Reputation: 10210

I guess that Scrapy's downloader can't agree on SSL version to use during negotiation with the server. Try to set DOWNLOADER_CLIENT_TLS_METHOD in your settings.py to 'SSLv3' value and if that doesn't help, try to set it to 'TLSv1.0'.

Upvotes: 1

Related Questions