Skip to content

Commit

Permalink
removed the duplicate problem
Browse files Browse the repository at this point in the history
set dont_filter=True in Request
  • Loading branch information
bhargav17421 committed Feb 3, 2017
1 parent dd510cc commit f54471b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crik/crik/spiders/scores.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def parse(self, response):
next_page='http://www.espncricinfo.com/ci/engine/match/index.html'
if next_page is not None:
next_page = response.urljoin(next_page)
yield scrapy.Request(next_page, callback=self.parse)
yield scrapy.Request(next_page, callback=self.parse,dont_filter=True)
exit=True


0 comments on commit f54471b

Please sign in to comment.