0

我正在通过 Python api 管理 Canonical CM Landscape。我不知道是否有人可以帮助我,但我陷入了困境,我不知道这是否是该特定库的简单 Python 错误。这是较大脚本的一部分,但当我尝试使用此清单中的最后一个函数时它会丢失。

    import os, json, sys, subprocess, csv, datetime, time
    from landscape_api.base import API, HTTPError
    from subprocess import Popen,PIPE,STDOUT,call


    uri = "xxxxxxxxxxxxxxxxxxxxxxxx"
    key = "xxxxxxxxxxxxxxxxxxxx"
    secret = "xxxxxxxxxxxxxxxxxxxxxxx"

    api = API(uri, key, secret)

    proc=Popen('zenity --entry --text "Fill with machine Tag to be searched" --entry-      text "Type Tag"', shell=True, stdout=PIPE, ) #Input from zenity window
    output=proc.communicate()[0] 
    user="root"
    script="2408"
    mac = api.execute_script(query="tag:%s", script_id="script_id:%s", username="user:%s" %(output, script, user))

最后一个函数 api.execute_script 返回错误

   Traceback (most recent call last):
       File "Python_MAC_IP.py", line 35, in <module>
       mac = api.execute_script(query="tag:%s", script_id="script_id:%s", username="user:%s" %(output, script, user))
       TypeError: not all arguments converted during string formatting
4

1 回答 1

0

您只能%在单个字符串上使用运算符,而不能跨多个字符串使用。您当前要求 Python 做的是将多个变量插入到仅定义了一个的字符串中。

更改此行:

mac = api.execute_script(query="tag:%s", script_id="script_id:%s", username="user:%s" %(output, script, user))

对此:

mac = api.execute_script(query="tag:%s" %tag, script_id="script_id:%s" %script, username="user:%s" %user
于 2013-02-15T14:40:32.547 回答