h/plugins/drama.py

32 lines
956 B
Python
Raw Normal View History

2010-03-05 05:15:29 +00:00
'''Searches Encyclopedia Dramatica and returns the first paragraph of the
2010-03-03 18:11:52 +00:00
article'''
from util import hook, http
api_url = "http://encyclopediadramatica.se/api.php?action=opensearch"
ed_url = "http://encyclopediadramatica.se/"
2010-03-03 18:11:52 +00:00
2010-03-13 06:16:06 +00:00
@hook.command('ed')
2010-03-03 18:11:52 +00:00
@hook.command
def drama(inp):
'''.drama <phrase> -- gets first paragraph of Encyclopedia Dramatica ''' \
2014-01-14 21:12:37 +00:00
'''article on <phrase>'''
2010-08-30 03:35:27 +00:00
j = http.get_json(api_url, search=inp)
if not j[1]:
return 'no results found'
article_name = j[1][0].replace(' ', '_').encode('utf8')
url = ed_url + http.quote(article_name, '')
page = http.get_html(url)
for p in page.xpath('//div[@id="bodyContent"]/p'):
if p.text_content():
summary = ' '.join(p.text_content().splitlines())
if len(summary) > 300:
summary = summary[:summary.rfind(' ', 0, 300)] + "..."
return '%s :: \x02%s\x02' % (summary, url)
return "error"