squirrel.driver.csv

Module Contents

Classes

CsvDriver

Drives the access to a data source.

class squirrel.driver.csv.CsvDriver(url: squirrel.constants.URL, *args, **kwargs)

Bases: squirrel.driver.data_frame.DataFrameDriver

Drives the access to a data source.

Driver to read CSV files into a DataFrame.

Parameters
  • url (URL) – URL to file. Prefix with a protocol like s3:// or gs:// to read from other filesystems. For a full list of accepted types, refer to pandas.read_csv() or dask.dataframe.read_csv().

  • *args – See DataFrameDriver.

  • **kwargs – See DataFrameDriver.

name = csv