]> jfr.im git - erebus.git/blobdiff - modules/coins.py
update modules to use default command name (based on function name)
[erebus.git] / modules / coins.py
index 5a92fad90e8ecb23bbd4476c87c79582aeda4b41..8548d60af728b0705fa76dc39ce075e0f9e543f8 100644 (file)
@@ -35,8 +35,8 @@ def get_coin_price(pairs):
        response = requests.post(url, data = {'pairs': pairs})
        return json.loads(response.text)
 
-@lib.hook('btc')
-def cmd_gtest(bot, user, chan, realtarget, *args):
+@lib.hook()
+def btc(bot, user, chan, realtarget, *args):
        if len(args) > 0:
                try:
                        response = get_coin_price('btc_eur')
@@ -49,8 +49,8 @@ def cmd_gtest(bot, user, chan, realtarget, *args):
                price = str(float(response[0]['price']))
                bot.msg(chan, "1 BTC = %s EUR" % price)
 
-@lib.hook('doge')
-def cmd_gtest(bot, user, chan, realtarget, *args):
+@lib.hook()
+def doge(bot, user, chan, realtarget, *args):
        if len(args) > 0:
                try:
                        doge_btc = get_coin_price('doge_btc')
@@ -65,8 +65,8 @@ def cmd_gtest(bot, user, chan, realtarget, *args):
                price = str(float(doge_btc[0]['price']) * float(btc_eur[0]['price']))
                bot.msg(chan, "1 DOGE = %s EUR" % price)
 
-@lib.hook('ltc')
-def cmd_gtest(bot, user, chan, realtarget, *args):
+@lib.hook()
+def ltc(bot, user, chan, realtarget, *args):
        if len(args) > 0:
                try:
                        ltc_btc = get_coin_price('ltc_btc')
@@ -99,9 +99,6 @@ def privmsg_hook(bot, line):
 
                                a = a.replace(",", ".")
                                a = a.replace(" ", "")
-                               print a
-                               print f
-                               print t
 
        if 'btc' in line or 'bitcoin' in line or 'doge' in line or 'dogecoin' in line:
                for r in coin_regex:
@@ -127,7 +124,3 @@ def privmsg_hook(bot, line):
                                                bot.msg(chan, "%s DOGE = %s EUR" % (amount, price))
                                        except:
                                                bot.msg(chan, "Invalid amount.")
-                                               
-                                       
-                               print amount
-                               print coin