Pexpect是一個純Python模組,可以用來和ssh、ftp、passwd、telnet等命令列命令進行交互使用,在Linux系統下尤其好用,下面我們就來具體來看一下Python安裝使用命令行互動模組pexpect的基礎教學:
一、安裝
1、安裝easy_install工具
wget http://peak.telecommunity.com/dist/ez_setup.py
#python ez_setup.py 安裝easy_install工具(這個腳本會自動去官網搜尋下載並安裝)
python ez_setup.py -U setuptools
升級easy_install工具
2、安裝pexpect
easy_install Pexpect
測試一下:
[root@OMS python]# python Python 2.7.3rc1 (default, Nov 7 2012, 15:03:45) [GCC 4.1.2 20080704 (Red Hat 4.1.2-48)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import pexpect >>> import pxssh >>>
ok已經安裝完成。
二、基本用法
1.run()函數
run功能相對簡單,只能實作簡單互動
複製程式碼
程式碼如下:
run(command,timeout=-1,withexitstatus=False,events= None,extra_args=None, logfile=None, cwd=None, env=None)
範例:
pexpect.run('ls -la') # 返回值(输出,退出状态) (command_output, exitstatus) = pexpect.run('ls -l /bin', withexitstatus=1)
spawn功能比run強大,可以實作更複雜互動
class spawn __init__(self, command, args=[], timeout=30, maxread=2000, searchwindowsize=None, logfile=None, cwd=None, env=None)
timeout指定互動是等待的逾時值;
maxread設定read buffer大小. 每次pexpect嘗試從TTY(Teletype )從讀取的最大位元組數;
searchwindowsize 指定了從輸入緩衝區中進行模式匹配的位置,預設從開始匹配;
工作過程:
# 第一步与终端建立连接 child = pexpect.spawn('scp foo user@example.com:.') # 第二步等待终端返回特定内容 child.expect('Password:') # 第三步根据返回内容发送命令进行交互 child.sendline(mypassword)
pxssh是pexpect的衍生類,用於建立ssh連接,比pexpect好用。
logout() 釋放該連線;
prompt() 等待提示符,通常用於等待指令執行結束。
三、實例
腳本內容:
#!/usr/bin/python #2013-01-16 by larry import pexpect def login(port,user,passwd,ip,command): child=pexpect.spawn('ssh -p%s %s@%s "%s"' %(port,user,ip,command)) o='' try: i=child.expect(['[Pp]assword:','continue connecting (yes/no)?']) if i == 0: child.sendline(passwd) elif i == 1: child.sendline('yes') else: pass except pexpect.EOF: child.close() else: o=child.read() child.expect(pexpect.EOF) child.close() return o hosts=file('hosts.list','r') for line in hosts.readlines(): host=line.strip("\n") if host: ip,port,user,passwd,commands= host.split(":") for command in commands.split(","): print "+++++++++++++++ %s run:%s ++++++++++++" % (ip,command), print login(port,user,passwd,ip,command) hosts.close()使用方法:
python scripts.py
host.list檔案內容如下:
192.168.0.21:22999:root:123456:cat /etc/redhat-release,df -Th,whoami 192.168.0.21:22999:root:123456:cat /etc/redhat-release,df -Th,whoami
#返回結果:
+++++++++++++++ 192.168.0.21 run:cat /etc/redhat-release ++++++++++++ Red Hat Enterprise Linux Server release 4 +++++++++++++++ 192.168.0.21 run:df -Th ++++++++++++ 文件系统 类型 容量 已用 可用 已用% 挂载点 /dev/cciss/c0d0p6 ext3 5.9G 4.4G 1.2G 80% / /dev/cciss/c0d0p7 ext3 426G 362G 43G 90% /opt /dev/cciss/c0d0p5 ext3 5.9G 540M 5.0G 10% /var /dev/cciss/c0d0p3 ext3 5.9G 4.1G 1.5G 74% /usr /dev/cciss/c0d0p1 ext3 487M 17M 445M 4% /boot tmpfs tmpfs 4.0G 0 4.0G 0% /dev/shm +++++++++++++++ 192.168.0.21 run:whoami ++++++++++++ root
更多Python安裝使用命令列互動模組pexpect相關文章請關注PHP中文網!