摘要: from retrying import retry def is_request_exception(e): return issubclass(type(e),RequestException) @retry(retry_on_exception=is_request_exception,wra 阅读全文
posted @ 2020-05-26 15:14 凯帅 阅读(230) 评论(0) 推荐(0) 编辑