eric6/Tools/webBrowserSupport.py

Tue, 20 Aug 2019 17:07:44 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 20 Aug 2019 17:07:44 +0200
branch
micropython
changeset 7144
de779a22396a
parent 6942
2602857055c5
child 7196
ab0a91b82b37
permissions
-rw-r--r--

Revision <7140> closed.

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# Copyright (c) 2018 - 2019 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Script to determine the supported web browser variant.

It looks for QtWebEngine first and the old QtWebKit thereafter. It reports the
variant found or the string 'None' if both are absent.
"""

from __future__ import unicode_literals

import sys

variant = "None"

try:
    from PyQt5 import QtWebEngineWidgets    # __IGNORE_WARNING__
    variant = "QtWebEngine"
except ImportError:
    if sys.argv[-1].startswith("4."):
        try:
            from PyQt4 import QtWebKit      # __IGNORE_WARNING__
            variant = "QtWebKit"
        except ImportError:
            pass
    else:
        try:
            from PyQt5 import QtWebKit      # __IGNORE_WARNING__
            variant = "QtWebKit"
        except ImportError:
            pass

print(variant)      # __IGNORE_WARNING_M801__

sys.exit(0)

eric ide

mercurial