Skip to content

Latest commit

 

History

History
28 lines (14 loc) · 534 Bytes

readme.md

File metadata and controls

28 lines (14 loc) · 534 Bytes

Hello FastAPI

Read Pages 27-32 FastAPI Textbook

Start Uvicorn with the command line:

uvicorn hello:app --reload

Open in Browser:

http://127.0.0.1:8000/hi

Test with requests:

python test_requests.py

Test with HTTPie (pronounced aitch-tee-tee-pie):

http localhost:8000/hi

Test with HTTPie, printing only the response body:

http -b localhost:8000/hi

Test with HTTPie and get everything:

http -v localhost:8000/hi