forked from sammmlow/ORBITM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorbitm.py
30 lines (27 loc) · 1.67 KB
/
orbitm.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
###############################################################################
###############################################################################
## ##
## _____ ___ ___ ___ _____ __ __ ##
## | _ | _ \| _ \|_ _||_ _| | \/ | ##
## | |_| | <| _ < | | | | _ | \ / | ##
## |_____|_|\_|___/|___| |_| |_| |_|\/|_| ##
## v 1.1 ##
## ##
## FILE DESCRIPTION: ##
## ##
## Runs the GUI that interfaces with the ORBITM source code stack. ##
## ##
## Written by Samuel Y. W. Low. ##
## First created 27-Nov-2020 12:00 PM (+8 GMT) ##
## Last modified 19-Sep-2021 22:27 PM (-7 GMT). ##
## ##
###############################################################################
###############################################################################
# Import our GUI libraries.
import tkinter
# Import local libraries.
from source import orbmgui
# Initialise the GUI.
root = tkinter.Tk()
root_gui = orbmgui.RunGUI( root )
root.mainloop()