platinops
platinops
When I run using uvicorn as stated in my previous post, JustPy still outputs `JustPy ready to go on http://{HOST}:{PORT}`, despite `start_server=False`. So I believe this line in the `justpy_startup`...
Thanks for the feedback. Your suggested method works for a WebPage+Input component, though when I try it for a QuasarPage+[QInput(type=file)](https://quasar.dev/vue-components/input#Input-of-file-type) component, I have to select the file twice in order...
Thanks. I know I could use the standard Input component with type='file', but would like to use the Quasar File Picker instead.
A possible way to implement a Quasar file picker: ~~~ python class QField(QDiv): html_tag = 'q-field' slots = ['default_slot', 'before_slot', 'prepend_slot', 'append_slot', 'after_slot', 'label_slot', 'error_slot', 'hint_slot', 'counter_slot', 'loading_slot'] def __init__(self,...
Thanks for the feedback. Even with a solution in place, might be useful to mention in the [docs](https://justpy.io/reference/configuration/) not to use the working dir as a static folder..
As far as I see, this has not been fixed in the recently released version 2 of Justpy?
Any update on whether the next Justpy version will support this out of the box as mentioned in #151?
I was indeed thinking of using this approach for gradually adding e.g. 20 charts to a page. I tried it now, but although the first chart appears sooner in the...
Thanks for the quick feedback. I already removed the sleep time, or is there any benefit to it? So there is no way to only send the "new" chart from...
Have you been able to take a look at this? I'm having the same issue, even with the most basic hello world script, both with `hypercorn` and `uvicorn` (on Windows)...