From a0db435f5ee95c646f7eece7d6e76c3b2c94a1c7 Mon Sep 17 00:00:00 2001 From: Krishnasis Date: Sat, 16 Mar 2024 21:27:35 +0100 Subject: [PATCH] Update README.md --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1db4542..fc9069e 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,16 @@ # retry_later -`@retry_later` allows you to execute a function asynchronously in the background and automatically retry it if an exception occurs, up to a specified maximum number of retries. +`@retry_later` allows you to retry the execution of a function asynchronously in the background until it's done. -Why? +### Why? -For example, you can retry sending an email until it's actually sent. +For example, you can retry sending an email until it's sent. ## Installation -For now `git clone` or copy the `retry_later` folder. Will be working on it more. +```bash +pip install retry-later +``` ## Usage