PyWebIO
                                
                                 PyWebIO copied to clipboard
                                
                                    PyWebIO copied to clipboard
                            
                            
                            
                        Write interactive web app in script way.
I would like to know if integration with py4web is in the roadmap. Thanks!
Note: For inquiries while using PyWebIO or questions that might be helpful to others, please consider moving to [Discussions](https://github.com/wang0618/PyWebIO/discussions) for posting. **BUG Description** A clear and concise description of what...
Please move to [Discussions - Feature Request](https://github.com/wang0618/PyWebIO/discussions/categories/feature-request) for posting.我想要用pywebio实现pyQt5库的浏览器嵌套。。pywebio能实现吗
Please move to [Discussions - Feature Request](https://github.com/wang0618/PyWebIO/discussions/categories/feature-request) for posting. 
I have a JavaScript timer in my PyWebIO app that, when is left in the background for a while (not active tab in user's browser), and then is made active...
#### 问题的背景 希望达成的效果是,用户首先选择一种输入的*模式*,在不同的*输入模式*下会有不同的输入函数(例如,对应几种不同的 `input_group`),并最终完成输入。固然,可以先通过一个 `radio` 选择模式,然后分别进入不同的 `input_groups`,但是这需要用户首先点击一次「完成」按钮,期望的效果是尽量减少阻塞从而减少输入所花的时间。 最开始的想法是,选择完模式后,保持当前输入页面然后展示不同的输入函数,但是由于各种输入方式并没有类似于 `visible` 这样的属性,同时 `onchange` 不能通过 `input_update` 进行修改,适应几种截然不同的输入模式会比较困难,故调整了实现的方式: 现在的设计是,当用户选择一种输入模式后,触发第一个 `onchange`,跳转到一个新的输入体,比如一个 `input_group`,在这里完成每种输入模式的更详细的输入,如下代码是对这个思路的一个简单的实现 ```python from pywebio.input import * def submain(mode): return input(mode) def main(): i =...
注: 对于PyWebIO使用咨询或对于其他人也可能有帮助的问题,请考虑移至 [Discussions](https://github.com/wang0618/PyWebIO/discussions) 进行发帖。 **BUG描述** 描述BUG表现以及复现方式。 如果浏览器控制台有报错以及脚本抛出异常也请将报错信息附上 **环境信息** - 操作系统及版本: - 浏览器及版本: - Python版本: 使用 `python3 --version` 查看 - PyWebIO版本: 使用 `python3 -c "import pywebio;print(pywebio.__version__)"` 查看 ``` put_row([put_text('test'), # put_image('https://www.python.org/static/img/python-logo.png'),...
Hi Wang, Thank you for creating such an awesome project! I'd like to add a button at the end of the pywebio script, then the user can click the button...
Please move to [Discussions - Feature Request](https://github.com/wang0618/PyWebIO/discussions/categories/feature-request) for posting.