verify
Check Python code before writing to catch references to non-existent packages, methods, and helpers. Get blocked references and the real API for each incorrect usage.
Instructions
Check Python source for references that provably do not exist -- invented packages, invented methods on real libraries, helpers missing from this project. Returns the blocked references and the real API of whatever each one got wrong.
Run this on code you are about to write. It only reports what it can prove absent, so a clean result is meaningful and a block is never a guess.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | The Python source to check. | |
| path | No | Where this code will live. Improves project-local resolution and lets relative imports be checked. |