Extrude radially

Hi,
I need to extrude radially some faces.
Manually, it works with E, S, shift-Z
I copied the line in the “info” area and past it into my code:


bpy.ops.mesh.extrude_region_move(MESH_OT_extrude_region={“use_normal_flip”:False, “use_dissolve_ortho_edges”:False, “mirror”:False}, TRANSFORM_OT_resize={“value”:(1, 1, 1), “orient_type”:‘GLOBAL’, “orient_matrix”:((0, 0, 0), (0, 0, 0), (0, 0, 0)), “orient_matrix_type”:‘GLOBAL’, “constraint_axis”:(False, False, False), “mirror”:False, “use_proportional_edit”:False, “proportional_edit_falloff”:‘SMOOTH’, “proportional_size”:1, “use_proportional_connected”:False, “use_proportional_projected”:False, “snap”:False, “snap_target”:‘CLOSEST’, “snap_point”:(0, 0, 0), “snap_align”:False, “snap_normal”:(0, 0, 0), “gpencil_strokes”:False, “texture_space”:False, “remove_on_cancel”:False, “center_override”:(0, 0, 0), “release_confirm”:False, “use_accurate”:False})

and got:
TypeError: Converting py args to operator properties: : keyword “TRANSFORM_OT_resize” unrecognized

Any idea ?