diff --git a/README.md b/README.md index 0aa0d60..05ebafa 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ + + # 🐣💻 Developing Tools

@@ -26,6 +28,11 @@ These tools ⚒️ are intended to assist developers in identifying performance - [License](#license)

+

+ 🔼 Back to top +

+ + ## Installation ```bash @@ -33,6 +40,11 @@ pip install developing-tools ```

+

+ 🔼 Back to top +

+ + ## Utilization ### Execution Time @@ -54,6 +66,10 @@ too_slow_function() ```
+

+ 🔼 Back to top +

+ ### Retry It The `retryit` decorator allows you to retry a function multiple times in case of failure. The decorator has two parameters: @@ -77,6 +93,11 @@ failing_function() ```
+

+ 🔼 Back to top +

+ + ### Print Parameters The `print_parameters` decorator allows you to print the parameters of a function. The decorator has two parameters: @@ -105,6 +126,10 @@ normal_function(1, 'Hello', c=3, d=4) ```
+

+ 🔼 Back to top +

+ ### Timeout The `timeout` decorator allows you to set a maximum execution time for a function. The decorator has one parameter: @@ -124,6 +149,17 @@ too_slow_function() ```

+

+ 🔼 Back to top +

+ + ## License This project is licensed under the terms of the [MIT license](https://choosealicense.com/licenses/mit/). +

+ +

+ 🔼 Back to top +

+