Skip to main content

A debugging and profiling tool that can trace and visualize python code execution

Project description

VizTracer

build flake8 readthedocs coverage pypi support-version license commit twitter

VizTracer is a low-overhead logging/debugging/profiling tool that can trace and visualize your python code execution.

You can take a look at the demo result of multiple example programs. The UI is powered by Chrome Trace Viewer. Use "AWSD" to zoom/navigate. More help can be found by clicking "?" on the top right corner.

example_img

Highlights

  • Detailed function entry/exit information on timeline with source code
  • Super easy to use, no source code change for most features, no package dependency
  • Optional function filter to ignore functions you are not interested
  • Custom events to log and track arbitrary data through time
  • Log arbitrary function/variable using RegEx without code change
  • Stand alone HTML report with powerful front-end, or chrome-compatible json
  • Works on Linux/MacOS/Windows

Install

The prefered way to install VizTracer is via pip

pip install viztracer

Basic Usage

Command Line

Assume you have a python script to run:

python3 my_script.py arg1 arg2

You can simply use VizTracer by

viztracer my_script.py arg1 arg2

which will generate a result.html file in the directory you run this command, which you can open with Chrome.

You can also generate json file or gz file and load it with chrome://tracing/ or perfetto. gz file is especially helpful when your trace file is large

viztracer -o result.json my_script.py arg1 arg2
viztracer -o result.json.gz my_script.py arg1 arg2

Inline

You can also manually start/stop VizTracer in your script as well.

from viztracer import VizTracer

tracer = VizTracer()
tracer.start()
# Something happens here
tracer.stop()
tracer.save() # also takes output_file as an optional argument

Or, you can do it with with statement

with VizTracer(output_file="optional.html") as tracer:
    # Something happens here

Display Result

By default, VizTracer will generate a stand alone HTML file which you can simply open with Chrome.

However, you can generate json file as well, which complies to the chrome trace event format. You can load the json file on perfetto or chrome://tracing.

When you are dealing with big traces, a stand alone HTML file might be very large and hard to load. You should try to dump a compressed filename.json.gz file

Advanced Usage

Trace Filter

VizTracer can filter out the data you don't want to reduce overhead and keep info of a longer time period before you dump the log.

Extra Logs without Code Change

VizTracer can log extra information without changing your source code

Add Custom Event

VizTracer supports inserting custom events while the program is running. This works like a print debug, but you can know when this print happens while looking at trace data.

Misc

Multi Thread Support

VizTracer supports python native threading module without the need to do any modification to your code. Just start VizTracer before you create threads and it will just work.

example_img

Multi Process Support

VizTracer supports subprocess with --log_subprocess and multiprocessing or os.fork() with --log_multiprocess. For more general multi-process cases, VizTracer can support with some extra steps.

Refer to multi process docs for details

JSON alternative

VizTracer needs to dump the internal data to json format. It is recommended for the users to install orjson, which is much faster than the builtin json library. VizTracer will try to import orjson and fall back to the builtin json library if orjson does not exist.

Virtual Debug

You can virtually debug your program with you saved json report. The interface is very similar to pdb. Even better, you can go back in time because VizTracer has all the info recorded for you.

vdb <your_json_report>

Refer to the docs for detailed commands

Performance

VizTracer will introduce 2x to 3x overhead in the worst case. The overhead is much better if there are less function calls or if filters are applied correctly.

An example run for test_performance with Python 3.8 / Ubuntu 18.04.4 on Github VM

fib:
0.000678067(1.00)[origin]
0.019880272(29.32)[py] 0.011103901(16.38)[parse] 0.021165599(31.21)[json]
0.001344933(1.98)[c] 0.008181911(12.07)[parse] 0.015789866(23.29)[json]
0.001472846(2.17)[cProfile]

hanoi     (6148, 4100):
0.000550255(1.00)[origin]
0.016343521(29.70)[py] 0.007299123(13.26)[parse] 0.016779364(30.49)[json]
0.001062505(1.93)[c] 0.006416136(11.66)[parse] 0.011463236(20.83)[json]
0.001144914(2.08)[cProfile]

qsort     (8289, 5377):
0.002817679(1.00)[origin]
0.052747431(18.72)[py] 0.011339725(4.02)[parse] 0.023644345(8.39)[json]
0.004767673(1.69)[c] 0.008735166(3.10)[parse] 0.017173703(6.09)[json]
0.007248019(2.57)[cProfile]

slow_fib  (1135, 758):
0.028759652(1.00)[origin]
0.033994071(1.18)[py] 0.001630461(0.06)[parse] 0.003386635(0.12)[json]
0.029481623(1.03)[c] 0.001152415(0.04)[parse] 0.002191417(0.08)[json]
0.028289305(0.98)[cProfile]

Documentation

For full documentation, please see https://viztracer.readthedocs.io/en/stable

Bugs/Requests

Please send bug reports and feature requests through github issue tracker. VizTracer is currently under development now and it's open to any constructive suggestions.

