Hi, my name is Kovács Bálint-Hunor, I'm a Software Engineering Student (MSc) at Sapientia Hungarian University of Transylvania. In addition to my academic pursuits, I enjoy exploring various hobbies, including playing the guitar, gaming, learning about the world, and reading & writing poems. I also enjoy contributing to open source projects. :)
from fastapi import FastAPI
from pydantic import BaseModel
app = FastAPI()
class UserProfile(BaseModel):
name: str
role: str
hobbies: list[str]
@app.get("/profile", response_model=UserProfile)
async def get_profile():
profile = UserProfile(
name="Kovács Bálint-Hunor",
role="Software Engineering Student",
hobbies=[
"Playing the Guitar 🎸",
"Playing Games 🎮",
"Learning Interesting Things About the World ✨",
"Reading & Writing Poems 📓"
]
)
return profile
|
NOTE: Private repositories are not included in the statistics. This does not indicate my skill level or language proficiency.