Analyze Methods
cc_analyze_methodsAnalyze methods in a Python file, optionally filtered by class. Returns parameters, decorators, complexity, and data flow details to help understand code structure.
Instructions
Detailed method analysis of a Python file.
Args:
path (string): Path to the Python file
class_name (string, optional): Only methods of this class
Returns:
Methods with parameters, decorators, complexity, data flow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Path to the Python file | |
| class_name | No | Only analyze this class |