License

Copyright Tian Gao, 2020.

Distributed under the terms of the Apache 2.0 license.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

viztracer-0.11.1.tar.gz (681.4 kB view details)

Uploaded Source

Built Distributions

viztracer-0.11.1-cp39-cp39-win_amd64.whl (692.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

viztracer-0.11.1-cp39-cp39-manylinux2014_x86_64.whl (733.8 kB view details)

Uploaded CPython 3.9

viztracer-0.11.1-cp39-cp39-manylinux2010_x86_64.whl (734.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

viztracer-0.11.1-cp39-cp39-manylinux1_x86_64.whl (734.2 kB view details)

Uploaded CPython 3.9

viztracer-0.11.1-cp39-cp39-macosx_10_14_x86_64.whl (689.0 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

viztracer-0.11.1-cp38-cp38-win_amd64.whl (692.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

viztracer-0.11.1-cp38-cp38-manylinux2014_x86_64.whl (741.3 kB view details)

Uploaded CPython 3.8

viztracer-0.11.1-cp38-cp38-manylinux2010_x86_64.whl (741.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

viztracer-0.11.1-cp38-cp38-manylinux1_x86_64.whl (741.7 kB view details)

Uploaded CPython 3.8

viztracer-0.11.1-cp38-cp38-macosx_10_14_x86_64.whl (688.9 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

viztracer-0.11.1-cp37-cp37m-win_amd64.whl (692.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

viztracer-0.11.1-cp37-cp37m-manylinux2014_x86_64.whl (727.8 kB view details)

Uploaded CPython 3.7m

viztracer-0.11.1-cp37-cp37m-manylinux2010_x86_64.whl (730.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

viztracer-0.11.1-cp37-cp37m-manylinux1_x86_64.whl (730.1 kB view details)

Uploaded CPython 3.7m

viztracer-0.11.1-cp37-cp37m-macosx_10_14_x86_64.whl (688.8 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

viztracer-0.11.1-cp36-cp36m-win_amd64.whl (692.2 kB view details)

Uploaded CPython 3.6m Windows x86-64

viztracer-0.11.1-cp36-cp36m-manylinux2014_x86_64.whl (726.9 kB view details)

Uploaded CPython 3.6m

viztracer-0.11.1-cp36-cp36m-manylinux2010_x86_64.whl (729.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

viztracer-0.11.1-cp36-cp36m-manylinux1_x86_64.whl (729.1 kB view details)

Uploaded CPython 3.6m

viztracer-0.11.1-cp36-cp36m-macosx_10_14_x86_64.whl (688.8 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

Details for the file viztracer-0.11.1.tar.gz.

File metadata

  • Download URL: viztracer-0.11.1.tar.gz
  • Upload date:
  • Size: 681.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.1.tar.gz
Algorithm Hash digest
SHA256 f6afcb907f17bb52f87eeef2f1c4ab23da7c902d8e3d133cb5a71252493e402f
MD5 8138b1254c7e00e75c39ff5bf7aa7842
BLAKE2b-256 c00d8f8cd4872dc1685c71d9ceb11bd99d96168cbe7d16de48be5ef5849a0b8c

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 692.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for viztracer-0.11.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cfb015289f018463160fe4cf9fc3a869f0d39386b7edc4554900e36017bb97b6
MD5 57e1d914973cd417d8cad0093487d826
BLAKE2b-256 7630c68525de5ae0ee1e7d31466a1b13fba74cbe43b57d02f1976e68edc2320d

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 733.8 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7bf765249dff34e4d7258621bad1ed55095f1df6c4bb019fc4f9948917522079
MD5 d43a38027502486b783780941fe39193
BLAKE2b-256 b53896f5ecb48257781dd2817ff1642abe4e2227294117289965e3655541c664

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 734.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fe22b95c6d92d1a8f76b13fdea1e857bc2f0a50741de18879e65a62517fa2933
MD5 9e6f82b0cc3dd740dc2256862e542745
BLAKE2b-256 9157ba362f5c69de6af2083aa70f61dcd59c73722e7fd3516984e27cb9bbbda6

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 734.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 30b67e0a2dc21e45de568fe2ba75b204e87654b3d25577b01a9e3effa1e0a7df
MD5 d7ce58015db7a071c0bd9600afa66038
BLAKE2b-256 c943fa08e9ad1d3324edd8aa2c3754eebab2cec0c75ee5157bf31ebbb8869384

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 689.0 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for viztracer-0.11.1-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a5613f714813d61a94bc2517bb11056d739692bf0b25d30919034063cb1728f8
MD5 54febf0c5613b5aa21534bd36ff9c108
BLAKE2b-256 19fff6e2d5deaea980d21f6cca78b3ce487fa2bf733feb437671935907911677

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 692.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4a3d7664545cb6d09a8b37d22ca478f9b425625df2e9b7ddc66e29f867cacdad
MD5 da6b7f47ff216532aef269dec549fcee
BLAKE2b-256 cc1cd92f52f50c084624def55d9455ce1be81da06b94c02984fad288f90e48da

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 741.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0845f9e2b1fc1cc9e1bebcdf0d47412603268605b1a54a7d3be038643a7ae21d
MD5 73547a7fabc762deae0fd962396235c5
BLAKE2b-256 a009ce057276aa7b7e5419bda54c27341e222273afb506a86b52d353af50a0be

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 741.7 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 774dc5a08a1732e588f94b8d7474e958b7b5b46bc8a01d04336bb8c7872e96e8
MD5 e87ffd7fd8ec36a914f0846ab4cc9087
BLAKE2b-256 1ed18fd2070df2aa5e8bc4ae802782d9f962fb642496915258f213b5dff52ece

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 741.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3967e1a9ff3e9fd524927f9fed9016c57a70641df3a38d3d59cf28c339262171
MD5 e4fa1b6195c185ee675b9e04ee598f6b
BLAKE2b-256 729791852a6634bb0f866fb5e352d2675251a36da031c72df1f8a681a3d8f3fd

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 688.9 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 72ea2d42983c1d31b388342ea2beb1e80cf1b35535dbaf4a9cf995ffbd3486fc
MD5 21180a23c8a1a591e155f342330f29cb
BLAKE2b-256 f576151aa49d49ae9ab029daed03810a79b76d03bd7768946d0fbad7e84b4528

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 692.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for viztracer-0.11.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 eaf1e51511541b32cfc663cd249ce2aa75527741df8e8dd8445016927e852532
MD5 7b59a5015c4135ebe09b63945b59a938
BLAKE2b-256 e18a25c411073a579f8122835adb1bd57e6dad3d1bcc64806a2306f120f032d5

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 727.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d1f754729c3aba4431400999d3edac33956c83baff141693106c2021c98d431
MD5 37514f594d60218f4db70c367ef43551
BLAKE2b-256 233865d22d15b443d561edcf88d3801b141361cb7881196160afcd36ab88687a

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 730.1 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 303bccece508c7976d399c4e76a7dd3e11d29ae54dca709e42db5514ffdfc494
MD5 b1d89f09c72ebee38dbc3eb1e60c8d48
BLAKE2b-256 7d277fc32afaa47ae89543716599f8c9790069eaa44c516d0d967990c7bc4f55

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 730.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fc2142bbd7d81d590af3dae0b970b50d1bfa864cf18aee31f41ee4bc6488e1c0
MD5 0fe55db4bd910603359cea9275bab170
BLAKE2b-256 6e66c7898868a8195411aa00a63b20fc3fdb1d814b87fdc9ab14b0428542562b

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 688.8 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for viztracer-0.11.1-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e87a074fb85bb849b222ea9bddb2e93db081b84d7fd92ab3a4589cfafb9109bf
MD5 0f2635cc145dd28d231bb4c131b58670
BLAKE2b-256 60904dff02727d8eb22775d3d10bc3fcc2ae1ce365def3311d69acf562675d3a

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 692.2 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.6.8

File hashes

Hashes for viztracer-0.11.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 508cedd2bf5f8c9f2b247b2bd303b3639b2f0eab59c16cd2266aadaa02dc0779
MD5 52bec586ed11f0b5116e4d8c535cec1c
BLAKE2b-256 0534e003a6dc81f3d88af2c084371cb9523c1d26fdeb8fd365b63670517cc6f2

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 726.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45d9876a795f8dccfa7e9fb7aed598dcb144198c1e21201e733a2de1a0fc627e
MD5 7d23cf26353dd1bbdb1ee4cf796e90ab
BLAKE2b-256 7ce76315d47f9410642ac20e501d153702c5c19f294d340761256df583ccf872

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 729.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d3b41478b5aeec7c78d4742c14808e9b826ad212467cfe9e58ac6218d19e24c3
MD5 d7e84e1115983541925673f97b4578ba
BLAKE2b-256 9f0ff09e0122a471997752919ba1e8e8cb7b71c357d7a6e22e097753250e5c85

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 729.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 14181248a5ecbd4133c3b29fb7b6cb0ceb797d78c7315193e967f351b752184c
MD5 b3aef3c9c90fce5192c2b2c316dab7d2
BLAKE2b-256 1c061c7fb1122e4a4fd8ab85096ed832806a4c4f940b9f268b885d8930c780e3

See more details on using hashes here.

File details

Details for the file viztracer-0.11.1-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: viztracer-0.11.1-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 688.8 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.6.12

File hashes

Hashes for viztracer-0.11.1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a8fdcd49e3ff7c4188b3bfebbcdc9148cebb4aff8242cda043f297772a4c11bf
MD5 92a73dbd11edc8a11557d9189b97c7e9
BLAKE2b-256 5ab4d19d5086c57bfa815e67190d6db02b542f26458c578f0705d33bf6a471df

See more details on using hashes here.

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