src.core.io.wrapper module

this file serves as a entrypoint for operations, which are supported across .csv or mariadb option

src.core.io.wrapper.executeSelectQuery(query)[source]

executes a sql query on the database

Parameters:

query (str) – the .sql query, which will be executed

Returns:

table – the resulting dataframe

Return type:

pd.DataFrame

Dependency Diagrams (without externals):

digraph imports {
  rankdir=LR;
  node [shape=box];
  "src.core.analyse.plotting" -> "src.core.io.wrapper";
  "src.core.analyse.plugin" -> "src.core.io.wrapper";
  "src.core.process.reading" -> "src.core.io.wrapper";
  "src.core.team" -> "src.core.io.wrapper";
  "src.visuals.windows.main_window" -> "src.core.io.wrapper";
  "src.visuals.windows.main_window" -> "src.core.process.reading";
  "src.visuals.windows.spaces.templater" -> "src.core.analyse.plugin";
  "src.visuals.windows.spaces.templater" -> "src.core.io.wrapper";
}

Import dependencies (collapsed)

Dependency Diagrams:

digraph imports {
  rankdir=LR;
  node [shape=box];
  "src.core.analyse.plotting" -> "src.core.io.wrapper";
  "src.core.analyse.plugin" -> "src.core.io.wrapper";
  "src.core.process.reading" -> "src.core.io.wrapper";
  "src.core.team" -> "src.core.io.wrapper";
  "src.visuals.windows.main_window" -> "src.core.io.wrapper";
  "src.visuals.windows.main_window" -> "src.core.process.reading";
  "src.visuals.windows.spaces.templater" -> "src.core.analyse.plugin";
  "src.visuals.windows.spaces.templater" -> "src.core.io.wrapper";
}

Import dependencies (collapsed)