From 7cec7c641da41c3c456fcaab07046b84d49566ef Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Wed, 9 Jun 2010 01:08:40 +0200 Subject: modules: Added mahou Showtime! parser for listing anime airings. --- modules/mahou_showtime.py | 52 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 modules/mahou_showtime.py (limited to 'modules/mahou_showtime.py') diff --git a/modules/mahou_showtime.py b/modules/mahou_showtime.py new file mode 100644 index 0000000..ee4e387 --- /dev/null +++ b/modules/mahou_showtime.py @@ -0,0 +1,52 @@ +info = { + 'author': 'Jon Bergli Heier', + 'title': 'mahou Showtime', + 'description': 'Parser for "mahou Showtime!"', +} + +import urllib2, time +from BeautifulSoup import BeautifulSoup + +class Module: + def __init__(self, bot): + self.irc = bot + if self.irc: + self.irc.register_keyword('!ep', self) + + self.cache = '' + self.lastcache = 0 + + def find_next(self, search): + search = [x.lower() for x in search.split()] + + try: + if time.time() - self.lastcache >= 3600 or not self.cache: + self.cache = urllib2.urlopen('http://www.mahou.org/Showtime/Showtime.html').read() + self.lastcache = time.time() + except: + return 'Failed to fetch showtime data.' + soup = BeautifulSoup(self.cache) + + trs = soup.findAll('tr') + del trs[0] # delete the "header" table row + + # Note: 4th tr contains a hr + for tr1, tr2, tr3 in zip(trs[::4], trs[1::4], trs[2::4]): + title = tr1.td.b.a.text + if all([x in title.lower() for x in search]): + eta, channel = [x.strip() for x in tr2('td')[1].text.split('/')] + airtime = tr3('td')[1].text + return '%s airs on %s at %s (eta: %s)' % (title, channel, airtime, eta) + return 'No match found.' + + def keyword(self, nick, channel, kw, msg): + target = channel if not channel == self.irc.nickname else nick.split('!')[0] + args = msg.split() + if len(args) == 0: + self.irc.msg(target, 'Usage: !ep search') + return + +if __name__ == '__main__': + import sys + m = Module(None) + print m.find_next(' '.join(sys.argv[1:])) -- cgit v1.2.3