Implementation of Qfile (quasar) format for local management #269
Replies: 3 comments 4 replies
-
That sounds totally reasonable. But I'm not sure how QFile would help in contrast to the current To be sure I quickly wrapped a QFile and subscribed to model changes. All I get is the file content. from nicegui import ui
from nicegui.element import Element
Element('q-file').on('update:model-value', lambda e: print(e, flush=True))
ui.run() |
Beta Was this translation helpful? Give feedback.
-
#283 seems to be related. |
Beta Was this translation helpful? Give feedback.
-
We will follow up on the idea of a local file selector over at #283. |
Beta Was this translation helpful? Give feedback.
-
For local implementation it feels that the Qfile format would allow for better and faster utilization without the need to wrangle the upload class. I work with data that would be nice to have a frontend on. Having the ability to select entire folders and then use python to retrieve the contents, and display them on the page would be great. Not to mention, i work with GBs of data and managing them with the uploader is beyond tedious when i really just need the filenames. I'm sure there are lots of people in the same boat.
Beta Was this translation helpful? Give feedback.
All reactions