Backend developer focused on designing and implementing scalable systems, APIs and modular architectures using Python. I specialize in building backend services from scratch, with an emphasis on separation of concerns, maintainability and clean software design.
I enjoy designing robust APIs, authentication systems and service-oriented architectures. I structure my projects separating routes, business logic and persistence — seeking clean, scalable code even in small projects.
My approach is not just writing functional code, but structuring systems that can grow in an orderly way.
architecture.py
modular
routes → HTTP layer
services → business logic
repos → data access
def build_app():
return create_api(
layers=[Routes, Services, Repositories]
)