12 lines
413 B
Python
12 lines
413 B
Python
import scraper_functions as sf
|
|
|
|
def processmsg(msg, rcpt):
|
|
if "youtube.com/watch" in msg:
|
|
return msg.replace("youtube.com", "iv.datura.network")
|
|
elif msg.startswith("!wiki"):
|
|
return sf.query_external_website("https://en.wikipedia.org/wiki/", msg.split(" ")[1])
|
|
|
|
def command(msg, rcpt):
|
|
if msg.startswith("!help"):
|
|
return "chatbot commands: \n" + "!help Show this help page"
|