Metadata-Version: 2.1
Name: spyder_line_profiler
Version: 0.4.2
Summary: Plugin for the Spyder IDE that integrates the Python line profiler.
Home-page: https://github.com/spyder-ide/spyder-line-profiler
Author: Spyder Project Contributors
License: MIT
Keywords: Qt PyQt5 PySide2 spyder plugins spyplugins line_profiler profiler
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: X11 Applications :: Qt
Classifier: Environment :: Win32 (MS Windows)
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development
Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
Requires-Python: >= 3.10
License-File: LICENSE.txt
License-File: AUTHORS.md
Requires-Dist: line_profiler
Requires-Dist: qtawesome
Requires-Dist: spyder<6.2,>=6.1


This is a plugin for the Spyder IDE that integrates the Python line profiler.
It allows you to see the time spent in every line.

Usage
-----

Add a ``@profile`` decorator to the functions that you wish to profile
then press Shift+F10 (line profiler default) to run the profiler on
the current script, or go to ``Run > Run line profiler``.

The results will be shown in a dockwidget, grouped by function. Lines
with a stronger color take more time to run.

.. image: https://raw.githubusercontent.com/spyder-ide/spyder-line-profiler/master/img_src/screenshot_profiler.png
