⚠️ Warning
This user is actively wanted for tax fraud.
from abc import ABCMeta, abstractstaticmethod
class Mir0xE(metaclass=ABCMeta):
@abstractstaticmethod
def contact():
return ["discord", "telegram", "root-me"]
@abstractstaticmethod
def life():
return self.coding()
@abstractstaticmethod
def coding():
pass
class Attributes(Mir0xE):
@staticmethod
def contact() -> tuple:
discord: str = "empereur_miro"
telegram: str = "EmpereurMiro"
root-me: str = "Mir0xE"
return discord, telegram, root-me
@staticmethod
def life() -> tuple:
langs = ("French", "English")
return langs
@staticmethod
def coding() -> tuple:
text_editor = "notepad"
specialities = ["social engineering", "monitor"]
langs = {"pro": "french", "intermediate": "python", "learning": "go"}
return langs, specialities, text_editor
README.md is completely taken from xKiian