This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import typing as t | |
import datetime as dt | |
from asyncio import sleep | |
from functools import wraps | |
from aiologger import Logger | |
__all__ = ['exception_backoff'] | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def calculate_deposit( | |
month: int, | |
iterations: int, | |
start: int, | |
interest_deposit: float, | |
) -> None: | |
""" | |
Расчет вклада с капитализацией процента. Пополнение вклада происходит после первой итерации | |
:param month: Срок вложения |
OlderNewer