md.parsers.OrcaPropertyParser

class md.parsers.OrcaPropertyParser(start: str, stop: str | List[str], formatters: OrcaFormatter | List[OrcaFormatter] | None = None)[source]

Basic property parser for ORCA output files. Takes a start flag and a stop flag/list of stop flags and collects the data entries in between. If a OrcaFormatter is provided, the data is formatted accordingly upon retrieval. Operates in a line-wise fashion.

Parameters:
  • start (str) – begins to collect data starting from this string

  • stop (str/list(str)) – stops data collection if any of these strings is encounteres

  • formatters (OrcaFormatter) – OrcaFormatter to convert collected data