Renaming what will become the core package

This commit is contained in:
Cyber MacGeddon 2024-09-28 20:42:39 +01:00
parent 14d79ef9f1
commit 3ad2801cf2
237 changed files with 3 additions and 1 deletions

View file

@ -1,24 +0,0 @@
#!/usr/bin/env python3
import pyarrow as pa
import pyarrow.csv as pc
import pyarrow.parquet as pq
import pandas as pd
import sys
df = None
for file in sys.argv[1:]:
part = pq.read_table(file).to_pandas()
if df is None:
df = part
else:
df = pd.concat([df, part], ignore_index=True)
if df is not None:
table = pa.Table.from_pandas(df)
pc.write_csv(table, sys.stdout.buffer)