requests模块请求和数据解析

1.Python创建接口

flask是python的第三方库,所以需要提前安装pip install flask

url和某个函数的绑定关系,当访问一个url时,会调用函数,函数的返回值会返回到前端

# flask是python开发
from flask import Flask

# 服务
app = Flask(__name__)


# url 调用的函数
def login():
    return 'login success'


# 返回json格式
def home():
    return {'msg': 0, 'data': 'welcome'}


# 返回html格式
def other():
    return '''\
    用户名:<input>
    密码:<input type= 'password'>
    '''


# 添加url
app.add_url_rule('/login', view_func=login)
app.add_url_rule('/', view_func=home)
app.add_url_rule('/other', view_func=other)

# 运行服务
app.run()

运行结果:

2.访问接口

点击运行结果红色框里的链接,跳转到浏览器页面

 在链接后加上/login(/,/other)刷新页面可以看到调用login/home/other函数成功

使用postman来访问接口也是一样的

3.requests

pstman/jmeter/requests/soupui/浏览器:访问接口

requests只是一个http客户端

requests也是python的一个第三方库,所以使用前需要安装pip install requests

import requests

# 发送一个get
response = requests.get('http://127.0.0.1:5000/')
# 获取响应体
print(response.text)  # 字符串
print(response.content)  # bytes 字节,二进制
print(response.json())  # 字典

运行结果:

{"data":"welcome","msg":0}

b'{"data":"welcome","msg":0}\n'
{'data': 'welcome', 'msg': 0}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值