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.2.tar.gz (681.4 kB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

viztracer-0.11.2-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.2-cp38-cp38-win_amd64.whl (692.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

viztracer-0.11.2-cp38-cp38-manylinux2014_x86_64.whl (741.4 kB view details)

Uploaded CPython 3.8

viztracer-0.11.2-cp38-cp38-manylinux2010_x86_64.whl (741.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

viztracer-0.11.2-cp38-cp38-manylinux1_x86_64.whl (741.8 kB view details)

Uploaded CPython 3.8

viztracer-0.11.2-cp38-cp38-macosx_10_14_x86_64.whl (689.0 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m

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

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

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

Uploaded CPython 3.7m

viztracer-0.11.2-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.2-cp36-cp36m-win_amd64.whl (692.2 kB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m

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

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

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

Uploaded CPython 3.6m

viztracer-0.11.2-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.2.tar.gz.

File metadata

  • Download URL: viztracer-0.11.2.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.56.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.2.tar.gz
Algorithm Hash digest
SHA256 26a7b28049aecc252bd3f9aa5825ce9f8a56460e18fd992b0f2f9b3f85c7ab14
MD5 523f4e607def84642a3b8bbb2afaf64f
BLAKE2b-256 6465c391f1aaa2de64e52d154576ff6db9330396de7c883dce745b918988c41b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-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.56.0 CPython/3.9.1

File hashes

Hashes for viztracer-0.11.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b7278b09f4644329e23445207c2967314f0677ada9d9c3ddc83806d7fb4a037f
MD5 84d3f940953873c735a7c9be56b9d9d8
BLAKE2b-256 157cb65974e3ffbdc240d7c059afc2bbc83944d3d75081f423efa1b2671f47ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-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.56.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.2-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab778d2c9362452c59e94c344cd8acc4c10a90e0f72f32f6bcacd2d6930d7321
MD5 38b1b6db968876e8f30e832fe2dc3cd7
BLAKE2b-256 63e70b8f7879a642a79ad288c03604d4592e89d5c4d262bbdf264b47a2287048

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-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.56.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 de294c2a2a95232305adbc315983a7e719ba97f54cd6c1d67f25468bc411067a
MD5 2ee16ed8adc802727afb29838e985ed7
BLAKE2b-256 6262fa58ac2ea2f4833a3b11ada51d8d1a48abf930f4de88b27073e55d734353

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-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.56.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 88e82e828be4ec6ba43c6a529aefb26553d2f906be0fd540fa04cca34fd8b1ef
MD5 4d5d1b205b2b2b2b6a1f96910c3b63f7
BLAKE2b-256 b70bec8b6828b0ce4eb9e81781ed58b1ee51fbb4504dc7d2f57eb873df50a9e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-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.56.0 CPython/3.9.1

File hashes

Hashes for viztracer-0.11.2-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 bb51ef161340ca66c244ece9e866ee10ed7c5e46a4edf7123d717e378b4e6436
MD5 81056c470d10b9d5ca8554988adf804d
BLAKE2b-256 931cd8b7b99841eacff083cf0d43f08020f3706579714d8bb13a84b150ae0736

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-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.56.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 03b646feeba9568410ad8e6e7e1b12fedd36b4ec20ab081845716f03405c14f7
MD5 12d3c3c6afc826f72311aa06b391e263
BLAKE2b-256 265a376e7ec49089ed23db879793677594bfeab53d292837243e54395acbcdb7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 741.4 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.56.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa34db0c512996e53a6e31401cd86ff8b1cac8f126f305beb66087797524fc8d
MD5 d13e1d79e8e364a8821d4a31f44a49b1
BLAKE2b-256 de5e694eb34705163d5764898dab252c94d5c8d3ad8c58b00e4ceb01c01b94b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 741.8 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.56.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6efe56037adee4bcc55e00a4fe80028fef39fac036f768aeb4b5d904f3c9545d
MD5 86db9bb0890ef8f9ccdd454ea6a1b283
BLAKE2b-256 669f3fc1b0bf2d268e072edb94156812a5b35f4b43bdaacb26de1f8d4143ab01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 741.8 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.56.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 77ff08450b8af4698cc1641fbce5ab7421ad9b0672d3cec338f8c4d3b5146ea8
MD5 b63bca3a3605a0263c4454c1a4b79be3
BLAKE2b-256 f4d6bbb85d0c472ccee8366ac9a306801b87ee2eca6f8b9cac2be86240803de6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 689.0 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.56.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.2-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a77c4fc6da439b001c1b6744b3da476faf87ece3c53c213e056d9299f1adffc2
MD5 83e9991019b1ed77dcacadd971ea7b27
BLAKE2b-256 d177f09b37023a5c062cff5c59d02dd187b16ad7629da88e580d08b90cd6f271

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-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.56.0 CPython/3.7.9

File hashes

Hashes for viztracer-0.11.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f738d1bc52f6f38815cc20447a9e5ac481202ffdfda09941ff593cb4fea8a038
MD5 11ab212bababc92a5f8a18ebbaa786c2
BLAKE2b-256 aa6d7e6099d7279c6358eb6bf6d5291a88637ae1fa65f8133c597f036b36298f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-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.56.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cd5dba8d55ca4a2a946c2f3972c0c00ec8b9fbda57cf17cbfbfd36efb9472cd
MD5 a1aae65722ae14ae505a769a08ea800f
BLAKE2b-256 613ba1234b500ba41eae6f4a2c39188daee8e923e48d58ad05e44e6444d7d05d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-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.56.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 14b05084f74e62966e07387ae8e7772fc73af889e993704cfe55469e08b13495
MD5 e7e20027c7b5d4b4664345a722194c2f
BLAKE2b-256 b546805e03b16d864e384896c5d11a28969b2787fc1a6f7dc97e20ca7ece56c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-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.56.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4065e926abb22be5f1cd81cac7ae2070d3891f402a6d470c1500f4ecbfc84791
MD5 634c3fea1dfdcfb94173e03e3e343ba9
BLAKE2b-256 d2da5abcafee60966726724f7f6fa0381a4277e6c5dd1de19f777df999a973a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-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.56.0 CPython/3.7.9

File hashes

Hashes for viztracer-0.11.2-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 5115ffa8ab65d1e99f41d83d58b88167343fbc16325e0ec8171646964b0f05c6
MD5 2427c85734a180e607e3b1398c9e88bb
BLAKE2b-256 cff61d56445d6e41f05ce22c96d28499e1c1715c7daabfd47db401cd5d62e5a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-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.56.0 CPython/3.6.8

File hashes

Hashes for viztracer-0.11.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fa2384a683941fc820be4117afe240df454f866539a394ee038d2a151bc69a59
MD5 2158e6f63e0abb0228ce6e7580bf2e51
BLAKE2b-256 a4bfe24a8fd4e4df06c379557901fcf3e88406a73d52214c0c1045a0456a2b2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-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.56.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.2-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b25ba8b07d4d0686917e656c3383199dcec72dee2529c2303d916df5a7ac13f
MD5 4bd9dbd5c83615e3378570e7291d713c
BLAKE2b-256 e433c4c2eed5eac968753550aa140c36f3d5e6729de49d401804a4da2bfd83c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-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.56.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4ef376accefa5f9cbff71c9b5fd9052f1ba29d47a6d32ea327a3ba01d2bdb9c8
MD5 4393280eb6926dc077c7cd00bb8a3fcc
BLAKE2b-256 6a0745208bfe4840bcd94e5cf948f4b803e0ddab62ee61408123fcce0c8432d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-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.56.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a4a29a5eb6d514d3c3b04b20c28c9beb3d0af065549a437bf6c3f7f0cff16494
MD5 4f38e52ec594b25abb5e7d1c38a95ed0
BLAKE2b-256 0a3993bb70cd7754cc8b90e639a20f20e74f5d5411208a5f273195d0487df622

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.2-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.56.0 CPython/3.6.12

File hashes

Hashes for viztracer-0.11.2-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8912915f223b1e32cccf723ee685124b9646c7156dd17b2c046b7f929943f460
MD5 846ae1993d0924a370ff4e3c2a27658f
BLAKE2b-256 f6cedd100fc742a9cf504d6887ec9da0a427ff4714217f366f33e69ae8271a31

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