I'm not sure if this is the right way to word this, but I have a python web server that accepts connections and updates objects, is it possible to use the interactive shell to inject commands into the same memory space and view/change the objects the server is interacting with?
Currently, once the httpd function starts, it the shell takes no input until the process is interrupted, then I can type and check the object states. But while I'm doing this, the server is not running, and has to be restarted.
Is what I'm trying to do ridiculous or possible? It's primarily for ease of testing and development. I've considered pickling and opening those pickles in another shell.