diff --git a/Rainbow.py b/Rainbow.py new file mode 100644 index 0000000..4e311bc --- /dev/null +++ b/Rainbow.py @@ -0,0 +1,21 @@ +import sys, os +from multiprocessing import * +import multiprocessing +sys.path.insert(1, "classes/") +from features_check import check + +if __name__ == "__main__" : + + from get_netvars import get_netvars + print("Dumping the netvars, hold a sec...") + get_netvars() + print("Netvars dumped !") + + multiprocessing.freeze_support() + t_features = Process(target = check) + t_features.start() + + from ui import draw as window + window().run() + + t_features.terminate()