I am currently working on a local Electron-like software with Eel.
This software is intended to be bundled as a standalone Windows application that needs to run on the user's local machine.
Within this software I want to be able to select and work on local files with at Python backend. To access the file, I use an HTML <form>
with a <input type='file' />
.
I'm wondering how I should handle the upload of local files within this framework as, unlike electron there is no dialog.showOpenDialog()
function available in vanilla JavaScript.
The following question helps another user with Electron, but I'm searching for a workaround in vanilla ES6.
Thanks in advance