This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/plugins/title.py
2012-10-12 23:01:37 +13:00

23 lines
567 B
Python
Executable file

from util import hook, http, urlnorm
from bs4 import BeautifulSoup
@hook.command
def title(inp):
"title <url> -- gets the title of a web page"
url = urlnorm.normalize(inp.encode('utf-8'), assume_scheme="http")
try:
page = http.open(url)
real_url = page.geturl()
soup = BeautifulSoup(page.read())
except (http.HTTPError, http.URLError):
return "Could not fetch page."
title = soup.find('title').contents[0]
if not title:
return "Could not find title."
return u"{} [{}]".format(title, real_url)