PythonPan

Results 49 comments of PythonPan

change the ```python3 half_bar_right = "╸" half_bar_left = "╺" bar = "━" ``` in `.venv\Lib\site-packages\textual\renderables\bar.py`

I set a print in `storage.py`,And I found `starlette.middleware.base._CachedRequest object` becomes None during first visiting page. ![image](https://github.com/zauberzeug/nicegui/assets/16256910/a87902be-2565-4938-b65a-38581786aacf) ![1719294409597](https://github.com/zauberzeug/nicegui/assets/16256910/2874aad2-5b49-4e4d-ba95-3b35575dd2dc) Then I look it up in starlette's repository,similar question is founded: `RuntimeError("No...

It is a little similar to #3217 . I change `LOOPBACK = None` in `.venv\Lib\site-packages\nicegui\elements\codemirror.py` to `LOOPBACK = True`. It works as expected. Following code shows that `_props['value']` has changed,...

@falkoschindler I reproduce it, I use windows pc: ```python3 from nicegui import ui ui.video('test.mp4') ui.video('test.mp4') ui.run(native=True,reload=False) ```

For 1, it works well, no errros. For 2, it reports this: ``` Exception in callback _ProactorBasePipeTransport._call_connection_lost(None) handle: Traceback (most recent call last): File "D:\Programs\Python\Python312\Lib\asyncio\events.py", line 88, in _run self._context.run(self._callback,...

BTW, run the following code, it works well in browser. ```python3 from nicegui import ui ui.video('test.mp4') ui.video('test.mp4') ui.run(native=False,reload=False) ``` But use the pywebview to view it, it will report error:...

I installed starlette == 0.47.2 , The environment is: ``` Package Version ------------------ ----------- aiofiles 24.1.0 aiohappyeyeballs 2.6.1 aiohttp 3.12.14 aiosignal 1.4.0 annotated-types 0.7.0 anyio 4.9.0 attrs 25.3.0 bidict 0.23.1...

Yes, it works well, no more errors after I restart it cleanly.