terom@41: """ terom@41: An IRC logfile consists of a series of events, a.k.a. "lines" terom@41: """ terom@41: terom@41: class LogEvent (object) : terom@41: """ terom@41: An event on some specific channel terom@41: """ terom@41: terom@41: # the event ype terom@41: type = None terom@41: terom@41: # the UTC timestamp of the event terom@41: timestamp = None terom@41: terom@41: # the event source terom@41: source = None terom@41: terom@41: # associated data (message, etc) terom@41: data = None terom@41: