Just use ampersand (&) to start the Python process in the background. Python is already running in a separate process from the BASH script, so saying that to run it "in a separate thread" does not make much sense - I assume that you just want it to run in the background:
Please note that the above may cause the text to be printed on the console. You can work around this using redirection to redirect both stdout and stderr to a file. For instance:
source share