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)

相关推荐
ranchor66619 小时前
pandas 模拟题
开发语言·python·pandas
布茹 ei ai19 小时前
地表沉降监测分析系统(vue3前端+python后端+fastapi+网页部署)(开源分享)
前端·python·fastapi
闲人编程19 小时前
API限流、鉴权与监控
分布式·python·wpf·限流·集群·令牌·codecapsule
封奚泽优19 小时前
Deep-Live-Cam(调试和求助)
git·python·ffmpeg·pip·cuda
萤火虫的夏天25119 小时前
虚拟环境安装tensorflow使用GPU加速,显卡:1650ti
人工智能·python·tensorflow
视频技术分享19 小时前
内网视频会议升级之选:云屋,30 分钟部署替代腾讯会议
python·腾讯会议
CHANG_THE_WORLD20 小时前
Python元组(Tuple)详解
开发语言·python
SadSunset20 小时前
(15)动态SQL中的if,foreach和一些其他的常用标签
数据库·python·sql
零日失眠者20 小时前
⚠️ 警告!99%的开发者都踩过这个坑:Python3安装后系统彻底瘫痪!yum直接报废的真相
linux·python
寒山李白20 小时前
关于supervisor-win的安装、配置和使用
服务器·python·supervisor