Initial Release of IGNCore version 2.5

This commit is contained in:
2021-08-09 13:18:56 +02:00
commit a83d98c47e
910 changed files with 224171 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
class ChatBlob:
def __init__(self, title, msg):
self.title = title
self.msg = msg.strip("\n")
self.page_prefix = ""
self.page_postfix = ""
def __str__(self):
return f"ChatBlob('{self.title}', '{self.msg}')"
def __repr__(self):
return self.__str__()
def __eq__(self, obj):
return isinstance(obj, ChatBlob) and \
obj.title == self.title and \
obj.msg == self.msg and \
obj.page_prefix == self.page_prefix and \
obj.page_postfix == self.page_postfix