Metadata-Version: 2.1
Name: telnetlib2
Version: 1.1.0
Summary: simple telnet module
Home-page: https://github.com/AlaBouali/telnetlib2
Author: AlaBouali
Author-email: trap.leader.123@gmail.com
License: MIT License
Description: # telnet
        This is an easy to use telnet module to interact with a remote system smoothly over this protocol!
        
        # Install :
        
        pip install telnetlib2
        
        or
        
        pip3 install telnet
        
        # Usage :
        
        import telnetlib2
        t=telnetlib.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()
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License 
Requires-Python: >=2.7
Description-Content-Type: text/markdown
