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
from PyQt4.QtGui import * | |
from PyQt4.QtCore import * | |
from PyQt4.QtWebKit import * | |
from PyQt4.QtNetwork import * | |
import sys | |
class Render(QWebPage): | |
def __init__(self, url): | |
self.app = QApplication(sys.argv) | |
QWebPage.__init__(self) |
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
import os | |
import sys | |
from PyQt5.QtWidgets import QApplication, QWidget, QToolBox | |
from PyQt5.QtWidgets import QPushButton, QVBoxLayout, QAction, QMenu | |
from PyQt5.QtWidgets import QLineEdit, QLabel | |
class Remove(QWidget): | |
count = 0 |