python-eel / Eel

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

Eel without opening window #436

Open ibadb243 opened 3 years ago

ibadb243 commented 3 years ago

Can i use eel without window? Use as server on pc

rahmatagungj commented 3 years ago

Use these arguments:

mode=None #or False

Example : eel.start('index.html',mode=None)

it is to turn off the opening of new windows and run the server only.

zzxjl1 commented 2 years ago

Excuse me. Then how can i reopen the window when i need to do so?

zzxjl1 commented 2 years ago

eel.show(url) does the job, thank you.

jjintx commented 1 year ago

Excuse me, and if a want to hide it again?. I mean if i start with mode chrome for example, but after an action of the user i want to hide it.