怎么在python中调用npm?
迷茫
迷茫 2017-04-18 10:20:26
0
2
621

想写一个部署的脚本,
顺序是npm run build > mv something > ssh login && upload
因为需要登录远程主机,需要一些交互,发现python的pexpect挺不错的,可是问题是。
怎么完成第一步的在python中调用npm run build

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

Antworte allen(2)
Ty80

用paramiko模块吧

        import paramiko
        ssh = paramiko.SSHClient()
        ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
        ssh.connect(ip,22,username,passwd,timeout=5)
        stdin, stdout, stderr = ssh.exec_command("npm run build")
        out = stdout.readlines()
        stdin, stdout, stderr = ssh.exec_command("mv something")
        out = stdout.readlines()
        ...............
        ssh.close()

假定npm已经添加到path环境变量中

洪涛

os.system + fabric 或者直接 fabric

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage