Skip to content

Commit

Permalink
Fixing queen b's scraping to ignore non-keto category pages
Browse files Browse the repository at this point in the history
  • Loading branch information
mtlynch committed May 7, 2018
1 parent 824270b commit 162329c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ketohub/spiders.py
Expand Up @@ -258,7 +258,7 @@ class QueenBs(spiders.CrawlSpider):
spiders.Rule(
linkextractors.LinkExtractor(
allow=r'http://queenbsincredibleedibles.com/.*/$',
deny=r'ive-fallen-in-love-with-keto'),
deny=r'(category\/)|(ive-fallen-in-love-with-keto)'),
callback=callback_handler.process_callback,
follow=False)
]
Expand Down

0 comments on commit 162329c

Please sign in to comment.