mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-09-24 10:54:12 +02:00
Add implementation to read --parquet files.
This commit is contained in:
parent
fda4dad23a
commit
50ec2e49de
5 changed files with 79 additions and 9 deletions
|
|
@ -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))
|
||||
Loading…
Add table
Add a link
Reference in a new issue