I am currently developing a simple python application that connects to a server. This is currently single-threaded (since multithreading is currently not required).
However, I would like - for debugging, maintenance, etc. also be able to have REPL via stdin.
How can I do this, if possible? Do I need to remember anything? Should I make a separate thread for this?
source
share