Problem loading a specific website through Qt Webkit

I am currently using the following PyQt code to create a simple browser:

import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.QtWebKit import *

app = QApplication(sys.argv)
web = QWebView()
web.load(QUrl("http://www.robeez.com"))
web.show()
sys.exit(app.exec_())

Sites like google.com or stackoverflow.com are working fine, but robeez.com does not. Does anyone with Webkit experience know what might be wrong? robeez.com works great in a regular browser like Chrome or Firefox.

0
source share
3 answers

try arora (very simple packaging on top of QtWebKit); if it works, its code. if not, its a website.

0
source

- http://www.robeeez.com, , , rebeez.com. . rebeez.com index.html, dillo wget qt45. ?

0

Try sending the Accept-Language header as well, then it will work for me.

0
source

Source: https://habr.com/ru/post/1733734/


All Articles