Metadata-Version: 2.1
Name: utils-functions-plus
Version: 0.0.6
Summary: A set of auxiliary functions
Home-page: https://github.com/fabmax94/utils_plus
Author: Fabio Alexandre
Author-email: famhs@ecomp.poli.br
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Utils Plus

A set of auxiliary functions that are subdivided into:


### Decorators

This module is responsible for grouping the decorator functions

```python
from utils_plus.decorators import timeout

@timeout(20)
def process_test():
    # process
```


