from dataclasses import dataclass
@dataclass
class Developer:
name = "Anasxon Ummataliy"
role = "Python Software Engineer"
education = "PDP University (Bachelor 2/4)"
languages = ["Python", "C++", "JavaScript"]
current_focus = "Backend Development"
def get_skills(self):
return {
"frameworks": ["FastAPI", "Django", "Flask", "Aiogram"],
"databases": ["PostgreSQL", "MySQL", "MongoDB", "Redis"],
"tools": ["Docker", "Git", "MacOS"],
}
def say_hello(self):
return "Let's build something great together! π"
me = Developer()
print(me.say_hello())π― I'm a second-year software engineering student with a passion for solving real-world problems through code. Specializing in Python backend development, I enjoy creating efficient, scalable solutions and constantly learning new technologies.
π« Open for collaboration and exciting projects!


