You are viewing a single comment's thread from:
RE: Learning Python with Steem - The Winfrey Bot
I just copied all that from here:
This is the threading bit:
my_new_thread= threading.Thread(name=anything, target=my_new_function)
my_new_thread.start()
dev my_new_function():
do cool stuff
That's it.