I'm trying to open an HTML/CSS/JS file in a browser with python.
No problem here, i'm sending an URL and everything is okay
but when I want to add parameters to my URL like this :
file:///C:/Users/Me/Desktop/pageHTML.html?x=38
Every browser will open it like this :
file:///C:/Users/Me/Desktop/pageHTML.html
I read that Windows was doing it for strange security issues
So I was wondering if someone had a solution in Python or maybe in JS to this problem ?
Unfortunatly, I cannot read it with a local server, this has to be a local file.