I am looking to make a python script be unique in the sense that it can only run once at a time. For example if I run the script and open another session of the same script a second time and the first session is still running, then the second session will just exit and do nothing. Anyone knows how I could implement this?
feedback
|
|
Thanks all for pointing me in the right direction. This is the solution I picked: http://code.activestate.com/recipes/474070/ | |||
|
feedback
|
|
Already answered here. | |||||
feedback
|
|
One poor man's solution is to use a file based lock. If you open a file using os.open(), there is a flag that allows an exclusive lock on the file. See this for reference. | |||
|
feedback
|
|
Never written python before, but this is what I've just implemented in mycheckpoint, to prevent it being started twice or more by crond:
| ||||
|
feedback
|