File: __init__.py

package info (click to toggle)
multiprocess 0.70.11.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 10,144 kB
  • sloc: python: 85,738; ansic: 12,758; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 256 bytes parent folder | download | duplicates (49)
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()