Python JSON尝试除了块不工作

时间:2013-09-10 21:55:02

标签: python json for-loop exception-handling try-except

多次尝试后,此代码仍然失败。我想要做的是将“cpu stats”作为JSON发送到服务器。事实是,仅cpustats就可以了 - 只有1个具有不同cpupercentages的命名元组 - 用户,空闲等。但是'percpu'返回每个cpu的namedtuple(用户,空闲等)的列表。所以我无法将列表转换为字典。我试图遍历列表,然后将每个namedtuple发送到服务器。 (对于参考 - 我使用的是2.7.5)。该脚本工作正常,没有尝试循环和尝试/除 - 它返回'200 OK'。但现在当我运行它时,它甚至不会返回错误,任何响应消息/状态。好像脚本只是绕过整个try / except块。只是最后的'print cpuStats'行提供了应有的功能。 (这个问题中的缩进有点偏,但在脚本中很好)

    import psutil 
    import socket
    import time
    import sample
    import json
    import httplib
    import urllib

    serverHost = sample.host
    port = sample.port

    thisClient = socket.gethostname()
    currentTime = int(time.time())
    s = socket.socket()
    s.connect((serverHost,port))

    cpuStats = psutil.cpu_times_percent(percpu=True)
    print cpuStats
    def loop_thru_cpus():

       for i in cpuStats:

         cpuStats = cpuStats[i]
         cpuStats = json.dumps(cpuStats._asdict())

         try:

             command = 'put cpu.usr ' + str(currentTime) + " " + str(cpuStats[0]) + "host ="+  thisClient+ "/n"
             s.sendall(command)
             command = 'put cpu.nice ' + str(currentTime) + " " + str(cpuStats[1]) + "host ="+ thisClient+ "/n"
             s.sendall(command)
             command = 'put cpu.sys ' + str(currentTime) + " " + str(cpuStats[2]) + "host ="+ thisClient+ "/n"
             s.sendall(command)
             command = 'put cpu.idle ' + str(currentTime) + " " + str(cpuStats[3]) + "host ="+ thisClient+ "/n"
             s.sendall(command)

             params = urllib.urlencode({'cpuStats': cpuStats, 'thisClient': 1234})
             headers = httplib.HTTPConnection(serverHost, port)
             conn.request("POST", "", params, headers)
             response = conn.response()
         print response.status, response.reason

    except IndexError:
            break

        i = i+1

    s.close()

1 个答案:

答案 0 :(得分:1)

而不是:

def loop_thru_cpus():
   for i in cpuStats:
     cpuStats = cpuStats[i]
     cpuStats = json.dumps(cpuStats._asdict())   
     ...  
     i = i+1

尝试:

def loop_thru_cpus():
   for stat in cpuStats:
       stat = json.dumps(stat._asdict())     

当你说

for i in cpuStats:

i接受来自cpuStats的值。在这种情况下,i不是整数。所以i = i+1毫无意义。


cpuStats = cpuStats[i]

这可能引发了一个IndexError(因为i不是一个整数),但由于某种原因你没有看到引发的异常。

另请注意,您在此处重新定义cpuStats,这可能不是您想要做的。


你可能代码中有缩进错误。运行您通过cat -A发布的代码会显示标签(由^I指示):

             try:$
^I        $
                 command = 'put cpu.usr ' + str(currentTime) + " " + str(cpuStats[0]) + "host ="+  thisClient+ "/n"$
...
                 params = urllib.urlencode({'cpuStats': cpuStats, 'thisClient': 1234})$
...
^I         print response.status, response.reason$
$
^I    except IndexError:$
                break$

您不能在Python代码中混合制表符和空格缩进。要么使用其中一个。 PEP8样式指南(以及您在网上看到的大多数代码)使用4个空格。混合制表符和空格通常会导致IndentationError,但有时您不会收到错误,只会出现意外行为的代码。因此(如果使用4空格约定)请小心使用在按Tab键时添加4个空格的编辑器。

由于您没有看到IndexError,您可能没有看到应该发生的IndentationError。你究竟是怎么运行这个问题的?