python - Running multiple Kivy apps at same time that communicate with each other - Stack Overflow

PHOTO EMBED

Fri Dec 01 2023 21:24:06 GMT+0000 (Coordinated Universal Time)

Saved by @white124

import multiprocessing
import subprocess
import shlex  
  
#my kivy code..

def sub_window():
    subprocess.call(shlex.split('python3 test.py'))
if __name__ == '__main__':
    b = multiprocessing.Process(target=sub_window)
    b.start()
    MyApp().run()
content_copyCOPY

https://stackoverflow.com/questions/31458331/running-multiple-kivy-apps-at-same-time-that-communicate-with-each-other