📰🐍 Get the best Python links of the week: PyCoder’s Weekly Issue #708: Debugging Live Code, NiceGUI, Textual, and More (Nov. 11, 2025) https://t.co/pTixSYBlGM
📛 nicegui
🧠 NiceGUI is a Python UI framework for creating interactive web applications like dashboards and robotics. It's user-friendly, easy to install, and well-documented.
💻 Python
⭐ 9264
🍴 548
🔗 https://t.co/VxsM2rcd3A
https://t.co/uqHbqebMKf now has super fast integration tests.
For example to test a login page:
await https://t.co/a4K4R86HrN('/')
user.find('Username').type('user1')
user.find('Password').type('pass1').trigger('keydown.enter')
await user.should_see('Hello user1!')
So nice 🚀
@HlibIvanov @cydhsieh@_akhaliq I'm happy to tell you that there was a project created yesterday which builds a vector database with NiceGUI data: https://t.co/GY51bszhm3
Could also be used to build a ChatGPT Plugin. Interesting future ahead :-)
@HlibIvanov @cydhsieh@_akhaliq We already build a search index automatically. Maybe a condensed from can be generated which we can fit into the prompt limits?
Check out this tutorial on how to structure your python code so it can be built as standalone apps using Bazel build (a build system made by google for their own code)
The tutorial shows:
⁃ GUI with NiceGUI
⁃ CLI with typer
#programming#Python
https://t.co/c3ernqgXCM