Practice free →
Home › Per Blender Python (bpy) docs, the bpy module st…

Per Blender Python (bpy) docs, the bpy module structure groups data in which sub-namespaces?

Abpy.runtime, bpy.editor, bpy.export (only)
Bbpy.python only, with all data under one tree
Cbpy.scene (only), bpy.objects (only), bpy.materials (only)
Dbpy.data (data blocks), bpy.ops (operators), bpy.context (UI state)
Answer & Solution
Correct answer: D. bpy.data (data blocks), bpy.ops (operators), bpy.context (UI state)
Blender Python API: bpy.data = scene's data blocks; bpy.ops = invoke same operators as the UI; bpy.context = active selection. Tools / exporters use these for scripting.
Solve this in the app — Practice practice & 24k+ MCQs →
Related questions