mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
15 lines
386 B
Python
15 lines
386 B
Python
|
import imp, threading
|
||
|
|
||
|
def handle_arguments():
|
||
|
import sys, __main__
|
||
|
argv = sys.argv
|
||
|
if len(argv)>1 and argv[1].endswith(".py"):
|
||
|
with open(argv[1]) as pyfile:
|
||
|
imp.load_module('__main__', pyfile, argv[1], (".py", "r", imp.PY_SOURCE))
|
||
|
|
||
|
def main():
|
||
|
from .gui import win
|
||
|
th = threading.Thread(target=handle_arguments)
|
||
|
th.start()
|
||
|
win.tk.mainloop()
|