Skip to content

Re-run a python script after a few days if it fails [closed]

Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 1 year ago. Improve this question Assuming a script fails and it is captured in a try catch how to run a python script again af…

Using multiprocessing on Image processing

I’m trying to speed up my processing of a PIL.Image, where I divide the image into small parts, search for the most similar image inside a database and then replace the original small part of the image with this found image. This is the described function: Now I wanted to parallelize this function, sinc…