Repository Analysis

saulpw/visidata

A terminal spreadsheet multitool for discovering and arranging data

29.6 Moderate AI signal View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of saulpw/visidata, a Python project with 9,176 GitHub stars. SynthScan v2.0 examined 58,257 lines of code across 484 source files, recording 836 pattern matches distributed across 11 syntactic categories. The overall adjusted score of 29.6 places this repository in the Moderate AI signal band.

The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).

29.6
Adjusted Score
29.6
Raw Score
100%
Time Factor
2026-07-03
Last Push
9.2K
Stars
Python
Language
58.3K
Lines of Code
484
Files
836
Pattern Hits
2026-07-14
Scan Date
0.43
HC Hit Rate

What These Metrics Mean

Adjusted Score
Primary synthetic code indicator. Raw score normalised per 1,000 lines of code and multiplied by the temporal discount factor. This is the definitive comparative metric — use it to rank repositories by AI authorship density.
Raw Score
The unmodified sum of all severity-weighted, context-multiplied pattern match scores before temporal discounting. Reflects the absolute signal strength independent of when the repository was last active.
Time Factor
The temporal discount multiplier (0–100%) applied to the raw score. Repositories last updated before ChatGPT's launch (Nov 2022) receive a 5% factor. Full signal is only assigned to repositories active in the post-adoption era (Jan 2024+).
Pattern Hits
Total count of individual pattern matches across all files and categories. A high hit count with a low score may indicate a very large codebase with isolated AI snippets; a low count with a high score indicates dense, concentrated AI signatures.
HC Hit Rate
High+Critical pattern hits per file, averaged across the repository. This orthogonal signal catches repositories where a few files are densely packed with high-severity AI tells — a strong indicator even when the normalised score appears moderate due to codebase size.
Lines of Code / Files
Total lines and files analysed. The scanner examines 94 file extensions. These denominators are used to normalise the score, enabling fair comparison between repositories of vastly different sizes.

Score History

This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.

Severity Breakdown

Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.

CRITICAL 0HIGH 208MEDIUM 16LOW 612

Directory Score Breakdown

This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.

Pattern Findings

The scanner identified 836 distinct pattern matches across 11 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.

Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.

