nonfake NoNFake

#!/usr/bin/python

"""
======= about me =======
summary: finding an internship of Python develper
@author: yurii
github: github.com/NoNFake
========================
"""
class Information:
full_name: str = "Klymenko Yurii"
age: int = 20
university: str = "DUIKT"
os: str = "Arch Linux (Btrfs, systemd)"
location: str = "Kyiv"
@property
def get_skills(self):
languages = ["Python", "html", "SQL"]
tools = ["VSCode", "Burp Suite"]
return languages, tools
def get_tech_stack(self) -> dict:
stack = {
"backend": ["asyncio", "aiohttp", "uvloop", "pyrogram", "hydrogram", "aiosqlite"],
}
return stack
def soft_skills(self):
return "fast learner", "problem solver"