How to use the pyinstrument.renderers.HTMLRenderer function in pyinstrument

To help you get started, weā€™ve selected a few pyinstrument examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github joerick / pyinstrument / test / test_overflow.py View on Github external
def test_html(deep_profiler_session):
    HTMLRenderer().render(deep_profiler_session)
github joerick / pyinstrument / pyinstrument / profiler.py View on Github external
def output_html(self, root=None):
        return renderers.HTMLRenderer().render(self.last_session)
github joerick / pyinstrument / pyinstrument / __main__.py View on Github external
def get_renderer_class(renderer):
    if renderer == 'text':
        return renderers.ConsoleRenderer
    elif renderer == 'html':
        return renderers.HTMLRenderer
    elif renderer == 'json':
        return renderers.JSONRenderer
    else:
        return object_with_import_path(renderer)
github joerick / pyinstrument / pyinstrument / profiler.py View on Github external
def open_in_browser(self):
        return renderers.HTMLRenderer().open_in_browser(self.last_session)