美文网首页
httpbin,提供一个可用的接口

httpbin,提供一个可用的接口

作者: DayBreakL | 来源:发表于2020-12-25 18:11 被阅读0次

    备忘。

    httpbin 用Python + Flask 编写的一个开源项目。

    我们平时跟着学习视频练手时,总是苦于没有可以真实用于写入代码中实验的网址。
    这个可用于我们平时学习时练手。
    官方文档:http://httpbin.org/

    大致用法:

    调用接口:

    import requests
    
    res = requests.get("http://httpbin.org/get")
    print("get请求的响应结果:",res.json())
    
    res1 = requests.post("http://httpbin.org/post")
    print("post请求的响应结果:",res1.json())
    

    结果:

    相关文章

      网友评论

          本文标题:httpbin,提供一个可用的接口

          本文链接:https://www.haomeiwen.com/subject/pcsinktx.html