summaryrefslogtreecommitdiffstats
path: root/main.py
blob: 5b2cc4c200aebedd64f1b3e142033ec7603e92e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import ssl
import certifi
from functools import partial

ssl.default_ca_certs = certifi.where()
ssl.create_default_context = partial(
    ssl.create_default_context,
    cafile=certifi.where()
)

from g4f.gui.webview import run_webview
import g4f.debug
g4f.debug.version_check = False

run_webview(True);