fastapi강의1 1 실습2 GET API 단일조회 앞 단계 참조 링크:프로젝트 소개 및 환경 구축: 2024.04.05 - [Web 개발/FAST API (인프런 강의 내용)] - 1 실습1 GET API 전체조회전체 ToDo 조회: 2024.04.05 - [Web 개발/FAST API (인프런 강의 내용)] - 1 실습1 GET API 전체조회현재 파일 내용:# todos > src > main.py 파일 내용from fastapi import FastAPIapp = FastAPI()@app.get("/")def health_check_handler(): return {"ping": "pong"}todo_data = { 1: { "id": 1, "content": "실전! FastAPI 섹션 0 수강", .. 2024. 4. 9. 이전 1 다음