1from . import _api
2
3if _api.USED_API == _api.QT_API_PYQT5:
4    from PyQt5.QtWebEngineCore import *
5else:
6    raise ImportError("No module named 'QtWebEngineCore' in the selected "
7                      "Qt api ({})".format(_api.USED_API))
8