Convert Parquet To CSV in Python with Pandas | Step by Step Tutorial

preview_player
Показать описание
Step by step tutorial on how to convert a single parquet file to a csv file using python with the pandas library. This video covers how to convert the data with without compression and with compression.

Timeline:
00:00 introduction
0:20 Read Parquet file Into Python
1:31 Write Without Compression
3:08 Write with gzip Compression

#python
#pandas
Рекомендации по теме
Комментарии
Автор

thank you so much, this helped me fix an urgent issue at work. subscribed!

aishamuhammed
Автор

Fantastic video! However, how would you convert in the other way around a FOLDER of CSV files to parquet files?

multitaskprueba
Автор

Great video. Although, I am getting this error: ImportError: Unable to find a usable engine; tried using: 'pyarrow', 'fastparquet'.
A suitable version of pyarrow or fastparquet is required for parquet support.
Trying to import the above resulted in these errors:
- Missing optional dependency 'pyarrow'. pyarrow is required for parquet support. Use pip or conda to install pyarrow.
- Missing optional dependency 'fastparquet'. fastparquet is required for parquet support. Use pip or conda to install fastparquet.

oscarandresgarnica
Автор

Hey can you make a video on how to convert a CSV file to an orc file in python

Yush
Автор

Hi! Sorry, i have a question.
I`ve already read my parquet file with pandas and succesfully modified it. But i don`t know how to resafe my modified parquet as a new parquet file. Do you know how to do it?
Thank you

jorgeirai
Автор

Unfortunately, it's not working for complex parquet file.

nivethamurali
Автор

Hi, i got this error
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'read_parquet'

theoopsiedaisiegaisi
Автор

hi i got this error
argument of type 'method' is not iterable

theoopsiedaisiegaisi