Cross-Language Confusion208 hits · 1086 pts
SeverityFileLineSnippetContext
HIGHvisidata/indexsheet.py93vd.addCommand('S', 'sheets-stack', 'vd.push(vd.sheetsSheet)', 'open Sheets Stack: join or jump between the active sheetsSTRING
HIGHvisidata/indexsheet.py94vd.addCommand('gS', 'sheets-all', 'vd.allSheetsSheet.reload(); vd.push(vd.allSheetsSheet)', 'open Sheets Sheet: join or STRING
HIGHvisidata/indexsheet.py102IndexSheet.addCommand('gC', 'columns-selected', 'vd.push(ColumnsSheet("all_columns", source=selectedRows))', 'open ColumSTRING
HIGHvisidata/indexsheet.py105SheetsSheet.addCommand('Enter', 'open-row', 'dest=cursorRow; vd.sheets.remove(sheet) if not sheet.precious else None; vdSTRING
HIGHvisidata/plugins.py96BaseSheet.addCommand(None, 'open-plugins', 'vd.push(vd.pluginsSheet)', 'Open Plugins Sheet to manage supported plugins')CODE
HIGHvisidata/sidebar.py235BaseSheet.addCommand('gb', 'open-sidebar', 'sheet.current_sidebar = "" if not hasattr(sheet, "current_sidebar") else sheSTRING
HIGHvisidata/guide.py207BaseSheet.addCommand('', 'open-guide-index', 'vd.push(GuideIndex("VisiData_Guide"))', 'open VisiData guides table of conSTRING
HIGHvisidata/statusbar.py294BaseSheet.addCommand('Ctrl+P', 'open-statuses', 'vd.push(vd.statusHistorySheet)', 'open Status History')CODE
HIGHvisidata/input_history.py55vd.addCommand(None, 'open-input-history', 'vd.push(inputHistorySheet)', 'open sheet with previous inputs')CODE
HIGHvisidata/choose.py35 vd.push(vs)CODE
HIGHvisidata/sheets.py1299Sheet.addCommand('"', 'dup-selected', 'vs=copy(sheet); vs.name += "_selectedref"; vs.reload=lambda vs=vs,rows=selectedRoCODE
HIGHvisidata/sheets.py1300Sheet.addCommand('g"', 'dup-rows', 'vs=copy(sheet); vs.name+="_copy"; vs.rows=list(rows); status("copied "+vs.name); vs.CODE
HIGHvisidata/sheets.py1301Sheet.addCommand('z"', 'dup-selected-deep', 'vs = deepcopy(sheet); vs.name += "_selecteddeepcopy"; vs.rows = vs.async_deCODE
HIGHvisidata/sheets.py1302Sheet.addCommand('gz"', 'dup-rows-deep', 'vs = deepcopy(sheet); vs.name += "_deepcopy"; vs.rows = vs.async_deepcopy(rowsCODE
HIGHvisidata/sheets.py1156 return vd.push(vs)CODE
HIGHvisidata/sheets.py1280 vd.push(vs)CODE
HIGHvisidata/sheets.py1323BaseSheet.addCommand('A', 'open-new', 'vd.push(vd.newSheet("unnamed", 1))', 'Open new empty sheet')CODE
HIGHvisidata/sheets.py1325BaseSheet.addCommand('`', 'open-source', 'vd.push(source)', 'open source sheet')CODE
HIGHvisidata/mainloop.py355 vd.push(vs, load=False)CODE
HIGHvisidata/memory.py45BaseSheet.addCommand('Alt+Shift+M', 'open-memos', 'vd.push(vd.memosSheet)', 'open the Memory Sheet')CODE
HIGHvisidata/pyobj.py266 vd.push(sheet.openRow(r))CODE
HIGHvisidata/pyobj.py274 vd.push(openCell(col, r))CODE
HIGHvisidata/pyobj.py301BaseSheet.addCommand('Ctrl+X', 'pyobj-expr', 'expr=inputPythonExpr(); vd.push(PyobjSheet(expr, source=sheet.evalExpr(expCODE
HIGHvisidata/pyobj.py305BaseSheet.addCommand('zCtrl+X', 'pyobj-expr-row', 'expr = input("eval over current row: ", "expr", completer=CompleteExpCODE
HIGHvisidata/pyobj.py310Sheet.addCommand('Ctrl+Y', 'pyobj-row', 'status(type(cursorRow).__name__); vd.push(openRowPyobj(cursorRowIndex))', 'openCODE
HIGHvisidata/pyobj.py311Sheet.addCommand('zCtrl+Y', 'pyobj-cell', 'status(type(cursorValue).__name__); vd.push(openCellPyobj(cursorCol, cursorRoCODE
HIGHvisidata/pyobj.py312BaseSheet.addCommand('gCtrl+Y', 'pyobj-sheet', 'status(type(sheet).__name__); vd.push(PyobjSheet(sheet.name+"_sheet", soCODE
HIGHvisidata/pyobj.py314Sheet.addCommand('', 'open-row-basic', 'vd.push(TableSheet.openRow(sheet, cursorRow))', 'dive into current row as basic CODE
HIGHvisidata/pyobj.py315Sheet.addCommand('Enter', 'open-row', 'vd.push(openRow(cursorRow)) if cursorRow is not None else vd.fail("no row to openCODE
HIGHvisidata/pyobj.py316Sheet.addCommand('zEnter', 'open-cell', 'vd.push(openCell(cursorCol, cursorRow))', 'open sheet with copies of rows referCODE
HIGHvisidata/splitwin.py14 vd.push(undersheet, pane=pane)CODE
HIGHvisidata/_open.py218BaseSheet.addCommand('o', 'open-file', 'vd.push(openSource(inputPath("open: "), create=True))', 'Open file or URL')CODE
HIGHvisidata/_open.py219TableSheet.addCommand('zo', 'open-cell-file', 'cd=cursorDisplay; (vd.push(openSource(cd) if cd else fail("no path given"CODE
HIGHvisidata/textsheet.py122BaseSheet.addCommand('Ctrl+E', 'error-recent', 'recentErrorsSheet.reload(); vd.push(recentErrorsSheet) if vd.lastErrors STRING
HIGHvisidata/textsheet.py123BaseSheet.addCommand('gCtrl+E', 'errors-all', 'vd.push(vd.allErrorsSheet)', 'view traceback for most recent errors')STRING
HIGHvisidata/textsheet.py125Sheet.addCommand('zCtrl+E', 'error-cell', 'vd.push(ErrorCellSheet(sheet.name+"_cell_error", sourceSheet=sheet, source=geSTRING
HIGHvisidata/graph.py377Sheet.addCommand('.', 'plot-column', 'vd.push(GraphSheet(sheet.name, "graph", source=sheet, sourceRows=rows, xcols=keyCoCODE
HIGHvisidata/graph.py378Sheet.addCommand('g.', 'plot-numerics', 'vd.push(GraphSheet(sheet.name, "graph", source=sheet, sourceRows=rows, xcols=keCODE
HIGHvisidata/graph.py379ColumnsSheet.addCommand('g.', 'plot-source-selected', 'vd.push(GraphSheet(sheet.source[0].name, "graph", source=source[0CODE
HIGHvisidata/deprecated.py107 return vd.push(vs)CODE
HIGHvisidata/shell.py62 vd.push(TextSheet(' '.join(args), source=lines))CODE
HIGHvisidata/shell.py279DirSheet.addCommand('`', 'open-dir-parent', 'vd.push(openSource(source.parent if source.resolve()!=Path(".").resolve() eSTRING
HIGHvisidata/shell.py280BaseSheet.addCommand('', 'open-dir-current', 'vd.push(vd.currentDirSheet)', 'open Directory Sheet: browse properties of STRING
HIGHvisidata/shell.py284DirSheet.addCommand('Enter', 'open-row-file', 'vd.push(openSource(cursorRow or fail("no row"), filetype="dir" if cursorRSTRING
HIGHvisidata/shell.py285DirSheet.addCommand('gEnter', 'open-rows', 'for r in selectedRows: vd.push(openSource(r))', 'open selected files as new STRING
HIGHvisidata/shell.py292DirSheet.addCommand('zEnter', 'open-row-filetype', 'ft = input("filetype: ", type="filetype", value=options.filetype or STRING
HIGHvisidata/shell.py314 vd.push(vs, pane=2)STRING
HIGHvisidata/movement.py107 vd.push(matches[0])CODE
HIGHvisidata/movement.py140 BaseSheet.addCommand(f'Alt+{str(i)[-1]}', f'jump-sheet-{i}', f'vd.push(*(list(s for s in allSheets if s.shortcut==stCODE
HIGHvisidata/movement.py143 BaseSheet.addCommand('', f'jump-sheet-{i}', f'vd.push(*(list(s for s in allSheets if s.shortcut==str({i})) or fail("CODE
HIGHvisidata/movement.py207BaseSheet.addCommand('Ctrl+^', 'jump-prev', 'vd.activeStack[1:] or fail("no previous sheet"); vd.push(vd.activeStack[1])CODE
HIGHvisidata/movement.py208BaseSheet.addCommand('gCtrl+^', 'jump-first', 'vd.push(vd.activeStack[-1])', 'jump to first sheet')CODE
HIGHvisidata/threads.py530BaseSheet.addCommand('Ctrl+T', 'threads-all', 'vd.push(vd.allThreadsSheet)', 'open Threads for all sheets')STRING
HIGHvisidata/threads.py531BaseSheet.addCommand('zCtrl+T', 'threads-sheet', 'vd.push(ThreadsSheet("threads", source=sheet.currentThreads))', 'open STRING
HIGHvisidata/optionssheet.py91BaseSheet.addCommand('O', 'options-global', 'vd.push(vd.globalOptionsSheet)', 'open Options Sheet: edit global options (CODE
HIGHvisidata/optionssheet.py93BaseSheet.addCommand('zO', 'options-sheet', 'vd.push(sheet.optionsSheet)', 'open Options Sheet: edit sheet options (applCODE
HIGHvisidata/macros.py242Sheet.addCommand('gm', 'macro-sheet', 'vd.push(vd.macrosheet)', 'open an index of existing macros')STRING
HIGHvisidata/freqtbl.py202FreqTableSheet.addCommand('', 'open-preview', 'vd.push(FreqTablePreviewSheet(sheet.name, "preview", source=sheet, columnSTRING
HIGHvisidata/freqtbl.py204Sheet.addCommand('F', 'freq-col', 'vd.push(makeFreqTable(sheet, cursorCol))', 'open Frequency Table grouped on current cSTRING
HIGHvisidata/freqtbl.py205Sheet.addCommand('gF', 'freq-keys', 'vd.push(makeFreqTable(sheet, *keyCols)) if keyCols else vd.fail("there are no key cSTRING
148 more matches not shown…
Unused Imports248 hits · 248 pts
SeverityFileLineSnippetContext
LOWvisidata/plugins.py7CODE
LOWvisidata/plugins.py8CODE
LOWvisidata/plugins.py10CODE
LOWvisidata/plugins.py10CODE
LOWvisidata/plugins.py10CODE
LOWvisidata/plugins.py10CODE
LOWvisidata/plugins.py85CODE
LOWvisidata/plugins.py86CODE
LOWvisidata/sidebar.py1CODE
LOWvisidata/sidebar.py1CODE
LOWvisidata/sidebar.py6CODE
LOWvisidata/guide.py10CODE
LOWvisidata/_urlcache.py42CODE
LOWvisidata/statusbar.py10CODE
LOWvisidata/color.py3CODE
LOWvisidata/color.py4CODE
LOWvisidata/color.py7CODE
LOWvisidata/color.py7CODE
LOWvisidata/color.py8CODE
LOWvisidata/sheets.py5CODE
LOWvisidata/sheets.py7CODE
LOWvisidata/sheets.py7CODE
LOWvisidata/sheets.py7CODE
LOWvisidata/sheets.py8CODE
LOWvisidata/mainloop.py5CODE
LOWvisidata/mainloop.py9CODE
LOWvisidata/mainloop.py9CODE
LOWvisidata/tuiwin.py1CODE
LOWvisidata/fuzzymatch.py14CODE
LOWvisidata/memory.py1CODE
LOWvisidata/memory.py1CODE
LOWvisidata/pyobj.py3CODE
LOWvisidata/_open.py3CODE
LOWvisidata/_open.py5CODE
LOWvisidata/textsheet.py6CODE
LOWvisidata/graph.py1CODE
LOWvisidata/graph.py4CODE
LOWvisidata/__init__.py29CODE
LOWvisidata/__init__.py31CODE
LOWvisidata/__init__.py32CODE
LOWvisidata/__init__.py40CODE
LOWvisidata/__init__.py42CODE
LOWvisidata/__init__.py44CODE
LOWvisidata/__init__.py143CODE
LOWvisidata/__init__.py154CODE
LOWvisidata/stored_list.py3CODE
LOWvisidata/movement.py3CODE
LOWvisidata/menu.py1CODE
LOWvisidata/menu.py4CODE
LOWvisidata/menu.py8CODE
LOWvisidata/aggregators.py9CODE
LOWvisidata/threads.py11CODE
LOWvisidata/threads.py11CODE
LOWvisidata/utils.py2CODE
LOWvisidata/utils.py4CODE
LOWvisidata/macros.py3CODE
LOWvisidata/macros.py6CODE
LOWvisidata/macros.py7CODE
LOWvisidata/macros.py7CODE
LOWvisidata/cmdlog.py1CODE
188 more matches not shown…
Deep Nesting169 hits · 168 pts
SeverityFileLineSnippetContext
LOWsetup.py35CODE
LOWvisidata/save.py40CODE
LOWvisidata/sidebar.py92CODE
LOWvisidata/guide.py168CODE
LOWvisidata/choose.py42CODE
LOWvisidata/color.py224CODE
LOWvisidata/color.py126CODE
LOWvisidata/sheets.py1172CODE
LOWvisidata/sheets.py113CODE
LOWvisidata/sheets.py682CODE
LOWvisidata/sheets.py849CODE
LOWvisidata/sheets.py934CODE
LOWvisidata/mainloop.py75CODE
LOWvisidata/mainloop.py125CODE
LOWvisidata/mainloop.py174CODE
LOWvisidata/mainloop.py264CODE
LOWvisidata/fuzzymatch.py97CODE
LOWvisidata/fuzzymatch.py111CODE
LOWvisidata/fuzzymatch.py184CODE
LOWvisidata/fuzzymatch.py377CODE
LOWvisidata/pyobj.py183CODE
LOWvisidata/_open.py98CODE
LOWvisidata/_open.py205CODE
LOWvisidata/graph.py100CODE
LOWvisidata/graph.py147CODE
LOWvisidata/stored_list.py22CODE
LOWvisidata/movement.py71CODE
LOWvisidata/menu.py165CODE
LOWvisidata/menu.py261CODE
LOWvisidata/menu.py412CODE
LOWvisidata/menu.py263CODE
LOWvisidata/aggregators.py303CODE
LOWvisidata/threads.py352CODE
LOWvisidata/threads.py410CODE
LOWvisidata/form.py60CODE
LOWvisidata/wrappers.py98CODE
LOWvisidata/macros.py94CODE
LOWvisidata/macros.py182CODE
LOWvisidata/cmdlog.py331CODE
LOWvisidata/settings.py482CODE
LOWvisidata/settings.py26CODE
LOWvisidata/settings.py95CODE
LOWvisidata/settings.py209CODE
LOWvisidata/mouse.py94CODE
LOWvisidata/_input.py372CODE
LOWvisidata/_input.py552CODE
LOWvisidata/_input.py175CODE
LOWvisidata/_input.py249CODE
LOWvisidata/selection.py187CODE
LOWvisidata/hint.py12CODE
LOWvisidata/ddwplay.py83CODE
LOWvisidata/main.py181CODE
LOWvisidata/main.py288CODE
LOWvisidata/cliptext.py71CODE
LOWvisidata/cliptext.py111CODE
LOWvisidata/cliptext.py139CODE
LOWvisidata/cliptext.py246CODE
LOWvisidata/cliptext.py332CODE
LOWvisidata/cliptext.py457CODE
LOWvisidata/pivot.py125CODE
109 more matches not shown…
Excessive Try-Catch Wrapping128 hits · 135 pts
SeverityFileLineSnippetContext
LOWvisidata/save.py62 except Exception as e:CODE
LOWvisidata/save.py80 except Exception:CODE
LOWvisidata/basesheet.py217 except Exception as e:CODE
LOWvisidata/sidebar.py128 except Exception as e:CODE
LOWvisidata/statusbar.py120 except Exception as e:CODE
LOWvisidata/color.py91 except Exception:STRING
LOWvisidata/color.py167 except Exception:CODE
MEDIUMvisidata/color.py88def setup(self):CODE
LOWvisidata/sheets.py242 except Exception as e:CODE
LOWvisidata/sheets.py925 except Exception as e:CODE
LOWvisidata/mainloop.py30 except Exception as e:CODE
LOWvisidata/mainloop.py39 except Exception as e:CODE
LOWvisidata/mainloop.py224 except Exception as e:CODE
LOWvisidata/mainloop.py245 except Exception as e: #2859CODE
LOWvisidata/mainloop.py273 except Exception as e:CODE
MEDIUMvisidata/mainloop.py264def _playNextQueuedCommand(vd, sheet):CODE
LOWvisidata/pyobj.py221 except Exception:CODE
LOWvisidata/_open.py79 except Exception as e:CODE
LOWvisidata/graph.py123 except Exception as e:CODE
LOWvisidata/deprecated.py217 except Exception as e:CODE
MEDIUMvisidata/deprecated.py214def __exit__(self, exc_type, exc_value, exc_traceback):CODE
LOWvisidata/shell.py107 except Exception as e:CODE
LOWvisidata/shell.py350 except Exception as e:STRING
MEDIUMvisidata/shell.py98def calcValue(self, row):CODE
LOWvisidata/movement.py83 except Exception:CODE
LOWvisidata/aggregators.py39 except Exception:STRING
LOWvisidata/aggregators.py94 except Exception as e:STRING
LOWvisidata/threads.py275 except Exception as e:CODE
LOWvisidata/threads.py287 except Exception as e:CODE
LOWvisidata/form.py92 except Exception as e:CODE
LOWvisidata/motd.py28 except Exception:CODE
MEDIUMvisidata/motd.py22def domotd(vd):CODE
LOWvisidata/utils.py82 except Exception:CODE
LOWvisidata/utils.py97 except Exception:CODE
LOWvisidata/utils.py105 except Exception:CODE
LOWvisidata/utils.py118 except Exception:CODE
LOWvisidata/utils.py125 except Exception:CODE
LOWvisidata/utils.py192 except Exception:CODE
MEDIUMvisidata/utils.py22def __getattr__(self, k):CODE
MEDIUMvisidata/utils.py189def get_value(self, key, args, kwargs):CODE
LOWvisidata/wrappers.py94 except Exception:CODE
LOWvisidata/wrappers.py115 except Exception as e:CODE
LOWvisidata/cmdlog.py292 except Exception as e:CODE
LOWvisidata/cmdlog.py310 except Exception as e:CODE
LOWvisidata/cmdlog.py353 except Exception as e:CODE
LOWvisidata/cmdlog.py445 except Exception:CODE
LOWvisidata/modify.py186 except Exception as e:CODE
LOWvisidata/modify.py214 except Exception:CODE
LOWvisidata/modify.py232 except Exception as e:CODE
LOWvisidata/modify.py254 except Exception as e:CODE
LOWvisidata/settings.py450 except Exception as e:CODE
LOWvisidata/settings.py502 except Exception as e:CODE
LOWvisidata/settings.py511 except Exception as e:CODE
LOWvisidata/settings.py525 except Exception as e:CODE
LOWvisidata/search.py104 except Exception as e:STRING
LOWvisidata/search.py122 except Exception as e:STRING
LOWvisidata/_input.py330 except Exception:CODE
LOWvisidata/selection.py135 except Exception as e:CODE
LOWvisidata/selection.py198 except Exception:CODE
LOWvisidata/hint.py31 except Exception as e:CODE
68 more matches not shown…
Hyper-Verbose Identifiers51 hits · 48 pts
SeverityFileLineSnippetContext
LOWvisidata/experimental/daw/tests/test_vdaw.py29def test_bulk_combine_groups_by_speaker(minisheet):CODE
LOWvisidata/experimental/daw/tests/test_vdaw.py40def test_bulk_combine_save_preserves_sourceaudio(daw, minisheet, tmp_path):CODE
LOWvisidata/experimental/daw/tests/test_vdaw.py54def test_discovered_audio_overrides_missing_sourceaudio(daw, tmp_path):CODE
LOWvisidata/features/condfmt.py187def test_condfmt_bare_column_name(vd): #3061STRING
LOWvisidata/features/condfmt.py200def test_condfmt_value_binding(vd): #3061STRING
LOWvisidata/features/condfmt.py224def test_condfmt_row_binding_string_column(vd): #3061STRING
LOWvisidata/features/condfmt.py237def test_condfmt_silent_eval_error(vd): #3061STRING
LOWvisidata/features/condfmt.py255def test_condfmt_color_option_name(vd): #3061STRING
LOWvisidata/features/condfmt.py266def test_condfmt_value_is_typed_not_wrapper(vd): #3061STRING
LOWvisidata/tests/test_editor.py25 def test_trailing_newlines_trimmed(self, tmp_path, monkeypatch):CODE
LOWvisidata/tests/test_editor.py30 def test_unchanged_roundtrips(self, tmp_path, monkeypatch):CODE
LOWvisidata/tests/test_fixed_width.py10 def test_data_with_internal_spaces(self): #2265CODE
LOWvisidata/tests/test_fixed_width.py34 def test_right_justified_headers(self): #3029CODE
LOWvisidata/tests/test_cliptext.py75 def test_clipstr_wide_truncator(self, s, w, clippeds, clippedw):CODE
LOWvisidata/tests/test_cliptext.py101 def test_clipstr_empty_truncator(self, s, w, clippeds, clippedw):CODE
LOWvisidata/tests/test_cliptext.py151 def test_clipstr_start_truncator(self, s, w, clippeds, clippedw):CODE
LOWvisidata/tests/test_cliptext.py257 def test_truncate_markup_middle(self, s, dispw, clipped):CODE
LOWvisidata/tests/test_cliptext.py286 def test_wraptext_color_spans_lines(self, text, width, expected):CODE
LOWvisidata/tests/test_cliptext.py300 def test_wraptext_escaped_literals(self, text, width, expected):CODE
LOWvisidata/tests/test_open.py5 def test_filetype_overrides_url_scheme(self):CODE
LOWvisidata/tests/test_commands.py136 def test_command_execstrs_compile(self):CODE
LOWvisidata/tests/test_path.py40 def test_iterdir_yields_visidata_paths(self): # #2188CODE
LOWvisidata/tests/test_path.py45 def test_name_returns_full_filename(self): # #2188CODE
LOWvisidata/tests/test_path.py57 def test_repeatfile_bytesiowrapper(self): # #2829CODE
LOWvisidata/tests/test_path.py64 def test_repeatfile_io_interface(self): # #3097CODE
LOWvisidata/tests/test_csv.py14def test_csv_skips_blank_lines(tmp_path):CODE
LOWvisidata/tests/test_csv.py23def test_csv_keeps_row_of_empty_values(tmp_path):CODE
LOWvisidata/tests/test_cache.py25 def test_undo_reverts_cached_cell(self):CODE
LOWvisidata/apps/galcon/galcon-server.py542def generate_map_rclogo_fixed(width, height, num_planets, distancefunc):CODE
LOWvisidata/loaders/f5log.py280 def split_audit_bigip_tmsh_audit(msg):CODE
LOWvisidata/loaders/f5log.py288 def split_audit_scriptd_run_script(msg):CODE
LOWvisidata/loaders/f5log.py296 def split_audit_mcpd_mcp_error(msg):CODE
LOWvisidata/loaders/f5log.py354 def split_ltm_pool_mon_status(msg):CODE
LOWvisidata/loaders/f5log.py406 def split_ltm_poolnode_mon_abled(msg):CODE
LOWvisidata/loaders/f5log.py419 def split_ltm_pool_has_no_avail_mem(msg):CODE
LOWvisidata/loaders/f5log.py428 def split_ltm_pool_has_avail_mem(msg):CODE
LOWvisidata/loaders/f5log.py472 def split_ltm_rule_missing_datagroup(msg):CODE
LOWvisidata/loaders/f5log.py513 def split_ltm_connection_error(msg):CODE
LOWvisidata/loaders/f5log.py545 def split_ltm_virtual_address_status_or_irule_profile_err(msg):CODE
LOWvisidata/loaders/f5log.py566 def split_ltm_ssl_handshake_fail(msg):CODE
LOWvisidata/loaders/f5log.py628 def split_ltm_inet_port_exhaust(msg):CODE
LOWvisidata/loaders/f5log.py645 def split_ltm_conn_limit_reached(msg):CODE
LOWvisidata/loaders/f5log.py670 def split_ltm_syncookie_threshold(msg):CODE
LOWvisidata/loaders/f5log.py709 def split_ltm_dns_failed_xfr_rcode(msg):CODE
LOWvisidata/loaders/f5log.py735 def split_ltm_dns_handling_notify(msg):CODE
LOWvisidata/loaders/f5log.py762 def split_ltm_dns_ignoring_tfer(msg):CODE
LOWvisidata/loaders/f5log.py772 def split_ltm_http_process_state(msg):CODE
LOWvisidata/loaders/f5log.py836 def split_ltm_http_header_exceeded(msg):CODE
LOWvisidata/loaders/f5log.py897 def split_gtm_monitor_instance(msg):CODE
LOWvisidata/loaders/f5log.py922 def split_gtm_syncgroup_change(msg):CODE
LOWvisidata/loaders/f5log.py941 def split_tmm_address_conflict(msg):CODE
Over-Commented Block12 hits · 12 pts
SeverityFileLineSnippetContext
LOWvisidata/_types.py21COMMENT
LOWvisidata/fuzzymatch.py21scoreGapStart = -3COMMENT
LOWvisidata/loaders/pandas_freqtbl.py121 )[_pivot_count_column].sort_values(ascending=False, kind="mergesort")COMMENT
LOWvisidata/loaders/arrow.py41 pa.lib.Type_TIMESTAMP: date,COMMENT
LOWvisidata/loaders/unzip_http.py1#!/usr/bin/env python3COMMENT
LOWtests/test-options-precedence.sh1#!/usr/bin/env bashCOMMENT
LOWtests/test-save.sh1#!/usr/bin/env bashCOMMENT
LOWtests/test-dirsheet.sh1#!/usr/bin/env bashCOMMENT
LOWtests/test-options-config.sh1#!/usr/bin/env bashCOMMENT
LOWtests/test-url.sh1#!/usr/bin/env bashCOMMENT
LOWdocs/api/conf.py1# Configuration file for the Sphinx documentation builder.COMMENT
LOWdev/test.sh1#!/usr/bin/env bashCOMMENT
Modern Structural Boilerplate9 hits · 9 pts
SeverityFileLineSnippetContext
LOWvisidata/color.py10__all__ = ['ColorAttr', 'colors', 'update_attr', 'ColorMaker', 'rgb_to_attr', 'css_to_xterm256', 'xterm256_to_rgb', 'rgbCODE
LOWvisidata/mainloop.py11__all__ = ['ReturnValue', 'run']CODE
LOWvisidata/vdobj.py6__all__ = ['ENTER', 'ALT', 'ESC', 'asyncthread', 'VisiData']CODE
LOWvisidata/utils.py8__all__ = ['AlwaysDict', 'AttrDict', 'DefaultAttrDict', 'moveListItem', 'namedlist', 'classproperty', 'MissingAttrFormatCODE
LOWvisidata/ddwplay.py6__all__ = ['Animation', 'AnimationMgr']CODE
LOWvisidata/extensible.py4__all__ = ['Extensible', 'cache', 'drawcache', 'drawcache_property']CODE
LOWvisidata/apps/vdsql/__about__.py1__all__ = ['__title__', '__author__', '__version__', '__description__', '__license__', '__copyright__']CODE
LOWvisidata/loaders/postgres.py6__all__ = ['openurl_postgres', 'openurl_postgresql', 'openurl_rds', 'PgTable', 'PgTablesSheet']CODE
LOWvisidata/loaders/scrape.py3__all__=[ 'SelectorColumn', 'soupstr' ]CODE
AI Slop Vocabulary4 hits · 9 pts
SeverityFileLineSnippetContext
LOWvisidata/main.py230 # don't change the stack order -- just return the sheet for cursor moves.COMMENT
LOWvisidata/pivot.py218 # (more bins than int vals) or (if bins are of width 1), just use the vals as binsCOMMENT
MEDIUMtests/test-save.sh33# on exit so the vdx golden harness's `rm -f` cleanup does not warn on itCOMMENT
MEDIUMtests/test-dirsheet.sh14# golden harness (which cleans output with `rm -f`) does not warn on directoriesCOMMENT
Dead Code2 hits · 4 pts
SeverityFileLineSnippetContext
MEDIUMvisidata/experimental/daw/vdaw.py100CODE
MEDIUMvisidata/loaders/html.py95CODE
AI Structural Patterns4 hits · 3 pts
SeverityFileLineSnippetContext
LOWvisidata/sheets.py966CODE
LOWvisidata/sort.py70CODE
LOWvisidata/_input.py372CODE
LOWvisidata/loaders/f5log.py86CODE
Redundant / Tautological Comments1 hit · 2 pts
SeverityFileLineSnippetContext
LOWvisidata/features/graph_zoom_y.py18 # Check if the point is within the current x rangeCOMMENT