发送
import requests as r
res = r.post('http://localhost:8080/hello', json={
'name': '小明'
})
print(res.json()['name'])
接收
bottle是python的web框架,只需要引用一个.py
文件即可,点击去下载页文章来源地址https://www.toymoban.com/news/detail-608858.html
from bottle import route, run, request
@route('/hello',method='POST')
def hello():
print(request.json['name'])
return {'name':'小泓'}
run(host='localhost', port=8080,reloader=True)
文章来源:https://www.toymoban.com/news/detail-608858.html
到了这里,关于python 发送和接收post请求的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!