使用Python JSON的HTTP Post请求

时间:2013-09-12 02:32:55

标签: python json post

我正在尝试将数据发送到网址。我有一个代码可以为我的Mac上的每个cpu发送它。但是当前的代码循环遍历每个cpustats并将它们一个接一个地发送。我需要在1个POST'循环'中发送所有这些,但它应格式化,以便它像这样发送 -

cpuStats = {nice: 123.0, idle:123.0....}
cpuStats = {nice: 123.0, idle:123.0....}
cpuStats = {nice: 123.0, idle:123.0....}

依旧......

此外,当前代码从我的Mac中提取统计数据(每个cpustat都有'200 OK')但是当我在Linux,Windows上运行它时,它只返回提示而不给出任何错误或统计信息。我的猜测是它与'socket.error:'中的'break'有关(我的Mac有4个cpus,但我测试它的Linux和Windows机器各有1个。

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)


def loop_thru_cpus():
    global cpuStats
    for stat in cpuStats:
        stat = json.dumps(stat._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': stat, 'thisClient': 1234})
            headers = headers = {'Content-type': 'application/json', 'Accept': 'text/plain'}
            conn = httplib.HTTPConnection(serverHost, port)
            conn.request("POST", "", params, headers)
            response = conn.getresponse()
            print response.status, response.reason

        except IndexError:
            continue
        except socket.error:
            print "Connection refused"
            continue

    print stat

loop_thru_cpus()
s.close()

1 个答案:

答案 0 :(得分:2)

如果您只是尝试一次性发送数据,您应该意识到您实际上并没有发送字典,而是发送字符串。在这种情况下,您只需构建数据就可以轻松地一次性发送所有数据:

data = "\n".join([json.dumps(stat._asdict()) for stat in cpuStats])

如果该端点是其他可能不合理的端点,但假设您自己的端点指向它,那么解开这些数据应该是非常简单的。

此外,我强烈建议通过urllib切换到requests模块,因为它在更简单的包装器中扩展了所有相同的功能。例如,在requests中,您将通过执行以下操作发送该请求:

import requests

response = requests.post("your://url.here", data=data)
print response.content