Web framework #576
-
I was wondering what were the reasons behind choosing Tornado for the server, as it's not a particularly modern technology compared to e.g. FastAPI. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Thanks for the question @davidbrochart. The honest answer is that I saw that both Jupyter and streamlit used tornado, and it if it was good enough for them I figured it would be good enough for us. Since we're still early, it's possible we could make the switch from tornado to FastAPI, or another framework, without too much effort. Do you think that would be worth it? |
Beta Was this translation helpful? Give feedback.
-
We've migrated to use Starlette in this PR. Starlette is what FastAPI uses under the hood. (essentially the same without DI, decorators, and Pydantic build in). marimo is now in the future serving via an ASGI framework. Thank you for the push @davidbrochart! |
Beta Was this translation helpful? Give feedback.
We've migrated to use Starlette in this PR. Starlette is what FastAPI uses under the hood. (essentially the same without DI, decorators, and Pydantic build in).
marimo is now in the future serving via an ASGI framework.
Thank you for the push @davidbrochart!