Not to mention Flask and Django, both popular tools for making front ends, but
the question wasn't about which personal opinions people have about this or
that. I was wondering how one could make something similar to server side
Blazor in Python. In particular, whether there are libraries that c
Separation of concerns is not a question about language, but how your code is
organised. Python is a general-purpose language and isn't restricted to certain
programming domains. The restrictions are purely practical, such as performance
and the availability of the runtime on various platforms.
I've been doing a lot of development with server side Blazor on .NET recently,
and I think it's a very interesting UI model
(https://docs.microsoft.com/en-us/aspnet/core/blazor/hosting-models?view=aspnetcore-3.1).
What would it take to make something similar in Python? I guess a lot of
relevant