当前位置: 首页>>代码示例>>Python>>正文


Python pxssh.ExceptionPxssh方法代码示例

本文整理汇总了Python中pxssh.ExceptionPxssh方法的典型用法代码示例。如果您正苦于以下问题:Python pxssh.ExceptionPxssh方法的具体用法?Python pxssh.ExceptionPxssh怎么用?Python pxssh.ExceptionPxssh使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pxssh的用法示例。


在下文中一共展示了pxssh.ExceptionPxssh方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: OPDemoFunc

# 需要导入模块: import pxssh [as 别名]
# 或者: from pxssh import ExceptionPxssh [as 别名]
def OPDemoFunc(self, op_dictionary):
        '''Process a command table
        '''

        xresults = {}

        try:
            for xkey, xcommand in sorted(op_dictionary.items()):
                xresults[xkey] = list(
                    [_f for _f in self.my_console.run_command(xcommand) if _f])

            for xkey, xvalue in sorted(xresults.items()):
                log.debug('\nCommand Run: "{}"\n{}'.format(
                    op_dictionary[xkey], '\n'.join(xresults[xkey])), extra=xresults)

        except pxssh.ExceptionPxssh as op_pxssh:
            self.fail(str(op_pxssh))
        except CommandFailed as xe:
            my_x = {x: xe.output[x] for x in range(len(xe.output))}
            log.debug('\n******************************\nCommand Failed: \n{}\n******************************'.format(
                '\n'.join(my_x[y] for y, z in list(my_x.items()))), extra=my_x)
            log.debug('\nExitcode {}'.format(xe))
        except Exception as func_e:
            self.fail('OPDemoFunc Exception handler {}'.format(func_e)) 
开发者ID:open-power,项目名称:op-test,代码行数:26,代码来源:OpTestExample.py

示例2: connect

# 需要导入模块: import pxssh [as 别名]
# 或者: from pxssh import ExceptionPxssh [as 别名]
def connect(hostname, username, password):
	try:
		s = pxssh.pxssh()
		if not s.login(hostname, username, password):
			print("SSH session failed on login.")
		return s
	except pxssh.ExceptionPxssh as e:
		print('[-] Error Connecting')
		print(str(e)) 
开发者ID:PacktPublishing,项目名称:Mastering-Python-for-Networking-and-Security,代码行数:11,代码来源:pxsshCommand.py


注:本文中的pxssh.ExceptionPxssh方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。