263 B
263 B
thread
Smallest library that every project needs!
It just... Runs your function in new thread with decorator!
pip install thread
Use
from thread import threaded
@threaded
def func():
print("Printed from new thread!")
func()