标签: python scrapy
我想遍历许多网站,看看它们是否包含某个字符串。例如。 “饼干”。使用草木
答案 0 :(得分:1)
学习并使用 Scrapy 。
def parse(self, response): if 'biscuit' in response.text: print('Found!') else: print('Not found!')
草稿文档:https://docs.scrapy.org/en/latest/