Skip to content

Instantly share code, notes, and snippets.

@Gnumaru
Gnumaru / gist:e1e88d146334aac84ab6530c150928f1
Created September 14, 2019 18:10
transcription for the code found in the video "PyQt5 Creating Paint Application In 40 Minutes" https://www.youtube.com/watch?v=qEgyGyVA1ZQ
# transcription for the code found in the video "PyQt5 Creating Paint Application In 40 Minutes" https://www.youtube.com/watch?v=qEgyGyVA1ZQ
from PyQt5.QtWidgets import QApplication, QMainWindow, QMenuBar, QMenu, QAction, QFileDialog
from PyQt5.QtGui import QIcon, QImage, QPainter, QPen
from PyQt5.QtCore import Qt, QPoint
import sys
class Window (QMainWindow) :
def __init__(self):
super().__init__()