python-eel / Eel

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

My eel application blocking the chrome running while is run. #726

Open AndreyMayantsev opened 4 months ago

AndreyMayantsev commented 4 months ago

My eel application blocking the chrome running while is run.

grizn1 commented 3 weeks ago

I was able to work around it by creating a separate user profile on the command line. (Sorry for the translated text.)

user_data_dir = os.path.join(os.getcwd(), "chrome_user_data")

eel_kwargs = dict(
    mode="chrome",
    host="localhost",
    port=8888,
    size=(1000, 800),
    cmdline_args=[
        f"--user-data-dir={user_data_dir}",
    ],
    block=False,
)

eel.start(page, **eel_kwargs)