how to make html files open in chrome using python

Solutions on MaxInterview for how to make html files open in chrome using python by the best coders in the world

showing results for - "how to make html files open in chrome using python"
Camron
21 May 2016
1// Also, use the absolute path of the file:
2
3webbrowser.open('file://' + os.path.realpath(filename))
4