Create Axis by cylinder
1from salome.shaper import model
2
3model.begin()
4partSet = model.moduleDocument()
5Part_1 = model.addPart(partSet)
6Part_1_doc = Part_1.document()
7Cylinder_1 = model.addCylinder(Part_1_doc, model.selection("VERTEX", "PartSet/Origin"), model.selection("EDGE", "PartSet/OZ"), 5, 10)
8Axis_4 = model.addAxis(Part_1_doc, model.selection("FACE", "Cylinder_1_1/Face_1"))
9model.do()
10model.end()