Create Length constraint

 1from salome.shaper import model
 2
 3model.begin()
 4partSet = model.moduleDocument()
 5Part_1 = model.addPart(partSet)
 6Part_1_doc = Part_1.document()
 7Sketch_1 = model.addSketch(Part_1_doc, model.defaultPlane("XOY"))
 8SketchLine_1 = Sketch_1.addLine(14.6, 14.2, 59.4, 61.9)
 9SketchLine_1.result().setColor(225, 0, 0)
10SketchConstraintLength_1 = Sketch_1.setLength(SketchLine_1.result(), 65.5)
11model.do()
12model.end()

Download this script