我有一个使用pxssh的python脚本。这是脚本:
from pexpect import pxssh
import getpass
try:
s = pxssh.pxssh()
hostname = input('hostname: ')
username = input('username: ')
password = getpass.getpass('password: ')
s.login(hostname, username, password)
s.sendline('cat hiera/my.yaml') # run a command
s.prompt() # match the prompt
for line in s.before.splitlines()[1:]:
print (line)
s.logout()
except pxssh.ExceptionPxssh as e:
print("pxssh failed on login.")
print(e)
我不明白为什么脚本输出是这样的:
b'---'
b'settings_prod: |'
b'"""'
b"Generated by 'django-admin startproject' using Django 2.0.5."
b''
b'For more information on this file, see'
b'https://docs.djangoproject.com/en/2.0/topics/settings/'
b''
b'For the full list of settings and their values, see'
b'https://docs.djangoproject.com/en/2.0/ref/settings/'
b'"""'
每行输出开头的b'
和每行输出结尾的'
是怎么回事?如果是,我该怎么处理?
它是二进制数据,需要用str()
进行转换。
print( str( line, 'utf-8' ) )
还有许多其他字符串格式,如iso-8859-1
、iso-8859-16
等。但是,如果有疑问,请先尝试utf-8
。
来自文档:
字节文字总是以"b"或"b"为前缀;它们产生字节类型而不是str类型的实例。他们可能只是包含ASCII字符;数值为128或更大的字节必须用转义符表示。
https://docs.python.org/3.3/reference/lexical_analysis.html#string-文字