pyarrow.csv.open_csv#
- pyarrow.csv.open_csv(input_file,read_options=None,parse_options=None,convert_options=None,MemoryPoolmemory_pool=None)#
Open a streaming reader of CSV data.
Reading using this function is always single-threaded.
- Parameters:
- input_file
str, path or file-like object The location of CSV data. If a string or path, and if it endswith a recognized compressed file extension (e.g. “.gz” or “.bz2”),the data is automatically decompressed when reading.
- read_options
pyarrow.csv.ReadOptions, optional Options for the CSV reader (see pyarrow.csv.ReadOptions constructorfor defaults)
- parse_options
pyarrow.csv.ParseOptions, optional Options for the CSV parser(see pyarrow.csv.ParseOptions constructor for defaults)
- convert_options
pyarrow.csv.ConvertOptions, optional Options for converting CSV data(see pyarrow.csv.ConvertOptions constructor for defaults)
- memory_pool
MemoryPool, optional Pool to allocate RecordBatch memory from
- input_file
- Returns:
On this page

