Archivo keys.py para python
Buen día amigos pues como les cuento encontré un archivo de keys.py para manejar el teclado en pyton. import bpy import os def kmi_props_setattr(kmi_props, attr, value): try: setattr(kmi_props, attr, value) except AttributeError: print("Warning: property '%s' not found in keymap item '%s'" % (attr, kmi_props.__class__.__name__)) except Exception as e: print("Warning: %r" % e) wm = bpy.context.window_manager kc = wm.keyconfigs.new(os.path.splitext(os.path.basename(__file__))[0]) # Map 3D View km = kc.keymaps.new('3D View', space_type='VIEW_3D', region_type='WINDOW', modal=False) kmi = km.keymap_items.new('view3d.manipulator', 'LEFTMOUSE', 'PRESS', shift=True) kmi_props_setattr(kmi.properties, 'release_confirm', True) kmi_props_setattr(kmi.properties, 'use_accurate', False) kmi_props_setattr(kmi.properties, 'use_planar_constraint',