Posted in   
       19
       1:30 am, April 4, 2021 
      python extract title tag from url and html using regex
this will extract the title tag as text from the url and the title tag in the following python script
Python
import re
from urllib.request import urlopen
url = "http://olympus.realpython.org/profiles/dionysus"
page = urlopen(url)
html = page.read().decode("utf-8")
pattern = "<title.*?>.*?</title.*?>"
match_results = re.search(pattern, html, re.IGNORECASE)
title = match_results.group()
title = re.sub("<.*?>", "", title) # Remove HTML tags
print(title)
View Statistics
            This Week
          
          
            67
          
        
            This Month
          
          
            269
          
        
            This Year
          
          
            0
          
        Add Comment
Other Items in python
Related Search Terms
Other Categories in Code
    c testing apache apps asp bat bootstrap bootstrap templates core css css grid design elements fancybox fonts foundation framework gimp git html icons ideas images javascript jquery js linux mac nginx node php php functions php simple html dom pi400 python react sections site bugs site documentation sql sqlite sublime svg templates tools virtual box webdev windows wordpress 
  

