Create Compound

 1from salome.shaper import model
 2
 3model.begin()
 4partSet = model.moduleDocument()
 5Part_1 = model.addPart(partSet)
 6Part_1_doc = Part_1.document()
 7Box_1 = model.addBox(Part_1_doc, 10, 10, 10)
 8Compound_1_objects = [model.selection("FACE", "Box_1_1/Front"), model.selection("FACE", "Box_1_1/Top"), model.selection("FACE", "Box_1_1/Left")]
 9Compound_1 = model.addCompound(Part_1_doc, Compound_1_objects)
10model.do()
11model.end()

Download this script