PyWebIO icon indicating copy to clipboard operation
PyWebIO copied to clipboard

Write interactive web app in script way.

Results 80 PyWebIO issues
Sort by recently updated
recently updated
newest added

大佬们好,我现在需要用put_datatable或者put_table建立类似于Excel上创建的复杂的报表, [示例.xlsx](https://github.com/pywebio/PyWebIO/files/13558637/default.xlsx) 类似于这种,有没有什么方式么?请大佬们指教

**BUG描述** 根据https://pywebio.readthedocs.io/zh-cn/latest/advanced.html#notes 的描述进行自托管静态文件后,plotly和ag-grid依然使用cdn文件。看了下代码是因为使用了requireJs,这几个库没有放入仓库中有什么license上的原因吗?

bug

I called the remove function to remove specific scopes, but after removal, they still show up at web page. Only contents inside are cleared. Is there a way to delete...

enhancement

I have arranged rows of `put_select` as follows: ![image](https://user-images.githubusercontent.com/68153785/201689808-a11818fe-5e44-42b1-93aa-3c1e94ce8e0f.png) The first `put_select` (against test_000) contains 20 items already selected. The remaining have less than this. (upto 15). You can see...

bug

注: 对于PyWebIO使用咨询或对于其他人也可能有帮助的问题,请考虑移至 [Discussions](https://github.com/wang0618/PyWebIO/discussions) 进行发帖。 **BUG描述** 我这边是上传多个文件 每个文件有50M 选择了十几个文件然后上传 put_file_upload 报错 timeout waiting for response on 133,但是我配置都设置很大值了 还是报了 代码如下: start_server(handle_upload, port=9099,debug=True, max_payload_size=3 * 1024 * 1024 * 1024,websocket_ping_timeout= 5*60,reconnect_timeout=5*60, websocket_ping_interval=30,websocket_max_message_size=4 *...

bug

Hello, I am attempting to create a button that copies some text to the user's clipboard. I have included a simplified version of the relevant code below: ``` put_scope("example_scope") with...

**BUG描述** 在部分浏览器上,使用 `put_input` 函数的 `datalist` 参数设置输入下拉提示无效。 **环境信息** - 操作系统及版本: Android 12 - 浏览器及版本: Android WebView latest / 微信内置浏览器 - Python版本: Python 3.10.8 - PyWebIO版本: PyWebIO 1.7.0 希望能通过集成第三方插件的方式提升对手机浏览器的兼容性。

bug

This is with respect to an internal tool where I have around 150 pin inputs on the page which are dynamically generated for each user to enter certain variables for...

Hello! Is it possible to send data from the input field to the server, having previously processed it on the client? It's going like this now: {"event":"from_submit","task_id":"login-171252656","data":{"oper_id":"406","pwd":"secret 406"}} Can I...

enhancement

注: 对于PyWebIO使用咨询或对于其他人也可能有帮助的问题,请考虑移至 [Discussions](https://github.com/wang0618/PyWebIO/discussions) 进行发帖。 另,可使用[PyWebIO QA Bot](https://github.com/pywebio/PyWebIO/discussions/596) 来让AI对你遇到的问题进行解答。 **BUG描述** 我在使用pin组件的时候发现 无论是pin组件或者其他,多次赋值给同一变量都会导致上次的内容被输出 为了方便演示,下方极简代码可以复现 -----------------1---------------------- from pywebio.output import put_text a=put_text("111") a=put_text("222") 111会被输出 我期待的结果是没有任何内容被输出 ------------------2--------------------- rst=[] a=put_text("111") rst.append(a) a=put_text("222") 放入列表后不会有任何内容被输出 -----------------3--------------------- a=put_text("111") b=put_text("222")...

bug