I'm using a class from a module that on first usage asks me for some input in the terminal.
At every new instance the terminal asks for some inputs.
Example:
instance = Class()
instance.run()
## asks for input in the terminal
I thought about the subprocess module but didn't find anything regarding my use case, the best solution should allow me to read what it's asked and input some data at each step.
Thanks in advance