brite_etl.core.io.frame_sources

Options for sources to use when fetching data for dataframes.

Classes

  • BriteDataSource: Use BriteDataFrame or PreparedDataFrame to fetch dataframes
  • CsvSource: Use pandas.read_csv() to fetch dataframes
class BriteDataSource(source)[source]

Use BriteDataFrame or PreparedDataFrame to fetch dataframes

This is a simple wrapper that will call .get_dataframe() on the passed class to retrieve the dataframes.

Inheritance

Inheritance diagram of BriteDataSource

class CsvSource(source)[source]

Use pandas.read_csv() to fetch dataframes

This will use the path and name of frame to read the dataframe’s csv file and return it as a dataframe.

Inheritance

Inheritance diagram of CsvSource