Exemplo n.º 1
0
 def on_command(self, msg, stdin, stdout):
     if len(msg["args"]) >= 2:
         action = msg["args"][1]
         if "deal".startswith(action):
             page = requests.get("http://store.steampowered.com")
             tree = lxml.html.fromstring(page.text)
             if tree.cssselect(".dailydeal"):
                 url = tree.cssselect(".dailydeal a")[0].get("href")
                 original_price = tree.cssselect(
                     ".dailydeal_content .discount_original_price")[0].text
                 final_price = tree.cssselect(
                     ".dailydeal_content .discount_final_price")[0].text
                 print("{0} - {1} - from {2} to {3}".format(url,
                                                            get_title(url),
                                                            original_price,
                                                            final_price),
                       file=stdout)
             else:
                 raise StopCommand("No daily deal.")
         else:
             raise StopCommand("{} is not a valid action.".format(action))
     else:
         raise StopCommandWithHelp(self)
Exemplo n.º 2
0
 def __call__(self, plugin, url):
     if not self.should_ignore(url):
         return get_title(url)
Exemplo n.º 3
0
 def __call__(self, plugin, url):
     if not self.should_ignore(url):
         return get_title(url)
Exemplo n.º 4
0
 def on_message(self, msg):
     match = re.findall(r"xkcd\s+(\d+)", msg["message"], re.IGNORECASE)
     for num in match:
         url = "http://xkcd.com/" + num
         self.bot.send(msg['reply_to'],
                       "{0} -> {1}".format(url, get_title(url)))
Exemplo n.º 5
0
 def on_message(self, msg):
     match = re.findall(r"xkcd\s+(\d+)", msg["message"], re.IGNORECASE)
     for num in match:
         url = "http://xkcd.com/" + num
         self.bot.send(msg['reply_to'],
                       "{0} -> {1}".format(url, get_title(url)))