1
0
Fork 0

init python

This commit is contained in:
Peter McGoron 2021-05-27 19:01:37 -04:00
parent 8e50c4a08e
commit cd5471c28d
1 changed files with 10 additions and 0 deletions

10
control_seekat_demo.py Normal file
View File

@ -0,0 +1,10 @@
import gi
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk
if __name__ == "__main__":
builder = Gtk.Builder()
builder.add_from_file("gui.glade")
builder.get_object("win").connect("destroy", Gtk.main_quit)
builder.get_object("win").show_all()
Gtk.main()