Панды разделили DataFrame на куски с условием

import numpy as np

np.split(df, *np.where(df['column'] == condition))
Anxious Axolotl