Nice GUI
nicegui.io
Nice GUI
1–10 of 21 posts
Re: Nice GUI
#2Re: Nice GUI
#3Amazing python to website framework. It is just what I was looking for!
Is it intentionally slowed down? The reaction (for example when I click the checkbox) seem very slow in the demo page.
Re: Nice GUI
#4Amazing python to website framework. It is just what I was looking for!
Nice!. Is it intentionally slowed down? The reaction (for example when I click the checkbox) seem very slow in the demo page.
Re: Nice GUI
#5Amazing python to website framework. It is just what I was looking for!
Nice!. Is it intentionally slowed down? The reaction (for example when I click the checkbox) seem very slow in the demo page.
This is probably the main drawback; you need your server to be located physically close to where the UI is open or there will be a very noticable delay. It's probably pretty snappy when the server and browser are on the same machine, though.
Re: Nice GUI
#6Earlier quoted context omitted.
Nice!. Is it intentionally slowed down? The reaction (for example when I click the checkbox) seem very slow in the demo page.
Nope, it's doing a round-trip to the server on each interaction. You can inspect the websocket and see the messages. The notifications are generated by a Python function running on the server, there's no client-side logic.
Re: Nice GUI
#7Earlier quoted context omitted.
Nope, it's doing a round-trip to the server on each interaction. You can inspect the websocket and see the messages. The notifications are generated by a Python function running on the server, there's no client-side logic.
Seems like it could be improved by having instant client side reactions, while letting the notifications come in with the response from the server so it seems more snappy to the user