Skip to main content

A small python profiler using cProfile, pstats, Pandas and matplotlib.

Project description

nanoProfiler

License: GPL v3 Release

A small python profiler using cProfile, pstats, Pandas and matplotlib.

nanoProfiler was primarily designed evaluate the internal variations of execution times in codes with variable complexity. But it can also be used with fixed complexity code.

Instalation

nanoProfiler can be installed with pip:

pip install nanoprofiler

or:

python -m pip install nanoprofiler

Manual instalation

Clone the repository

git clone https://gitlab.com/nanogennari/nanoprofiler.git

And run setup script

cd nanoprofiler
python setup.py install

Usage

Usage example:

from nanoprofiler import Profiler

pr = Profiler()

pr.start(name="exec1")
your_code()
pr.stop()

pr.start(name="exec2")
another_code()
pr.stop()

pr.plot_top_time(time="cumtime")
pr.plot_function(time="tottime")
pr.save_data("folder/to/save/results", "prefix_for_files")

More details on how to use nanoProfiler can be found here.

Documentation

Documentation can be found here.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nanoprofiler-0.2.0.tar.gz (6.3 kB view hashes)

Uploaded Source

Built Distribution

nanoprofiler-0.2.0-py3-none-any.whl (18.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page