Skip to content

Instantly share code, notes, and snippets.

@jepma
Last active June 14, 2017 08:44
Show Gist options
  • Save jepma/61d8f7451b2440ab078cfa5a14f83a67 to your computer and use it in GitHub Desktop.
Save jepma/61d8f7451b2440ab078cfa5a14f83a67 to your computer and use it in GitHub Desktop.
PYTHON: Parquet example
import pyarrow as pa
import pyarrow.parquet as pq
print("DEMO TIME!")
parquet_file = pq.ParquetFile('example-01.parquet')
print(parquet_file.metadata)
print(parquet_file.schema)
print("END OF DEMO!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment