feat(README.md): added python-style description about me

This commit is contained in:
2025-08-16 23:57:24 +03:00
parent 8b3ac28b30
commit de204cfa86

View File

@@ -1,2 +1,25 @@
# .profile ```python
class Me:
hobbys : list = ["tech stuff", "science", "languages"]
job_exp : str = "5+ years"
class Contacts(Me):
discord : str = ".kirssei"
telegram : str = "kirssei"
class Stack(BackEndDeveloper):
languages : list = ["Python", "JS"]
frameworks : dict = {
"Python": [
"Django",
"Django Rest Framework",
"Celery",
"FastAPI"
],
"JS": [
"React",
]
}
database : list = ["MySQL", "PostgreSQL", "Redis", "SQLite", "RabbitMQ"]
```