> Here is the code:
> #!/usr/bin/env python
> import telnetlib
> host = '10.128.59.63'
> port = 7000
> t = Telnet(host, port)
> t.write('*IDN?\n')
> print t.read_until('Whateverprompt')
> # you can use read_very_eager also
> 
> and this is the result of executing the code(from which I deduce I
> have to
> install telnetlib, but how?)
> Traceback (most recent call last):
>   File "./nctelnet.py", line 5, in <module>
>     t = Telnet(host, port)
> NameError: name 'Telnet' is not defined
> 
> kind regards,
> jean

t = telnetlib.Telnet(host, port)

JM


-- IMPORTANT NOTICE: 

The contents of this email and any attachments are confidential and may also be 
privileged. If you are not the intended recipient, please notify the sender 
immediately and do not disclose the contents to any other person, use it for 
any purpose, or store or copy the information in any medium. Thank you.
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to