I'm writing an IRC bot in Python, due to the alpha nature of it, it will likely get unexpected errors and exit.
What's the techniques that I can use to make the program run again?
|
|
|||
|
|
|
You can use Your Python script could look something like this:
You could call again So you could write a script which invokes the Python script, gets its return value when it finishes, and relaunches it if the return value is different from 0 (which is what
|
|||
|
|
|
The easiest way is to catch errors, and close the old and open a new instance of the program when you do catch em. Note that it will not always work (in cases it stops working without throwing an error). |
||
|
|
|
|
You can create wrapper using subprocess(http://docs.python.org/library/subprocess.html) which will spawn your application as a child process and track it's execution. |
||
|
|