A simple Python library to analyze errors and provide explanations and fixes.
- Detects common Python errors
- Provides simple explanations
- Suggests fixes
- Returns structured output
from devhelper import DebugHelper
dh = DebugHelper()
try:
l = [1, 2, 3]
print(l[5])
except Exception as e:
print(dh.analyze(e))