I\'m having trouble finding a library that allows Parquet files to be written using Python. Bonus points if I can use Snappy or a similar compression mechanism in conjunction wi
fastparquet does have write support, here is a snippet to write data to a file
from fastparquet import write write('outfile.parq', df)