Nim
Nim

Reputation: 158

Python: Use multiple python windows for a same program

Is there a way to have a python program being able to open and manage multiple terminal windows? Like, in my script, making two windows open, and when I write something in the first one, like with

d = input()

it prints it in the second one? I'd like to avoid using sockets if possible, and avoid using python GUI libraries like Tkinter... But if there's no other way it's okay, just avoid it if possible. Thanks.

Upvotes: 1

Views: 345

Answers (1)

DRPK
DRPK

Reputation: 2091

Yes you can!!

1) you can save your input_output data in a file and use it on another python script ( realtime ).

2) you can use multiprocessing module for handling multi process read more on: https://pymotw.com/2/multiprocessing/basics.html

3) you can use Multithreaded module for handling multi thread, read more on :https://www.tutorialspoint.com/python/python_multithreading.htm

4) you can use sys and subprocess modules for using pip port

Upvotes: 1

Related Questions