使用Python + Flask搭建web服务

  • 示例脚本
from flask import Flask


# 获取一个实例对象
app = Flask(__name__)

# 1、注册
@app.route('/reg', methods=['get'])
def reg():
    return {
            'code': 200,
            'msg': 'reg ok!'
            }

# 2、登录
@app.route('/login', methods=['get'])
def login():
    return 'login ok!'

if __name__ == '__main__':
    app.run()
  • 运行脚本
    使用Python + Flask搭建web服务_第1张图片
  • 在浏览器上校验
    在浏览器地址栏输入URL和定义的路径,回车请求,校验响应数据是否正确。
    使用Python + Flask搭建web服务_第2张图片
  • 也可使用Python-requests库请求回调测试
import requests


url = 'http://127.0.0.1:5000'

r = requests.get(url + '/reg')
print(r.status_code)
print(r.json())

  • 运行脚本
    使用Python + Flask搭建web服务_第3张图片

你可能感兴趣的:(python,flask,前端)