ezzthread

Small decorator library for launching threads


Keywords
threading, thread, decorator, crossplatform
License
MIT
Install
pip install ezzthread==1.0.0

Documentation

ezzthread

Smallest library that every project needs!

It just... Runs your function in new thread with decorator!

pip install ezzthread

Use

from ezzthread import threaded

@threaded
def func():
    print("Printed from new thread!")
func()