MCPcopy Index your code
hub / github.com/pathwaycom/pathway / table_to_legacy

Function table_to_legacy

python/pathway/tests/test_api.py:26–34  ·  view source on GitHub ↗
(scope, table, column_count)

Source from the content-addressed store, hash-verified

24
25
26def table_to_legacy(scope, table, column_count):
27 universe = scope.table_universe(table)
28 return scope.table(
29 universe,
30 [
31 scope.table_column(universe, table, column_path.ColumnPath((i,)))
32 for i in range(column_count)
33 ],
34 )
35
36
37def static_table_from_md(scope, txt, ptr_columns=(), legacy=True):

Callers 2

static_table_from_pandasFunction · 0.85
buildFunction · 0.85

Calls 1

tableMethod · 0.45

Tested by

no test coverage detected