Add implementation to read --parquet files.

This commit is contained in:
Florents Tselai 2021-10-29 02:34:37 +03:00
commit 50ec2e49de
5 changed files with 79 additions and 9 deletions

View file

@ -278,3 +278,7 @@ def progressbar(*args, **kwargs):
else:
with click.progressbar(*args, **kwargs) as bar:
yield bar
def pyarrow_tuple_as_py(pyarrow_tuple):
return tuple(map(lambda f: f.as_py(), pyarrow_tuple))