Skip to content

Instantly share code, notes, and snippets.

View Ronkiro's full-sized avatar
😃
The real answer is 42.

Alexander Santos Ronkiro

😃
The real answer is 42.
View GitHub Profile
@Ronkiro
Ronkiro / splashscreen_demo_1.py
Created February 8, 2019 14:24 — forked from 345161974/splashscreen_demo_1.py
PyQt SplashScreen Demo
from PyQt4.QtCore import *
from PyQt4.QtGui import *
import time
class Form(QDialog):
""" Just a simple dialog with a couple of widgets
"""
def __init__(self, parent=None):
super(Form, self).__init__(parent)