View Single Post
Old 11-17-2024, 12:36 AM   #10096
John Maverick
Connoisseur
John Maverick began at the beginning.
 
Posts: 61
Karma: 10
Join Date: Oct 2018
Device: none
Quote:
Originally Posted by JimmXinu View Post
Are you sufficiently python savvy to try testing it with a basic script? Or investigating if it's a per-program security thing?
While I'm a programmer, I never used python.

For whatever is worth, running this in the command line open the browser:

Code:
python3 -m webbrowser -t "https://www.python.org"
But Calibre comes with it's own python installed, right?

I also tried to run the following python script with calibre-debug to see what happens:

Code:
import webbrowser

url="https://www.python.org"

print('Trying opening this url: '+url)
webbrowser.open(url)
The browser isn't opened, only the print is shown. But I don't know if the issue here is what it's happening with FFF, or something that is wrong in my script.

Last edited by John Maverick; 11-17-2024 at 12:41 AM.
John Maverick is offline   Reply With Quote