Sample code for 30+ languages & platforms
CkPython

Peek at Buffered SSH Channel Text

See more SSH Examples

Demonstrates the Chilkat Ssh.PeekReceivedText method, which returns the text currently buffered for a channel, decoded with the given charset, without removing any bytes. The first argument is the channel number and the second is the charset.

Background: Every other retrieval method consumes the buffer, which is awkward when you only want to know whether the output you are waiting for has arrived yet. Because peeking is nondestructive, you can inspect, decide, and still retrieve the data normally afterward — the basis of a poll-and-check loop. Note that StripColorCodes is not applied here, so terminal escape sequences appear exactly as buffered.

Chilkat CkPython Downloads

CkPython
import sys
import chilkat

success = False

#  Demonstrates the Ssh.PeekReceivedText method, which returns the text currently buffered for a
#  channel without removing any bytes.  The 1st argument is the channel number and the 2nd is
#  the charset.

ssh = chilkat.CkSsh()

sshPort = 22
success = ssh.Connect("ssh.example.com",sshPort)
if (success == False):
    print(ssh.lastErrorText())
    sys.exit()

#  Normally you would not hard-code the password in source.  You should instead obtain it
#  from an interactive prompt, environment variable, or a secrets vault.
password = "mySshPassword"

success = ssh.AuthenticatePw("mySshLogin",password)
if (success == False):
    print(ssh.lastErrorText())
    sys.exit()

channelNum = ssh.OpenSessionChannel()
if (channelNum < 0):
    print(ssh.lastErrorText())
    sys.exit()

success = ssh.SendReqExec(channelNum,"ls -l /tmp")
if (success == False):
    print(ssh.lastErrorText())
    sys.exit()

#  IMPORTANT: Set a read timeout.  ReadTimeoutMs defaults to 0, which means no limit -- without
#  it, this call waits forever if the server never sends channel close.
ssh.put_ReadTimeoutMs(15000)

success = ssh.ChannelReceiveToClose(channelNum)
if (success == False):
    print(ssh.lastErrorText())
    sys.exit()

#  Look at the buffered text without consuming it.  This is useful for checking whether the
#  expected output has arrived yet.
peeked = ssh.peekReceivedText(channelNum,"utf-8")
if (ssh.get_LastMethodSuccess() == False):
    print(ssh.lastErrorText())
    sys.exit()

print("Peeked: " + peeked)

#  The bytes are still buffered, so retrieving them still returns the same text.
output = ssh.getReceivedText(channelNum,"utf-8")
if (ssh.get_LastMethodSuccess() == False):
    print(ssh.lastErrorText())
    sys.exit()

print("Retrieved: " + output)

ssh.Disconnect()