Metadata-Version: 1.1
Name: py-heat
Version: 0.0.1
Summary: pprofile + matplotlib = Python program profiled as an awesome heatmap!
Home-page: https://github.com/csurfer/pyheat
Author: Vishwas B Sharma
Author-email: sharma.vishwas88@gmail.com
License: MIT
Description: pyheat
        ======
        
        |Licence|
        
        Profilers are extremely helpful tools. They help us dig deep into code,
        find and understand performance bottlenecks. But sometimes we just want
        to lay back, relax and still get a gist of the hot zones in our code.
        
            A picture is worth a thousand words.
        
        So, instead of presenting the data in tabular form, if presented as a
        heatmap visualization, it makes comprehending the time distribution in
        the given program much easier and quicker. That is exactly what is being
        done here !
        
        |Demo|
        
        Features
        --------
        
        :star: Simple CLI interface.
        
        :star: No complicated setup.
        
        :star: Heatmap visualization to view hot zones in code.
        
        Setup
        -----
        
        With ``pip`` installed on your system, execute
        
        Using pip
        ~~~~~~~~~
        
        .. code:: bash
        
            pip install py-heat
        
        Directly from the repository
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        .. code:: bash
        
            git clone https://github.com/csurfer/pyheat.git
            python pyheat/setup.py install
        
        Usage
        -----
        
        To view heatmap of a python file use:
        
        .. code:: bash
        
            pyheat --pyfile <path_to_python_file>
        
        To view help use:
        
        .. code:: bash
        
            pyheat --help
        
        Contributing
        ------------
        
        Bug Reports and Feature Requests
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        Please use `issue tracker`_ for reporting bugs or feature requests.
        
        Development
        ~~~~~~~~~~~
        
        Pull requests are most welcome.
        
        .. _issue tracker: https://github.com/csurfer/pyheat/issues
        
        .. |Licence| image:: https://img.shields.io/badge/license-MIT-blue.svg
           :target: https://raw.githubusercontent.com/csurfer/pyheat/master/LICENSE
        
        .. |Demo| image:: http://i.imgur.com/QdEpDxO.png
        
Keywords: heatmap matplotlib profiling python
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
