mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-26 00:46:22 +02:00
12 lines
156 B
Python
Executable file
12 lines
156 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import pyarrow.parquet as pq
|
|
import sys
|
|
|
|
for file in sys.argv[1:]:
|
|
|
|
table = pq.read_table(file).to_pandas()
|
|
print(table)
|
|
|
|
|
|
|