Runs a telnet server and allows controlling the pudb from a remote computer.
pip install rpudb
In the server:
import rpudb
rpudb.set_trace(addr='0.0.0.0', port=4444)
In your computer:
telnet localhost 4444
It runs pudb in a pseudo-terminal. You connect to this pseudo-terminal through a telnet server.
Released under the MIT license. Read LICENSE.md for more information.