Hi all,
I have a rather conceptual Python question. I have written a client - server application, using sockets. So far, I'm not using any database nor file, everything is held in server's variables. Now I need to make some kind of web interface for the server - for a start just a list of connected clients and some information about them.
I'm a complete newbie to Python web programming, although I'm pretty good with PHP. My question is: is it possible to "bind" a web application (cgi or mod_python) to a running server? Or I'll have to write data to a file/database, and then read it inside a web application?
TIA,
Petar