| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Original HTTPS Page] |
Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.
You must be logged in to block users.
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abuse╔═══════════════════════════════════════════════════════════════╗ ║ ║ ║ ali fazeli · python backend engineer ║ ║ ║ ╚═══════════════════════════════════════════════════════════════╝
engineer = {
"name": "Ali Fazeli",
"role": "Python Backend Engineer",
"languages": ["Python", "SQL"],
"speaks": ["en_US", "fa_IR"],
"contact": "rabbitix98@gmail.com",
"focus": "FastAPI · Pydantic v2 · SQLAlchemy · Clean Architecture",
}I build maintainable, type-safe backend systems with a strong emphasis on clean separation of concerns and long-term sustainability. My projects are structured to scale — both in codebase complexity and team size.
| Layer | Tools |
|---|---|
| Framework | FastAPI · Django |
| ORM / DB | SQLAlchemy · SQL (PostgreSQL, SQLite) |
| Validation | Pydantic v2 · Python type system |
| Architecture | Clean Architecture · Domain-Driven Design |
| Infra | Docker · Git |
src/ ├── configs/ # App configuration & env management ├── helpers/ # Shared utilities & exception handling ├── logics/ # Pure business logic — framework-agnostic ├── model/ # Domain models, DTOs, type definitions ├── repositories/ # Data access layer (adapters pattern) └── services/ # Orchestration & use-case layer
Why this structure? Each layer has one reason to change. The domain logic never imports from FastAPI. Repositories are swappable. Tests are fast because they don't need a running server.
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
import logging
from telegram.ext import (Updater, Dispatcher, ConversationHandler, CommandHandler,
MessageHandler, RegexHandler, Filters,
CallbackContext,)
Architecture + Python – perfect for structured design.
| Back | FazBrowse Home | New Git URL |