python-eel / Eel

A little Python library for making simple Electron-like HTML/JS GUI apps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

eel.show() should allow for a path for routing

bryaan opened this issue · comments

Is your feature request related to a problem? Please describe.
eel.show({port: 9100}, path='/my-special-page')

This should work. This allows the js logic to specify the page to open in the new window that show() opens.

This should build the path: "http://localhost:9100/my-special-page"

Note I am using a js framework that does its own routing and uses a single index.html page for the entire app.