Like webbrowser for MS html help?

Fredrik Lundh fredrik at pythonware.com
Wed Aug 14 05:59:01 EDT 2002


Dave wrote:

> > Is there anything similar for MS HTML help viewer?
>
> This works (on my system at least):
>
> os.system('start thefile.chm')

or better:

    os.startfile('thefile.chm')

(this uses ShellExecute directly, instead of forking off
an extra command line process)

</F>

<!-- (the eff-bot guide to) the python standard library:
http://www.pythonware.com/people/fredrik/librarybook.htm
-->





More information about the Python-list mailing list