1
0
mirror of https://github.com/RussellChamp/tilde-projects.git synced 2024-06-13 12:16:38 +00:00
tilde-projects/Code/irc/madlibbot/msgformatter.py

17 lines
418 B
Python
Raw Normal View History

2018-06-13 14:34:23 +00:00
import time
import re
def format_message(message):
pattern = r'^:.*\!~(.*)@.* (.*) (.*) :(.*)'
now = int(time.time())
matches = re.match(pattern, message)
if not matches:
return ''
nick = matches.group(1).strip()
command = matches.group(2).strip()
channel = matches.group(3).strip()
message = matches.group(4).strip()
return "%s\t%s\t%s\t%s\t%s" % (now, nick, command, channel, message)