requests 封装请求类

本文介绍了一个名为RequestUtil的Python工具类,用于处理网络请求,包括异常处理、日志记录、协议转换,并提供统一的接口便于维护。通过实例展示了如何构造GET和POST请求,以'https://pagead2.googlesyndication.com'为例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

每个请求做异常捕抓,日志记录,协议转换,封装工具方便进行统一维护

新建项目util,main,config包和requirement.txt

RequestUtil.py
import requests

class RequestUtil:

    def __int__(self):
        pass

    def request(self, url, method, headers=None, param=None, content_type=None):
        """
        请求工具类传递的参数
        :param url:
        :param method:
        :param headers:
        :param param:
        :param content_type:
        :return:
        """
        try:
            if method == 'get':
                # .json() 返回的是json的数据
                res = requests.get(url=url, params=param, headers=headers).json()
                return res

            elif method == 'post':
                # 判断content_type,是表单还是json的请求
                if content_type == 'application/json':
                    res = requests.post(url=url, json=param, headers=headers).json()
                    return res
                elif content_type == 'application/x-www-form-urlencoded':
                    res = requests.post(url=url, json=param, headers=headers).json()
                    return res
                else:
                    print("请输入正确的content_type")

            else:
                print("目前只支持get/post")

        except Exception as e:
            print("http请求报错:{0}".format(e))

if __name__ == '__main__':
    url = "https://pagead2.googlesyndication.com/getconfig/sodar?sv=200&tid=gda&tv=r20220607&st=env"
    r = RequestUtil()
    re = r.request(url=url, method='get')
    print(re)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值