core.orm.debug ============== .. py:module:: core.orm.debug Classes ------- .. autoapisummary:: core.orm.debug.Timer Functions --------- .. autoapisummary:: core.orm.debug.print_query core.orm.debug.analyze_sql_queries Module Contents --------------- .. py:class:: Timer A timer that works just like a stopwatch. .. py:method:: start() -> None .. py:method:: stop() -> datetime.timedelta .. py:function:: print_query(query: bytes) -> None Pretty prints the given query. .. py:function:: analyze_sql_queries(report: Literal['summary', 'redundant', 'all'] = 'summary') -> collections.abc.Iterator[None] Analyzes the sql-queries executed during its context. There are three levels of information (report argument): * 'summary' (only show the number of queries) * 'redundant' (show summary and the actual redundant queries) * 'all' (show summary and all executed queries) Use this with a with_statement:: with analyze_sql_queries(): ... # <- analyzes all sql queries that happen inside here