Grabbing title tag from web page

9 years ago

At least a couple of options, the first using BeautifulSoup:

import urllib import BeautifulSoup

soup = BeautifulSoup.BeautifulSoup(urllib.urlopen("https://www.google.com")) print soup.title.string And the second one using lxml: import lxml.html t = lxml.html.parse(url) print t.find(".//title").text