diff --git a/README.md b/README.md index 4ebce99..4eb2353 100644 --- a/README.md +++ b/README.md @@ -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"] +```