Value Errors When Retrieving Images With Scrapy -
i'm having trouble using scrapy's image pipeline retrieve images. error reports, think feeding scrapy right image_urls. however, instead of downloading images them, scrapy returns error: valueerror: missing scheme in request url: h. this first time using image pipeline feature, suspect i'm making simple mistake. same, i'd appreciate solving it. below you'll find spider, settings, items, , error output. they're not quite mwes, think they're pretty simple , easy understand same. spider: import scrapy scrapy.spiders import crawlspider, rule scrapy.linkextractors import linkextractor ngamedallions.items import ngamedallionsitem scrapy.loader.processors import takefirst scrapy.loader import itemloader scrapy.loader.processors import join scrapy.http import request import re class ngaspider(crawlspider): name = 'ngamedallions' allowed_domains = ['nga.gov'] start_urls = [ 'http:...