- ๐ท๐บ From Russia
- ๐ Started learning Python in 2023
- โก Started learning FastAPI in 2025
- ๐ฅ Already building my own backend projects
- ๐งฉ Focus: backend architecture, async, automation
- ๐ Learning Docker, production patterns
- ๐ฆ Writing clean & structured backend code
- ๐ Writing backend FastAPI services
- โก Learning deep async patterns
- ๐ Dockerizing every project
- ๐ ๏ธ Building clean architecture (routers โ services โ repos)
- ๐งฉ Writing production-ready Python code
class Developer:
def __init__(self):
self.name = "Nefor"
self.started_python = 2023
self.started_fastapi = 2025
self.stack = ["Python", "FastAPI", "PostgreSQL", "Docker"]
def __str__(self):
return f"{self.name} is building backend systems with {', '.join(self.stack)}..."
me = Developer()
print(me)





