This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git pull origin master //run this first, then | |
$ git push origin master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
import sys | |
import os | |
# import site | |
# site.addsitedir('/usr/local/lib/python2.7/site-packages') | |
from PyQt5 import QtCore, QtWidgets, QtWebEngineWidgets | |
app = QtWidgets.QApplication(sys.argv) | |
view = QtWebEngineWidgets.QWebEngineView() |