]> git.armaanb.net Git - tall.bot.git/commitdiff
fixe search concatonation, improve usability
authorArmaan Bhojwani <code@armaanb.net>
Wed, 16 Dec 2020 17:18:45 +0000 (12:18 -0500)
committerArmaan Bhojwani <code@armaanb.net>
Wed, 16 Dec 2020 17:18:45 +0000 (12:18 -0500)
tallbot.py

index a888a4ee16760fa6156d32bdead675bde2fabaed..b27e3ba17a6d1fd4cb094c969cf1d5a205701760 100755 (executable)
@@ -3,6 +3,7 @@
 # Armaan Bhojwani 2020
 
 import sys
+import logging
 import wikipedia
 import discord
 
@@ -10,11 +11,15 @@ keywords = ["what is", "What is", "what was", "What was", "what were",
             "What were", "who is", "Who is", "who was", "Who was", 
             "who were", "Who were", "who are", "Who are"]
 
-def wiki_sum(search, sen):
+def wiki_sum(search, sen, pid):
+    search = " ".join(search)
+
     try:
-        output = "From Wikipedia: " + wikipedia.summary(search, sentences=sen)
-    except:
-        output = "There was an error"
+        output = "<Wikipedia> " + wikipedia.summary(search, sentences=sen)
+        logging.info(str(pid) + " | " + search)
+    except Exception as e:
+        output = str(e)
+        logging.info(str(pid) + " | " + search + " | " + str(e))
 
     return output
 
@@ -26,16 +31,18 @@ def keyword_check(inp):
     else:
         return False
 
-class MyClient(discord.Client):
+class TallBot(discord.Client):
     async def on_ready(self):
-        print('Logged in as', self.user)
+        logging.debug('Logged in as ', self.user)
 
     async def on_message(self, message):
         if message.author == self.user:
             return
 
         if keyword_check(message.content):
-            await message.channel.send(wiki_sum(message.content.split()[2:], 2))
+            await message.channel.send(wiki_sum(message.content.split()[2:],
+                                                2,
+                                                message.author))
 
-client = MyClient()
+client = TallBot()
 client.run(sys.argv[1])