Python Forum
Reading text from Putty window
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Reading text from Putty window
#1
Hi all,

Im new to Python (3.7)

I'm Trying to automate Putty for SSH/Telnet/Serial connection
it more comfortable to do it through Putty because the connection type changes.

i want it to read the output from putty, so if it asks for "username" it will "answer" correctly.

this is my script:

from pywinauto.application import Application
from pynput.keyboard import Key, Controller

print('Configuring')

app = Application().start(cmd_line=u'"C:\\...putty.exe" ')
puttyconfigbox = app.PuTTYConfigBox
puttyconfigbox.wait('ready')
listbox = puttyconfigbox.ListBox
listbox.select(u'COM5')
button = puttyconfigbox[u'&Load']
button.click()
button2 = puttyconfigbox[u'&Open']
button2.click()

keyboard = Controller()
keyboard.press(Key.enter)

keyboard.type('batm')
keyboard.press(Key.enter)
keyboard.type('enable\nconf t\n')
how can i do it?

Thanks in advance

[Image: E1qvXTm.png]
Reply


Messages In This Thread
Reading text from Putty window - by Nil - Jul-25-2019, 10:06 PM
RE: Reading text from Putty window - by fishhook - Jul-26-2019, 07:28 AM
RE: Reading text from Putty window - by Nil - Jul-26-2019, 08:33 AM
RE: Reading text from Putty window - by ndc85430 - Jul-26-2019, 02:28 PM
RE: Reading text from Putty window - by DeaD_EyE - Jul-26-2019, 05:21 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Is there a way to call and focus any popup window outside of the main window app? Valjean 6 2,096 Oct-02-2023, 04:11 PM
Last Post: deanhystad
  Start Putty into Python Form Schlazen 5 5,657 Dec-13-2022, 06:28 AM
Last Post: divya130
  Pyspark Window: perform sum over a window with specific conditions Shena76 0 1,255 Jun-13-2022, 08:59 AM
Last Post: Shena76
  Reading Multiple text Files in pyhton Fatim 1 1,992 Jun-25-2021, 01:37 PM
Last Post: deanhystad
  reading text file with gtts Nickd12 0 1,883 Oct-22-2020, 09:37 PM
Last Post: Nickd12
  How to update libc6 with Putty SSH? drogontargaryen 1 1,991 Jul-20-2019, 03:35 PM
Last Post: ndc85430
  Issue in reading a text file contains dict data bharathappriyan 4 3,308 Sep-27-2018, 01:45 PM
Last Post: Larz60+
  Reading and writing to text file has format change cheerful 3 3,798 Dec-21-2017, 07:53 AM
Last Post: Larz60+
  reading and writing to a text file help jobemorgan 4 3,891 Sep-12-2017, 12:09 PM
Last Post: Sagar

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020