python-eel / Eel

A little Python library for making simple Electron-like HTML/JS GUI apps
MIT License
6.3k stars 580 forks source link

How can I save data to users computer? #611

Closed nh916 closed 9 months ago

nh916 commented 1 year ago

Describe the problem I want to save data to users computer when they are using the executable, so that when they close it and launch it later their data still exists. How can I accomplish this?

dstricks commented 1 year ago

How can I accomplish this?

What have you already tried?

JustasKud commented 1 year ago

I personally use JSON files for this. Just create a file inside the same directory as the compiled code and edit it using python. Not sure if this is the best option, but it's the one I'm most familiar with.

tripleo1 commented 1 year ago

Show some code 😉

gh-adithya commented 9 months ago

Hi! I would like to work on this issue as my first contribution for the project. Could you help me get started by giving me some pointers so that I can head in the right direction?