Metadata-Version: 2.1
Name: rousquille-tools
Version: 0.1.0
Summary: My personal toolbox
Author: Fabien ROSSA
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

# Rousquille's tools

My personal toolbox 🛠

## Python 🐍

<details><summary>Measurement of the time used by a function</summary>
<p>

```py
import time
from rousquille_tools.decorators import time_def


@time_def
def func1():
    time.sleep(5)
```
Result:
```py
>>> func1()
[time_def] Function: func1 Time: 5.0s
```


</p>
</details>



