Metadata-Version: 2.1
Name: tmktthreader
Version: 1.0.0
Summary: 
License: apache 2.0
Author: ladettanguy
Author-email: sti2dlab.ladettanguy@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

# TMKTThreader

## How to install it

```sh
pip install tmktthreader
```

## How to import it

```py
from tmktthreader import Threader
```

## How to use it

```py
@Threader
def my_func(*args, **kwargs):
    # do some stuff
    pass

my_func(myargs, mykwargs="")
```

> your function going to be a thread

> the function call return a Thread from ```threading```. So you can .join() it

```py
t = my_func(*args, **kwargs)
t.join()
```
