How can I retrieve the page title of a webpage (title html tag) using Python?
|
|
I'll always use lxml for such tasks. You could use beautifulsoup as well.
|
||
|
|
|
|
This is probably overkill for such a simple task, but if you plan to do more than that, then it's saner to start from these tools (mechanize, BeautifulSoup) because they are much easier to use than the alternatives (urllib to get content and regexen or some other parser to parse html) Links: BeautifulSoup mechanize
|
|||
|
|
|
|
The mechanize Browser object has a title() method. So the code from this post can be rewritten as:
|
||
|
|
|
|
Your example may be simplified.
NOTE:
|
|||
|
|
|
|
is there a way to not download the whole page, but only the first part, so a 'title' can be retrieved? It seems a bit useless to download a full page if you just want the title string. |
||
|
