Get current frame profiler data.
(self)
| 27 | return self._conn.send_request("profiler", {"action": "stop"}) |
| 28 | |
| 29 | def snapshot(self) -> dict[str, Any]: |
| 30 | """Get current frame profiler data.""" |
| 31 | return self._conn.send_request("profiler", {"action": "snapshot"}) |
| 32 | |
| 33 | def frames(self, count: int = 10) -> dict[str, Any]: |
| 34 | """Get recent N frames summary. |