0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

tenacityを使ってretry処理を書く

Last updated at Posted at 2019-03-15

参考

サンプルコード

import logging
from tenacity import retry, stop_after_attempt, wait_fixed, before_log, RetryError
logger = logging.getLogger(__name__)


class MyException(Exception):
        pass


@retry(stop=stop_after_attempt(3), wait=wait_fixed(1))
def raise_my_exception():
    raise MyException("Fail")


try:
    raise_my_exception()
    print("aiueo1")
except MyException:
    print("aiueo2")
except RetryError:
    print("aiueo3")  # output: aiueo3

import logging
from tenacity import retry, stop_after_attempt, wait_fixed, RetryError
logger = logging.getLogger(__name__)


class MyException(Exception):
        pass


@retry(reraise=True, stop=stop_after_attempt(3), wait=wait_fixed(1))
def raise_my_exception():
    print("test")
    raise MyException("Fail")


try:
    raise_my_exception()
    print("aiueo1")
except MyException:
    print("aiueo2")  # output: aiueo2
except RetryError:
    print("aiueo3")

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?