FuncProfiler Functions
Last updated
Was this helpful?
Last updated
Was this helpful?
Available functions:
(export_format: Optional[str] = None, filename: Optional[str] = None, shared_log: bool = False)
: Decorator factory to profile the execution time and memory usage of a function with optional data export and shared logging.
(export_format: Optional[str] = None, filename: Optional[str] = None, shared_log: bool = False)
: Decorator for line-by-line profiling of a function with optional data export and shared logging.
Decorator factory to profile the execution time and memory usage of a function with optional data export and shared logging.
export_format
: json
, txt
, csv
, html
, xml
, md
(str
)
filename
: any (str
)
shared_log
: True
/False
(Boolean
)
If no ()
was passed along with the decorator, you will receive a missing required positional parameter func
error from Python.
Decorator for line-by-line profiling of a function with optional data export and shared logging.
export_format
: json
, csv
, html
, xml
, md
(str
)
filename
: any (str
)
shared_log
: True
/False
(Boolean
)
If no ()
was passed along with the decorator, you will receive a missing required positional parameter func
error from Python.