hyperwolf24 - Overview

class hyperwolf24:
    def __init__(self):
        self.username = 'hyperwolf24'
        self.name = 'Keerthi Gowda'
        self.education = {
            "Programming": (
                ["Python", "Rust", "Golang", "NextJS"],
                ["Postgres", "Redis", "EMQX", "MinIO"],
                ["Flask", "Flutter", "Keycloak"],
                ["Git", "Robot Framework"]
            ),
            "B.E": "RV College of Engineering",
        }
    def __str__(self):
        return self.name
if __name__ == '__main__':
    me = hyperwolf24()