From: Armaan Bhojwani Date: Wed, 16 Dec 2020 17:18:45 +0000 (-0500) Subject: fixe search concatonation, improve usability X-Git-Url: https://git.armaanb.net/?p=tall.bot.git;a=commitdiff_plain;h=d470b39c98fa558e8485f8189050abb52d34a905 fixe search concatonation, improve usability --- diff --git a/tallbot.py b/tallbot.py index a888a4e..b27e3ba 100755 --- a/tallbot.py +++ b/tallbot.py @@ -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.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])