Metadata-Version: 1.1
Name: flask_debugtoolbar_flamegraph
Version: 0.1.1
Summary: Flamegraphs for Flask Debug Toolbar
Home-page: https://github.com/quantus/flask-debugtoolbar-flamegraph
Author: Pekka Pöyry
Author-email: pekka.poyry@gmail.com
License: MIT
Description: 
        ===============================
        Flask Debugtoobar Flame Graph
        ===============================
        
        Based on the awesome [djdt-flamegraph](https://github.com/23andMe/djdt-flamegraph) project.
        
        Get a flame graph of the current request.
        
        .. image:: https://travis-ci.org/23andMe/djdt-flamegraph.svg?branch=master
                :target: https://travis-ci.org/23andMe/djdt-flamegraph
        
        .. image:: https://img.shields.io/pypi/v/djdt_flamegraph.svg
                :target: https://pypi.python.org/pypi/djdt_flamegraph
        
        Screenshot
        ----------
        
        .. image:: https://raw.githubusercontent.com/23andMe/djdt-flamegraph/master/flamegraph-screenshot.png
        
        Features
        --------
        
        * Uses https://github.com/brendangregg/FlameGraph to generate a flamegraph right in the debug panel.
        
        Install
        -------
        * Add ``flask_debugtoolbar_flamegraph`` to your ``requirements.txt``.
        * Add ``flask_debugtoolbar_flamegraph.FlamegraphPanel`` to ``DEBUG_TB_PANELS``.
        * Run your server with ``python manage.py runserver --nothreading --noreload``
        
        Notes
        -----
        * ``ValueError at /: signal only works in main thread``: Flame graphs can only be generated in a single threaded server.
        * Flame graphs are disabled by default. You'll have to enable it by clicking the checkbox next to it in the Debug Toolbar.
        * Probably won't work on Windows.
        
Keywords: flask_debugtoolbar_flamegraph
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
