I want to print continuously data (real time) from telnet with telnetlib (python 3.7) but no resalt becouse the fonction read_all don't stop
import telnetlib
tn = telnetlib.Telnet('10.205.61.60', port=9101, timeout=10)
v=tn.read_all()
print(v)
I want to print continuously data (real time) from telnet with telnetlib (python 3.7) but no resalt becouse the fonction read_all don't stop
import telnetlib
tn = telnetlib.Telnet('10.205.61.60', port=9101, timeout=10)
v=tn.read_all()
print(v)