Files
ezzthread/README.md
2022-04-15 14:07:06 +03:00

269 B

thread

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()