Hello World!!

git clone https://github.com/{YOUR_USER_NAME}/hugo-site.git

Let’s Do the Thing!

import sys
from PyQt5.QtWidgets import QApplication, QLabel, QMainWindow, QVBoxLayout, QWidget

class HelloWorldApp(QMainWindow):
    pass

if __name__ == '__main__':
    app = QApplication(sys.argv)
    window = HelloWorldApp()
    window.show()
    sys.exit(app.exec_())

Another Test

Set some variables
import sys
from PyQt5.QtWidgets import QApplication, QLabel, QMainWindow, QVBoxLayout, QWidget

class HelloWorldApp(QMainWindow):
    pass

if __name__ == '__main__':
    app = QApplication(sys.argv)
    window = HelloWorldApp()
    window.show()
    sys.exit(app.exec_())

Tip

This is a warning notice. Be warned!