mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-28 09:56:22 +02:00
Tidy closedown
This commit is contained in:
parent
2db050fe93
commit
de3525371c
5 changed files with 38 additions and 5 deletions
12
scripts/dump-parquet
Executable file
12
scripts/dump-parquet
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
#!/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)
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue