Quickstart
Requirements
Installation
Python Package
Usage
from pathlib import Path
from etiq_copilot.engine.implementations.scanner.code_scanner import DebuggerCodeScanner
from etiq_copilot.engine.implementations.scanner.scan_results import CodeScannerResult
def scan_file(scan_file_path: Path | str) -> CodeScannerResult:
scan_file_path = Path(scan_file_path)
original_code = scan_file_path.read_text(encoding="utf-8")
scanner = DebuggerCodeScanner()
return scanner.scan_code(code_str=original_code)Example Target Script
Example Scan Output
Example Lineage Graph

Last updated