Searching through webpage

前端 未结 2 817
[愿得一人]
[愿得一人] 2021-02-06 18:10

Hey I\'m working on a Python project that requires I look through a webpage. I want to look through to find a specific text and if it finds the text, then it prints something ou

2条回答
  •  有刺的猬
    2021-02-06 18:14

    You could do something simple like:

    
    import urllib2
    import re
    
    html_content = urllib2.urlopen('http://www.domain.com').read()
    
    matches = re.findall('regex of string to find', html_content);
    
    if len(matches) == 0: 
       print 'I did not find anything'
    else:
       print 'My string is in the html'
    

提交回复
热议问题