1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Source: spyder-memory-profiler
Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
Uploaders: Ghislain Antony Vaillant <ghisvail@gmail.com>
Section: python
Priority: optional
Build-Depends: debhelper-compat (= 13),
dh-sequence-python3,
python3-all,
python3-memory-profiler,
python3-pytest <!nocheck>,
python3-pytest-xvfb <!nocheck>,
python3-pytestqt <!nocheck>,
python3-setuptools,
python3-spyder (>= 4.0)
Standards-Version: 4.5.1
Vcs-Browser: https://salsa.debian.org/science-team/spyder-memory-profiler
Vcs-Git: https://salsa.debian.org/science-team/spyder-memory-profiler.git
Homepage: https://github.com/spyder-ide/spyder-memory-profiler
Package: python3-spyder-memory-profiler
Architecture: all
Depends: ${misc:Depends},
${python3:Depends}
Description: memory profiling plugin for the Spyder IDE
This is a plugin for the Spyder IDE that integrates the Python memory
profiler. It allows you to see the memory usage in every line.
.
Add a `@profile` decorator to the functions that you wish to profile then
press Ctrl+Shift+F10 to run the profiler on the current script, or go to
`Run > Profile memory line by line`.
.
The results will be shown in a dockwidget, grouped by function. Lines with a
stronger color have the largest increments in memory usage.
|