I am developing modern-looking local app in Python with Eel and I want to open OS's default dialog to select directory. But I have found that Eel does not provide that.
I have tried:
- dialog from HTML/JS, but browser provides just dialog for file/s selection.
- local dialogs from other libraries, but they are really ugly and not using the default one, for example:
Tkinter (ttk is not that much better):
tkfilebrowser:
Anybody knows, how can I open OS's default directory selection via some simple lightweight library/eel? (at least on Linux-Ubuntu and Windows)
Or are there any other lightweight alternatives to eel, that would do that? I know about pywebview, but it is slower than eel and it is not that lightweight.