I want to be able to start a process and then be able to kill it afterwards
Have a look at the subprocess module. You can also use low-level primitives like fork() via the os module.
fork()
os