evaluate_blender_expression
Evaluate a Python expression inside Blender and receive its repr. Use this for quick data lookups, such as checking object counts or scene properties, without writing a full script.
Instructions
Evaluate one Python expression in Blender and return its repr.
A quick lookup that does not need a whole script.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| expression | Yes | A single Python expression, e.g. len(bpy.data.objects) |