File: __main__.py

package info (click to toggle)
pygame 2.6.1-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 43,076 kB
  • sloc: ansic: 66,932; python: 48,797; javascript: 1,153; objc: 224; sh: 121; makefile: 59; cpp: 25
file content (37 lines) | stat: -rw-r--r-- 995 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# python -m pygame.docs

import os
import webbrowser
from urllib.parse import quote, urlunparse


def _iterpath(path):
    path, last = os.path.split(path)
    if last:
        yield from _iterpath(path)
        yield last


# for test suite to confirm pygame built with local docs
def has_local_docs():
    pkg_dir = os.path.dirname(os.path.abspath(__file__))
    main_page = os.path.join(pkg_dir, "generated", "index.html")
    return os.path.exists(main_page)


def open_docs():
    pkg_dir = os.path.dirname(os.path.abspath(__file__))
    main_page = os.path.join(pkg_dir, "generated", "index.html")
    if os.path.exists(main_page):
        url_path = quote("/".join(_iterpath(main_page)))
        drive, rest = os.path.splitdrive(__file__)
        if drive:
            url_path = f"{drive}/{url_path}"
        url = urlunparse(("file", "", url_path, "", "", ""))
    else:
        url = "https://www.pygame.org/docs/"
    webbrowser.open(url)


if __name__ == "__main__":
    open_docs()