Skip to content

Commit 80c343b

Browse files
authored
Merge pull request #109 from tmrblr/patch-1
fix No module named 'scrapy.contrib'
2 parents f04a5b7 + 201fc77 commit 80c343b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Chapter05_Scrapy/wikiSpider/wikiSpider/articles.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from scrapy.contrib.linkextractors import LinkExtractor
2-
from scrapy.contrib.spiders import CrawlSpider, Rule
1+
from scrapy.linkextractors import LinkExtractor
2+
from scrapy.spiders import CrawlSpider, Rule
33

44
class ArticleSpider(CrawlSpider):
55
name = 'articles'

0 commit comments

Comments
 (0)