Skip to content

Instantly share code, notes, and snippets.

@PaulleDemon
Last active October 26, 2021 06:26
Show Gist options
  • Save PaulleDemon/69d01da9c87c751ef096b271553aa070 to your computer and use it in GitHub Desktop.
Save PaulleDemon/69d01da9c87c751ef096b271553aa070 to your computer and use it in GitHub Desktop.
Contanins PyQt Label example
import sys
from PyQt5.QtWidgets import QApplication, QLabel
if __name__ == '__main__':
app = QApplication(sys.argv)
label = QLabel("Sample label")
label.show()
sys.exit(app.exec())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment