
Phuong Tan Thanh
Backend Developer · FastAPI · PostgreSQL · DevOps
Building scalable systems and elegant solutions. Passionate about backend architecture, distributed systems, and developer experience.
FastAPI Backend
python
from fastapi import FastAPI, HTTPException
from sqlalchemy.orm import Session
from typing import List
app = FastAPI(title="API Service")
@app.get("/users/{user_id}")
async def get_user(user_id: int):
return {"id": user_id, "status": "active"}
@app.post("/users/")
async def create_user(user: UserCreate):
# Business logic here
return {"message": "User created"}
❯
PostgreSQL
FastAPI
Docker
DevOps