python 利用dict list构建json数组

Posted zolty

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 利用dict list构建json数组相关的知识,希望对你有一定的参考价值。

import json

dict_list = []

for i in range(1, 5):
    dict_obj = "id": i, "name": i * i
    dict_list.append(dict_obj)
print(dict_list)
dict_json = json.dumps(dict_list)
print(dict_json)

headers = 'Content-Type': 'application/json'
to_url = "http://172.3.2.8:1080/push"
to_data = json.dumps(arr)
push_res = requests.post(url=to_url, headers=headers, data=to_data)
print(push_res.text)

利用转化好的json进行post请求

以上是关于python 利用dict list构建json数组的主要内容,如果未能解决你的问题,请参考以下文章

python 利用dict list构建json数组

python 处理json,list to dict

Python:json 模块

python 统计list中各个元素出现的次数

覆盖继承的默认支持对象(如 dict、list)的嵌套 JSON 编码

数据分析案例