devwiki:litestar

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revisionBoth sides next revision
devwiki:litestar [2023/08/24 08:07] – created yingdevwiki:litestar [2023/08/24 09:19] ying
Line 8: Line 8:
       * uvicorn       * uvicorn
       * jsbeautifier       * jsbeautifier
 +
 +====== Concepts ======
 +
 +  * it provides a active server, allow other pc or program to communicate with it
 +  * it use url to point to each function of the app.py <code python>
 +# (python decorator)
 +@get("/")
 +async def func_a() -> str:
 +
 +# same
 +func_a = get("/")(func_a)
 +</code>
 +
  • devwiki/litestar.txt
  • Last modified: 2023/08/29 09:31
  • by ying