hello people,
I'm trying to use this my simple example to access pages that have SSL enabled with certificate
can someone help me, a simple code example of this below:

Qt Code:
  1. import sys
  2. import PyQt4
  3. import time
  4. from PyQt4 import QtCore, QtGui
  5. from PyQt4 import uic
  6. from PyQt4.QtCore import *
  7. from PyQt4.QtGui import *
  8. from PyQt4.QtWebKit import *
  9. from PyQt4.QtNetwork import *
  10. import urllib2, re
  11.  
  12. app = QApplication(sys.argv)
  13.  
  14. web = QWebView()
  15.  
  16. url = 'https://edit.qt.troll.no/'
  17.  
  18. web.load(QUrl(url))
  19. web.show()
  20. sys.exit(app.exec_())
To copy to clipboard, switch view to plain text mode