Re: Server side Blazor-like framework in Python?

2019-12-15 Thread hchrholm
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

Re: Server side Blazor-like framework in Python?

2019-12-15 Thread hchrholm
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.

Re: Server side Blazor-like framework in Python?

2019-12-15 Thread Test Bot
+1 Though the implementation might be good from an exercise perspective. But there is a general philosophy in Software Engineering namely Separation of Concern. Python as a language is not concerned about the "Front-End" side of things since it is not meant for that. Though i am a very devote Py

Re: Server side Blazor-like framework in Python?

2019-12-15 Thread Chris Angelico
On Sun, Dec 15, 2019 at 11:11 PM wrote: > > 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 some

Server side Blazor-like framework in Python?

2019-12-15 Thread hchrholm
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