I am trying to do a multiprocessing in a python script by importing the below module
from multiprocessing import Process,Manager,Queue
I am trying to run the scripts in the list [1.py,2.py] . During execution one script is successful and other fails both have some dataframe to read .Not sure why it fails .Function used inside the script : func1 :
f=df.where((df[a] >= dat1) & (df[b] <= dat2)) .
df : is a dataframe
I want these scripts to be run one by one and not exit out after one script is succesfull . Any Examples or pointers