Provides python access to calling operators, this includes operators written in C, Python or macros.
Only keyword arguments can be used to pass operator properties.
Operators don’t have return values as you might expect, instead they return a set() which is made up of: {'RUNNING_MODAL', 'CANCELLED', 'FINISHED', 'PASS_THROUGH'}. Common return values are {'FINISHED'} and {'CANCELLED'}, the latter meaning that the operator execution was aborted without making any changes or saving an undo history entry.
Calling an operator in the wrong context will raise a RuntimeError, there is a poll() method to avoid this problem.
Note that the operator ID (bl_idname) in this example is mesh.subdivide, bpy.ops is just the access path for python.
Keywords and Positional Arguments
For calling operators keywords are used for operator properties and positional arguments are used to define how the operator is called.
There are 3 optional positional arguments (documented in detail below).
It is possible to override context members that the operator sees, so that they act on specified rather than the selected or active data, or to execute an operator in the different part of the user interface.
The context overrides are passed as a dictionary, with keys matching the context member names in bpy.context. For example to override bpy.context.active_object, you would pass {'active_object': object} to bpy.types.Context.temp_override.
Note
You will nearly always want to use a copy of the actual current context as basis (otherwise, you’ll have to find and gather all needed data yourself).
# Remove all objects in scene rather than the selected ones.
When calling an operator you may want to pass the execution context.
This determines the context that is given for the operator to run in, and whether invoke() is called or only execute().
EXEC_DEFAULT is used by default, running only the execute() method, but you may want the operator to take user interaction with INVOKE_DEFAULT which will also call invoke() if existing.