archivebox.misc.debugging
Module Contents
Functions
Very simple profiling decorator for debugging. Usage: @timed_function def my_func(): … |
API
- archivebox.misc.debugging.timed_function(func)[source]
Very simple profiling decorator for debugging. Usage: @timed_function def my_func(): …
More advanced alternatives: - viztracer ../.venv/bin/archivebox manage check # https://viztracer.readthedocs.io/en/latest/filter.html - python -m cProfile -o archivebox.prof ../.venv/bin/archivebox manage check; snakeviz archivebox.prof - Django Debug Toolbar + django-debug-toolbar-flamegraph + Django Requests Tracker (requests-tracker)