Scrapy:如何检查网站是否包含特定字符串

时间:2019-07-10 01:17:57

标签: python scrapy

我想遍历许多网站,看看它们是否包含某个字符串。例如。 “饼干”。使用草木

1 个答案:

答案 0 :(得分:1)

学习并使用 Scrapy

def parse(self, response):
    if 'biscuit' in response.text:
        print('Found!')
    else:
        print('Not found!')

草稿文档:https://docs.scrapy.org/en/latest/