How can I retrieve the page title of a webpage using Python?


How can I retrieve the page title of a webpage (title html tag) using Python?


Solution:

I'll always use lxml for such tasks. You could use beautifulsoup as well.
import lxml.html
t = lxml.html.parse(url)
print t.find(".//title").text