snowflake.snowpark.DataFrameReader.parquet¶
- DataFrameReader.parquet(path: str) DataFrame[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.23.0/src/snowflake/snowpark/dataframe_reader.py#L527-L542)¶
- Specify the path of the PARQUET file(s) to load. - Parameters:
- path – The stage location of a PARQUET file, or a stage location that has PARQUET files. 
 - Note - When using - DataFrame.select(), quote the column names to select the desired columns. This is needed because converting from PARQUET to class:DataFrame does not capitalize the column names from the original columns and a- DataFrame.select()without quote looks for capitalized column names.- Returns:
- a - DataFramethat is set up to load data from the specified PARQUET file(s) in a Snowflake stage.