下面展示了 flask 服务启用后对我给的特定请求做的一些处理。
如果想实现连接 windows 服务器,利用 requests 请求进行文件传输,可以看我的这篇文章:
Python 技术篇-用 flask 库与 requests 请求实现 mac 本地文件上传至 windows 服务器指定文件夹下实例演示
# -*- coding:utf-8 -*- import flask app = flask.Flask(__name__) # 直接输入ip+端口号展示内容 @app.route('/') def visit_home(): return 'Welcome to Xiao Lanzao\'s blog!' # 重定向访问百度 @app.route('/visit_baidu') def visit_baidu(): return flask.redirect("https://www.baidu.com"); # 传参展示 @app.route('/command/<command>') def command_execute(command): return "<h1>Your input command is \"%s\"</h1>" % command; if __name__ == '__main__': host_ip = "10.11.xx.xx" host_port = 5003 app.run(host = host_ip, port = host_port)
运行后效果图:
这是后台控制界面。
直接在浏览器端访问 ip+端口 显示的内容。
输入 http://10.11.xx.xx:5003/visit_baidu
被重定向直接跳转到百度页面。
输入 http://10.11.xx.xx:5003/command/open-cmd
,open-cmd 被提取为我要传的参数返回了。
喜欢的点个赞❤吧!