Run programs in the background in IPython
You can start another thread in IPython to run a program in the background.
| bg go() | runs the function go() in another thread |
| jobs[0].status | tells you what’s going on with that job |
| jobs[0].result | the result of the job |
| jobs? | see more help on this part of IPython |
Tags: IPython, IPython help, Python