Metadata-Version: 1.0
Name: pyprof2html
Version: 0.2.0
Summary: Python cProfile and hotshot profile's data to HTML Converter
Home-page: http://www.hexacosa.net/project/pyprof2html/
Author: Hideo Hattori
Author-email: hhatto.jp@gmail.com
License: New BSD License
Description: About
        =====
        
        This script is converted to HTML file from Python's profile,
        Profile and hotshot profiling data.
        inspired by `Devel::NYTProf`_ (Perl Module)
        
        sample data (`pystone hotshot linetimings`_ `pystone cProfile`_)
        
        .. _`pystone hotshot linetimings`: http://www.hexacosa.net/pyprof2html/pystone-line_html/
        .. _`pystone cProfile`: http://www.hexacosa.net/pyprof2html/pystone_html/
        .. _`Devel::NYTProf`: http://search.cpan.org/dist/Devel-NYTProf/
        
        Install
        =======
        
        used to easy_install::
        
          $ easy_install pyprof2html
        
        
        Require
        =======
        
        Require `Jinja2`_ module.
        
        .. _`Jinja2`: http://pypi.python.org/pypi/Jinja2/
        
        Ubuntu
        ------
        
        python-profiler (Ubuntu Package)
        
        installed to::
        
          $ easy_install jinja2
        
        or::
        
          $ sudo apt-get intall python-jinja2
          $ sudo apt-get intall python-profiler
        
        
        Usage
        =====
        
        basic usage::
        
          $ python -m cProfile -o PROFILE_DATA USER_SCRIPT.py
          $ pyprof2html PROFILE_DATA
          $ ls
          html
        
        
Keywords: profile visualize html
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: Operating System :: Unix
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
