将参数传递给Python

时间:2017-08-29 17:09:24

标签: python python-2.7 arguments subprocess

我有以下代码。它连接到Service Now实例。获取特定服务器的事件。事件包含打印机创建的详细信息。 ip在记录['user_input']中,打印机名称在记录['u_string_full_utf8_1']中。我想要实现的是将这些作为参数传递给powershell,以便它可以运行Printer Create脚本。以下代码中传递的参数有效。但我不知道如何在其中间传递参数。

import pysnow
import subprocess
import os

# Create client object
s = pysnow.Client(instance='instance', user='admin', password='password')

# Get all incidents
r = s.query('incident', query={'cmdb_ci':'a28cba7a4fb4030028f7fd218110c7f5'})

# order by 'created_on' descending, then iterate over the result and print out number
for record in r.get_multiple(order_by=['-created_on']):
    print(record['cmdb_ci'])

psxmlgen = subprocess.Popen([r'C:\WINDOWS\system32\WindowsPowerShell\v1.0\powershell.exe',
                            "Invoke-Command -ComputerName SERVER01 -FilePath 'C:\Users\testuser\Documents\Scripts\PrinterCreate.ps1' -ArgumentList '10.2.3.2','PS Driver for Universal Print','TESTPRINTER' -Credential $cred"], cwd=os.getcwd())
result = psxmlgen.wait()

我检查了现有资源,但无法弄清楚如何在中间传递它。

任何帮助都将不胜感激。

使用Python2.7

2 个答案:

答案 0 :(得分:0)

您可以参考两个类似的问题。 Popen允许您访问交互式进程的标准输入。您可能想参考

Running an interactive command from within python

Running powershell script within python script, how to make python print the powershell output while it is running

两个人都可以提供帮助。我不确定powershell是否将它的stdin和stdout暴露为Windows中的正常本机进程。

答案 1 :(得分:0)

使用以下内容:

psxmlgen = subprocess.Popen([r'C:\WINDOWS\system32\WindowsPowerShell\v1.0\powershell.exe',
                            "Invoke-Command -ComputerName Server01 -FilePath 'C:\Users\smehta30\Documents\Scripts\PrinterCreate.ps1' -ArgumentList "+record['user_input']+",'PS Driver for Universal Print',"+record['u_string_full_utf8_1']+" -Credential $cred"], cwd=os.getcwd())