Skip to main content

tuna

Performance analysis for Python.

CircleCI Code style: black PyPi Version GitHub stars PyPi downloads

tuna is a modern, lightweight Python profile viewer inspired by the amazing SnakeViz. It handles runtime and import profiles, has zero dependencies, uses d3 and bootstrap, and avoids certain errors present in SnakeViz.

Create a runtime profile with

python -mcProfile -o program.prof yourfile.py

or an import profile with

python -X importtime yourfile.py 2> import.log

and show it with

tuna program.prof

Why tuna doesn't show the whole call tree

The whole timed call tree cannot be retrieved from profile data. Python developers made the decision to only store parent data in profiles because it can be computed with little overhead. To illustrate, consider the following program.

import time


def a(t0, t1):
    c(t0)
    d(t1)
    return


def b():
    return a(1, 4)


def c(t):
    time.sleep(t)
    return


def d(t):
    time.sleep(t)
    return


if __name__ == "__main__":
    a(4, 1)
    b()

The root process (__main__) calls a() which spends 4 seconds in c() and 1 second in d(). __main__ also calls b() which calls a(), this time spending 1 second in c() and 4 seconds in d(). The profile, however, will only store that c() spent a total of 5 seconds when called from a(), and likewise d(). The information that the program spent more time in c() when called in root -> a() -> c() than when called in root -> b() -> a() -> c() is not present in the profile.

tuna only displays the part of the timed call tree that can be deduced from the profile:

Installation

tuna is available from the Python Package Index, so simply type

pip3 install tuna --user --upgrade

to install or upgrade.

Testing

To run the tuna unit tests, check out this repository and type

pytest

License

tuna is published under the MIT license.

Release files for tuna 0.3.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for tuna 0.3.4
File Size Uploaded
tuna-0.3.4.tar.gz 125.4 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for tuna 0.3.4
File Interpreter ABI Platform
tuna-0.3.4-py3-none-any.whl Python 3 none any Details

Total release size: 250.2 kB

Release files / tuna-0.3.4.tar.gz

Download URL tuna-0.3.4.tar.gz
Size 125.4 kB
Tags Source
SHA-256 checksum
How to use checksums
b93baada6a45596e126543a480d737ab00ffcbe24c4be4d26694f977c2d86a4a
BLAKE2b-256 checksum
How to use checksums
9848b113a81d6697cebe76583edff05f963631f733b72d317754d7d9b7ca01da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.0 requests-toolbelt/0.9.1 tqdm/4.39.0 CPython/3.7.5

Release files / tuna-0.3.4-py3-none-any.whl

Download URL tuna-0.3.4-py3-none-any.whl
Size 124.8 kB
Tags Python 3
SHA-256 checksum
How to use checksums
558ce0c091ce1203cd8b2c032a7e417562e762c21618a285cf9809fae95ec189
BLAKE2b-256 checksum
How to use checksums
9cc10208bbfb0f83c7e4ce51fa81141b808297204058ae96da4ff80c57b80854
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.0 requests-toolbelt/0.9.1 tqdm/4.39.0 CPython/3.7.5

Release history Release notifications | RSS feed

0.5.15

2 release files

0.5.14

2 release files

0.5.13

2 release files

0.5.12

2 release files

0.5.11

2 release files

0.5.9

2 release files

0.5.8

2 release files

0.5.7

2 release files

0.5.6

2 release files

0.5.5

2 release files

0.5.4

2 release files

0.5.3

2 release files

0.5.2

2 release files

0.5.1

2 release files

0.5.0

2 release files

0.4.8

2 release files

0.4.7

2 release files

0.4.6

2 release files

0.4.5

2 release files

0.4.4

2 release files

0.4.3

2 release files

0.4.2

2 release files

0.4.1

2 release files

0.4.0

2 release files

0.3.7

2 release files

0.3.6

2 release files

0.3.5

2 release files

This release

0.3.4 This release

2 release files

0.3.3

2 release files

0.3.2

2 release files

0.3.1

2 release files

0.3.0

2 release files

0.2.5

2 release files

0.2.4

2 release files

0.2.3

2 release files

0.2.2

2 release files

0.2.1

2 release files

0.2.0

2 release files

0.1.9

2 release files

0.1.8

2 release files

0.1.7

2 release files

0.1.6

2 release files

0.1.5

2 release files

0.1.4

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page