我正在尝试在Python中实现请求重试
它与.get()
请求的魅力相似,但.post()
请求永远不会重试,无论状态代码如何。我想将其用于.post()
次请求。
我的代码:
from requests.packages.urllib3.util import Retry
from requests.adapters import HTTPAdapter
from requests import Session, exceptions
s = Session()
s.mount('http://', HTTPAdapter(max_retries=Retry(total=2, backoff_factor=1, status_forcelist=[ 500, 502, 503, 504, 521])))
r = s.get('http://httpstat.us/500')
r2 = s.post('http://httpstat.us/500')
因此,.get()
请求会重试,.post()
请求不会重试。
怎么了?
答案 0 :(得分:24)
默认情况下,urllib3 POST
不允许作为重试方法(因为它可能导致多次插入)。你可以强迫它:
Retry(total=3, method_whitelist=frozenset(['GET', 'POST']))
请参阅https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html#urllib3.util.retry.Retry
答案 1 :(得分:0)
您可以使用坚韧。
doc:https://tenacity.readthedocs.io/en/latest/
您可以在登录之前或之后登录
pip install tenacity
import logging
logging.basicConfig(stream=sys.stderr, level=logging.DEBUG)
logger = logging.getLogger(__name__)
@retry(stop=stop_after_attempt(3), before=before_log(logger, logging.DEBUG))
def post_something():
# post
raise MyException("Fail")