doc-architect/doc-architect-core/src/main/java/com/docarchitect/core/scanner/impl/python/FastAPIScanner.java [178:193]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return buildSuccessResult(
            List.of(),           // No components
            List.of(),           // No dependencies
            apiEndpoints,        // API endpoints
            List.of(),           // No message flows
            List.of(),           // No data entities
            List.of(),           // No relationships
            List.of()            // No warnings
        );
    }

    private void parsePythonFile(Path file, List<ApiEndpoint> apiEndpoints) throws IOException {
        List<String> lines = readFileLines(file);
        String componentId = extractModuleName(file);

        for (int i = 0; i < lines.size(); i++) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



doc-architect/doc-architect-core/src/main/java/com/docarchitect/core/scanner/impl/python/FlaskScanner.java [187:202]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return buildSuccessResult(
            List.of(),
            List.of(),
            apiEndpoints,
            List.of(),
            List.of(),
            List.of(),
            List.of()
        );
    }

    private void parsePythonFile(Path file, List<ApiEndpoint> apiEndpoints) throws IOException {
        List<String> lines = readFileLines(file);
        String componentId = extractModuleName(file);

        for (int i = 0; i < lines.size(); i++) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



