Ankit
Ankit

Reputation: 130

Alternative to QWebView()

Since QWebView() is probably not available in Ubuntu 16.10 onwards, what is the alternate possibility to do something like the following:
view = QWebView() view.load(QUrl('http://example.com')

Upvotes: 1

Views: 951

Answers (1)

Nitish
Nitish

Reputation: 41

Use QWebEngineView() instead.

QtWebEngine is replacing QtWebKit. You can look into the following link for a comparison on them. QWebView or QWebEngineView

Upvotes: 2

Related Questions