{"library":"python-scalpel","title":"Scalpel","description":"Scalpel is a Python program analysis framework for building static analysis tools (e.g., call graph extraction, type inference, SSA construction). The current version is 1.0b0 (pre-release beta). Release cadence is irregular; last updated 2022.","language":"python","status":"active","last_verified":"Fri May 01","install":{"commands":["pip install python-scalpel"],"cli":null},"imports":["from scalpel import Scalpel","from scalpel.call_graph import CallGraph","from scalpel.cfg import CFG"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from scalpel import Scalpel\nfrom scalpel.call_graph import CallGraph\n\nscalpel = Scalpel('path/to/script.py')\ncall_graph = scalpel.analyze_call_graph()\nprint(call_graph.nodes, call_graph.edges)","lang":"python","description":"Analyze a Python file and extract its call graph.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}