Python 学习笔记 102

作者: 夜羽萧轩 | 来源:发表于2020-01-29 21:29 被阅读0次

    python request

    请求头 req

    req.add_header()

    1.使用add_header()添加报头

    作用 通过这个功能添加请求体报头

    2.req.add_unredirected_header

    添加未重定向的报头

    Request.add_unredirected_header(key, header)
    两个参数 key,header
    涉及到携带cookies的访问 具体参考
    https://www.cnblogs.com/miaoxiaonao/p/8631561.html
    转 → python http 模组 学习

    3.req.data

    无特殊操作 pass

    data代表请求得到的数据 用于进一步处理
    一般无特殊操作
    https://www.cnblogs.com/wxcx/p/8615887.html

    4.req.full_url

    获取请求的长网址

    一般带有http为直接链接 eg. https://www.dawenxue.net

    5.req.host

    获取请求的主机

    无http标识的主机名 eg. 'www.dawenxue.net
    host&url 区别 → 具体请参考https://blog.csdn.net/u012111465/article/details/79779550

    6.req.type

    获取请求类型 eg.返回https


    以上为自学内容
    未完待续
    2020年1月19日23:03:59

    相关文章

      网友评论

        本文标题:Python 学习笔记 102

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