mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-28 09:56:22 +02:00
13 lines
156 B
Text
13 lines
156 B
Text
|
|
#!/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)
|
||
|
|
|
||
|
|
|
||
|
|
|