Reputation: 31
I'm a novice in scrapy and I have trouble. When scrapy make request downloading from:
I get an error:
twisted.python.failure.Failure exceptions.ValueError: invalid hostname: r2---sn-ug5onuxaxjvh-n8vs.c.pack.google.com
How to solve this problem?
Upvotes: 3
Views: 3770
Reputation: 486
On Windows you must use double inverted quotes ("url-path") instead of single inverted quote('url-path').
https://doc.scrapy.org/en/latest/intro/tutorial.html#extracting-data
Upvotes: 4
Reputation: 101
You need to put http address in inverted comma. As mentioned here for linux you can put address in single inverted commas '', but for windows users "" might work.
Upvotes: 10