我自己写了基础爬虫
def get_icibe_word(english):
# 抓取单词页面
word_text = requests.get("www.iciba.com/python", headers=headers).text
sel = Selector(text=word_text)
这个爬虫是能爬到数据的
但是用了 scrapy 框架,却爬不到数据
我使用了反爬的UserAgent和动态 IP,都无法执行
def parse(self, response):里面的方法。
class WordSpider(scrapy.Spider):
name = 'word'
allowed_domains = ['iciba.com']
start_urls = ['http://www.iciba.com/setting']
print("开始")
def parse(self, response):
print("成功打印页面")
print(response)
print("结束")