File: __init__.py

package info (click to toggle)
multiprocess 0.70.19-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 11,548 kB
  • sloc: python: 82,952; ansic: 9,315; makefile: 16
file content (12 lines) | stat: -rw-r--r-- 256 bytes parent folder | download | duplicates (59)
1
2
3
4
5
6
7
8
9
10
11
12
import os
import webbrowser

def main():
    '''
    Show html documentation using webbrowser
    '''
    index_html = os.path.join(os.path.dirname(__file__), 'index.html')
    webbrowser.open(index_html)

if __name__ == '__main__':
    main()