Skip to content

AlaBouali/telnet2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 

Repository files navigation

telnet2

This is an easy to use telnet module to interact with a remote system smoothly over this protocol!

Install :

pip install telnet2

or

pip3 install telnet2

Usage :

import telnet2
t=telnet2.telnet()
ip='192.168.0.32'#just an example
t.login(ip, username='root',password='toor',p=23,timeout=5)
output1=t.execute('echo ala_is_king')
print(output1)
output2=t.execute('cd / && ls')
print(output2)
t.close()

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages