src.core.process.reading module

contains methods for reading data, that will be processed

src.core.process.reading.importMatchfiles(relPathToFile, typ)[source]

imports a matchfile

Parameters:
  • relPathToFile (str) – the relative path to a matchfile

  • typ (ImportType)

Returns:

tabledict – the table this program operates on

Return type:

dict[GameTable, pd.DataFrame]

src.core.process.reading.listImportedMatchfiles()[source]

method, which downstreams the gameids of imported files

Returns:

games – a list of all games imported

Return type:

list[str]

src.core.process.reading.translateCentralData(tables, typ)[source]
Parameters:

Dependency Diagrams (without externals):

digraph imports {
  rankdir=LR;
  node [shape=box];
  "src.core.macros" -> "src.core.process.reading";
  "src.visuals.windows.main_window" -> "src.core.macros";
  "src.visuals.windows.main_window" -> "src.core.process.reading";
}

Import dependencies (collapsed)

Dependency Diagrams:

digraph imports {
  rankdir=LR;
  node [shape=box];
  "src.core.macros" -> "src.core.process.reading";
  "src.visuals.windows.main_window" -> "src.core.macros";
  "src.visuals.windows.main_window" -> "src.core.process.reading";
}

Import dependencies (collapsed)