From e0fac4c6408b8fd95f4c36f3fcaabefc257362ca Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Mon, 16 Dec 2013 20:29:20 -0800 Subject: Adding temperature conversion bot --- tempconvertionbot.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tempconvertionbot.py diff --git a/tempconvertionbot.py b/tempconvertionbot.py new file mode 100644 index 0000000..ca845c2 --- /dev/null +++ b/tempconvertionbot.py @@ -0,0 +1,25 @@ +#!/usr/bin/python +import os +import re +import time + + +class TempConvertionBot(object): + def __init__(self, expiry=1800): + self.__name__ = "TempConversion Bot" + self.__version__ = "0.0.1" + self.pattern = re.compile(r"([-+]?\d+|[-+]?\d*\.\d+)\s*(?:degrees?)?\s*(C|F)(?=\s|$)") + + def onChanMsg(self, IRC, user, channel, targetprefix, msg): + matches = self.pattern.findall(msg) + for quantity, unit in matches: + quantity = float(quantity) + if unit == 'C': + quantityPrime = quantity * 9 / 5.0 + 32 + unitPrime = 'F' + + elif unit == 'F': + quantityPrime = (quantity - 32) * 5 / 9.0 + unitPrime = 'C' + + channel.me("notes that %0.2f %s is %0.2f %s" % (quantity, unit, quantityPrime, unitPrime)) -- cgit v1.2.3