yeomko22 / TIL

Today I learned
1 stars 0 forks source link

python web framework 신규 기술 스택 익히기 및 개념 복습 #94

Open yeomko22 opened 2 years ago

yeomko22 commented 2 years ago

TODO

yeomko22 commented 2 years ago

pydantic

pydantic 장점

yeomko22 commented 2 years ago

Starlette

async def homepage(request): return JSONResponse({'hello': 'world'})

app = Starlette(debug=True, routes=[ Route('/', homepage), ])

~~~bash
$ uvicorn example:app

Framework or Toolkit

$ gunicorn -w 4 -k uvicorn.workers.UvicornWorker --log-level warning example:app
yeomko22 commented 2 years ago

Uvicorn

yeomko22 commented 2 years ago

ASGI

WSGI의 문제점

구현체

yeomko22 commented 2 years ago

WSGI vs ASGI

스크린샷 2021-09-13 오전 11 07 53