摘要: 定义 import requests import logging # These two lines enable debugging at httplib level (requests->urllib3->http.client) # You will see the REQUEST, inc 阅读全文
posted @ 2020-10-04 17:48 该显示昵称已被使用了 阅读(346) 评论(0) 推荐(0) 编辑
摘要: 提醒用户使用了废弃的函数 def deprecated(func): """This decorator is used to mark functions as deprecated. It will result in a warning being emitted when the funct 阅读全文
posted @ 2020-10-04 16:50 该显示昵称已被使用了 阅读(778) 评论(0) 推荐(0) 编辑
摘要: import datetime import json import requests from exception import AsstException #自定义 from log import logger #自定义 class Messenger(object): def __init__ 阅读全文
posted @ 2020-10-04 12:17 该显示昵称已被使用了 阅读(709) 评论(0) 推荐(1) 编辑
摘要: 随便用用1 import logging # logging.basicConfig(level=logging.ERROR, format='%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s:%(message)s') logging. 阅读全文
posted @ 2020-10-04 11:15 该显示昵称已被使用了 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 定义 # -*- coding: utf-8 -*- import os import configparser class Config(object): def __init__(self, config_file='config.ini'): self._path = os.path.join 阅读全文
posted @ 2020-10-04 11:10 该显示昵称已被使用了 阅读(720) 评论(0) 推荐(0) 编辑