threading.Thread(target=some_callable_function).start()
or if you wish to pass arguments,
threading.Thread(target=some_callable_function,
args=(tuple, of, args),
kwargs={'dict': 'of', 'keyword': 'args'},
).start()
threading.Thread(target=some_callable_function).start()
or if you wish to pass arguments,
threading.Thread(target=some_callable_function,
args=(tuple, of, args),
kwargs={'dict': 'of', 'keyword': 'args'},
).start()