I have tried subsystem and os and both will not work. I would prefer it if they were in 2 separate windows.
My current code is
os.system('cmd.exe /c Bot.py ' + user)
I have also tried
subprocess.Popen(['python', 'Bot.py', user])
and
subprocess.Popen(['python', 'Bot.py', user, '&'])
Bot.py is a irc bot. The bot will connect to the irc but not receive any messages after the connection. The bot works fine if executed alone.