-1

I have searched entire web to find a way to do this.

All the answers are about PyQt4, Pyside, Qwebview, Qt4, or Qt5(C++), therefore they do not work on PyQt5.

the other answer is QtWebEngineView: unknown for PyQt5 (at least mine).

I have the latest version of Python, Pycharm and PyQt5.

Xantium
  • 11,201
  • 10
  • 62
  • 89
  • 2
    Some code snippets of what you have tried may be helpful to others that read your question. – Daniel Dec 20 '17 at 21:40
  • Welcome to SO. In future I recommend you also tag the language you are using. In this case `python` and `pyqt5` together. In order to find (and answer) your question users would need to be looking under the `pyqt5` tag. Many who know `pyqt5` may not look under this tag specifically (so it is a good idea to maximize your audience while keeping it tagged with *all* relevant tags). Also they will not know which language you are using and may for this reason skip it without reading. – Xantium Dec 20 '17 at 21:40
  • Since you have installed PyQt5, and what is its version, you should have the QWebEngineView module, see this example: https://stackoverflow.com/questions/47893838/make-any-link-even-blank-open-in-same-window-using-qwebengine – eyllanesc Dec 20 '17 at 21:44

1 Answers1

0

Tnx All. The correct import was from PyQt5 import QtWebEngineWidgetsthen, you can use QWebEngineVieweasily by load() method.