halloleo235
Apr 07, 2013 - 13:00
With Pyhonista I want to write a small documentation viewer for html files I have created in Pythonista.
Let's say I have created a file "doco.html" under Pythonista's local file area. How can I view such a file via the webbrowser module?
webbrowser.open("file:///doco.html")
does not work for me. However the file certainly exists: With open("doco.html") as f I can read the lines of the html file straight away.