I am learning Scrapy a web crawling framework. by default it does not crawl duplicate urls or urls which scrapy have already crawled.
How to make Scrapy to cra
You're probably looking for the dont_filter=True argument on Request(). See http://doc.scrapy.org/en/latest/topics/request-response.html#request-objects
dont_filter=True
Request()