flask学习笔记-01-传送dict信息

1-1 server端:

复制代码
requests.post,requests.data
python 复制代码
import json

from flask import Flask, request, jsonify

app = Flask(__name__)

@app.route("/test", methods=["POST"])
def test():

    out = request.data
    print(out, type(out))
    out = json.loads(out)
    print(out, type(out))

    return jsonify({"1": "2"})


if __name__ == "__main__":
    app.run(host="0.0.0.0", port="9000", debug=False, threaded=True)  # debug=True causes Restarting with stat

1-2 client 端:

python 复制代码
import json
import requests

DETECTION_URL = "http://127.0.0.1:9000/test"

d1 = {"a": "b"}

response = requests.post(DETECTION_URL, data=json.dumps(d1))
print(response.json())

2-1 server端:

requests.post,requests.json

python 复制代码
import json

app = Flask(__name__)

@app.route("/test", methods=["POST"])
def test():

    config = dict(request.json)
    print(config, type(config))
    b = request.json.get("a")

    return jsonify({"1": "2"})


if __name__ == "__main__":
    app.run(host="0.0.0.0", port="9000", debug=False, threaded=True)  # debug=True causes Restarting with stat

2-2 client 端:

python 复制代码
import json
import requests

DETECTION_URL = "http://127.0.0.1:9000/test"

d1 = {"a": "b"}

response = requests.post(DETECTION_URL, json=d1)
print(response.json())
  1. 哇, linux nohup命令真是一个优秀的命令,将终端上打出的信息都输到nohup.out里了。

    nohup python3 -u example_flask_server.py &

Linux nohup 命令 | 菜鸟教程 (runoob.com)

相关推荐
阿耶同学8 小时前
手把手教你用 LangGraph 搭建三层嵌套 Agent 架构
python·程序员
花酒锄作田1 天前
Pydantic校验配置文件
python
hboot1 天前
AI工程师第四课 - 深度学习入门
pytorch·python·神经网络
ZhengEnCi1 天前
P2M-Matplotlib折线图完全指南-从数据可视化到趋势分析的Python绘图利器
python·matlab·数据可视化
ZhengEnCi2 天前
P2L-Matplotlib饼图完全指南-从数据可视化到图表定制的Python绘图利器
python·matlab
曲幽2 天前
你的REST接口还在“过度投喂”数据吗?——FastAPI + GraphQL实战避坑指南
python·fastapi·web·graphql·route·cors·rest·strawberry
用户8358086187912 天前
基于 Self-RAG 与列表级重排序的进阶 RAG 系统设计与实现
python
Warson_L2 天前
Python `Annotated` 与 LangGraph Reducer 学习笔记
python
韩师傅2 天前
海天线算法的前世今生
python·计算机视觉
韩师傅2 天前
当你的甲方设备过烂,要如何快速出效果?
python·计算机视觉