Create Mirror copy

 1from salome.shaper import model
 2
 3model.begin()
 4partSet = model.moduleDocument()
 5Part_1 = model.addPart(partSet)
 6Part_1_doc = Part_1.document()
 7
 8Sketch_1 = model.addSketch(Part_1_doc, model.defaultPlane("XOY"))
 9SketchCircle_1 = Sketch_1.addCircle(25, 25, 11)
10SketchLine_1 = Sketch_1.addLine(9, 78, 78, 9)
11
12SketchConstraintMirror_1 = Sketch_1.addMirror(SketchLine_1.result(), [SketchCircle_1.results()[1]])
13
14model.do()
15model.end()

Download this script