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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9

viztracer-0.11.0-cp39-cp39-manylinux2010_x86_64.whl (734.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

viztracer-0.11.0-cp39-cp39-manylinux1_x86_64.whl (734.1 kB view details)

Uploaded CPython 3.9

viztracer-0.11.0-cp39-cp39-macosx_10_14_x86_64.whl (688.8 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

viztracer-0.11.0-cp38-cp38-manylinux2014_x86_64.whl (741.2 kB view details)

Uploaded CPython 3.8

viztracer-0.11.0-cp38-cp38-manylinux2010_x86_64.whl (741.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

viztracer-0.11.0-cp38-cp38-manylinux1_x86_64.whl (741.6 kB view details)

Uploaded CPython 3.8

viztracer-0.11.0-cp38-cp38-macosx_10_14_x86_64.whl (688.8 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

viztracer-0.11.0-cp37-cp37m-manylinux2014_x86_64.whl (727.7 kB view details)

Uploaded CPython 3.7m

viztracer-0.11.0-cp37-cp37m-manylinux2010_x86_64.whl (729.9 kB view details)

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

viztracer-0.11.0-cp37-cp37m-manylinux1_x86_64.whl (729.9 kB view details)

Uploaded CPython 3.7m

viztracer-0.11.0-cp37-cp37m-macosx_10_14_x86_64.whl (688.7 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

viztracer-0.11.0-cp36-cp36m-manylinux2014_x86_64.whl (726.8 kB view details)

Uploaded CPython 3.6m

viztracer-0.11.0-cp36-cp36m-manylinux2010_x86_64.whl (728.9 kB view details)

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

viztracer-0.11.0-cp36-cp36m-manylinux1_x86_64.whl (728.9 kB view details)

Uploaded CPython 3.6m

viztracer-0.11.0-cp36-cp36m-macosx_10_14_x86_64.whl (688.7 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.11.0.tar.gz
Algorithm Hash digest
SHA256 26e43185da85a2f21cee4c817756df6b19f95f9bda9c3c0db4f14004b94d8b87
MD5 95cd44533f664945831a659058ba23c0
BLAKE2b-256 0ce4a5889342c011724bf47c6d3a5f85ccef6163ed974e878e8544b48d5162f5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.11.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8995e2290025771ab4bccf1c8d75abcd1cd2eef0a3ec0432a2565166a5fd57c2
MD5 507b1078e8b0e3f8c82553d041e08b50
BLAKE2b-256 1b4fae0d6fd43d4aca77894e36f6bda111b94e66dbee62a5d17ec1c2870b2358

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.11.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac787249903d9548dfa15b92e942622c263c203b5771c0ba5d4424e33ce8d5df
MD5 d20fe9dca32638c84e43d1e5723112af
BLAKE2b-256 38ddd9889e07b9c5973eaaff21218b0d59a98d2ebf05f9f91859d933bc387698

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 734.1 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.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 293be4c7ee4e0ee9d59dbc7feb1ca49b21b8fce4129deacc6618f62d1a7a51ed
MD5 c659cc7c123971c47aefa66d36fae792
BLAKE2b-256 9042ac8dd992d54e299e5bf186e617b906f1c5f785f49e01bcc5295cf8e4b464

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 734.1 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.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 70894074b1492ccb78641aa62ad74a704c5e7831aacd82f620e27cd802395bb0
MD5 05ec406e930d24277f2502bae455dc6b
BLAKE2b-256 13379bb9b0a7c14cb031b965dd4a5b56dcfb937a05a95922656fa0035afc50a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.0-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 688.8 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.0 CPython/3.9.1

File hashes

Hashes for viztracer-0.11.0-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ee0b6b16675926e9bf411b9618b6398c1ee1e22c0cf6a065d2687036bc0c8b07
MD5 405879999ef08617a287e37f77a8fabb
BLAKE2b-256 75b9d71b8042dc8557f312acb8539cf97ebffb88aab1d6bdd4ffb422574b5ee1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.11.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 04802c0a8f2532d16f5680cfbde9e90c743ccd48a3fa6970c20f0b8ba1922f44
MD5 1c790da90a49cb8efca0f90337322c18
BLAKE2b-256 052b498cd34a1af6fadae55bcc58f2d9ac1e43ea45c8ab4439c1cafa6c72d883

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 741.2 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.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09d4747ae7c47bd9b0988f3f3304442384940fd406bd00df89fb5afd102b2fb7
MD5 2db728fa9977bb0e5235fb96d0a87faf
BLAKE2b-256 787355559b40a276024d871d56e7e09b634ab7905c61f379b656fb78307d67f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 741.6 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.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 17739d85f9e27fb68f0b53d0d04e96190c3d05589c63d580a6ba6a3f7b2a8b02
MD5 bc75ce4c68a02bcfdfa9b863ca737651
BLAKE2b-256 c05f89c7ea208293f1f645ada5753f60f2f412ce9ad1fa7bae1956c4e4ea0dc4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 741.6 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.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 51093125b58071e7869707cee03b781c5efde17f5fd3a90efefea06b7817082d
MD5 bc4837327fa9a6e1261c1ee4758cd96e
BLAKE2b-256 a6511bee10ad407de1dc9e9492a69a793ca0eb6ced12b72b27f950b65d5f7fb1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.0-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 688.8 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.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.0-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 6e06cdf64f312a20a531a7d7da38b4c2532613cee8e6350e3764271ae056a5c0
MD5 152c931bff23266a106c80f1f625abe9
BLAKE2b-256 3360dbd2842af39aa337848e9c09ec6806b6883e271a4c053fa093086574a533

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.11.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ea49053db96b9b11c05296e671d02f41b0db48abb69e6dd828acf23f529babdc
MD5 6073b961e3e3129f4f4ff021ef80d30b
BLAKE2b-256 7131f541eff083f1dcd0208362d750a30f02e1dbb6ad0ab50e8b0ccdf0d1dcd1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 727.7 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.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 141d04f06e4fe40efaaf5220e5e61dfe7b2cfd99cac02e582bdcd5c242b4be63
MD5 7ff7666b5e927ca6d03893aa5d4d1947
BLAKE2b-256 f36ef06ba9df82e0fd93807800f37e1973cec34f77c2ac1bc3827e607e8e9f41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 729.9 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.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 147d2abc6858554fc9875b8b3c5d08a38f16acf780cb10053063fb804ac3fba6
MD5 37b61cec88b50772d6894a6aefc25db4
BLAKE2b-256 7a4bce3ed92c2c7a4559e395fcb022d7f8563e7d5f4a6c4936527eaadc65d0a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 729.9 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.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3e49d86d4a35c5952840fddead080c9b9ad22a4e5f1c20462538f91c8e1bf67c
MD5 08b08bfb770400d9c60632cf96872b20
BLAKE2b-256 5dfabdfb0cb1e8adab25f50b19c737ae89fb60ed55f9f49d71a1846050110c97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.0-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 688.7 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.0 CPython/3.7.9

File hashes

Hashes for viztracer-0.11.0-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 013ceae1856b70d4c907550ebb4e3e010ec16d4f2780158722618aaae255f89d
MD5 1aa3cd754e75a5992bc34718c4f9e079
BLAKE2b-256 dcfd0fbce3cb72fef94fdb646fb55282535bc3272b4e855c79d4ae6fc6f0c76e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.11.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c64903c95190fe1608704e6a6a71e235b31960634ade12860c3714b9e9b518db
MD5 c7c0d51dadb6df395e33e12cf11e7746
BLAKE2b-256 e193250ebd2a2024888d4fbce000b21ad32d42aae9b5f52568097312a11dfde9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 726.8 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.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94bc3425bfa9128c9b388a716713f4791a52498ac1267c07911b015e95302715
MD5 6c457b5d35d3e2652258e96139f66c31
BLAKE2b-256 8be4f652ab2b7d1f23d07b85b0a7f5bdaf45a100497a759c0f2e07d8c3cf6535

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 728.9 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.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 381b30a322e99aee4bb3d5750a329a8f5b4f9ba2dba32ed49253be7961b72220
MD5 8cbc837c169da12bc2187d76d36c2b61
BLAKE2b-256 bbf34e6a977596170968228b147fa51d61678a0248390da540508e70ac9da35e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 728.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.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.11.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 842a0c529c965a730d88c20cdcba9a848c368a87705cded392877dc401c9e228
MD5 b406cfe60b0a49b9798f46d6cc2f202a
BLAKE2b-256 be089c1276fa90d53ba9513b30f5e24b2dae0969cbe41ac4c4aa17d674f70ad4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.0-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 688.7 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.0 CPython/3.6.12

File hashes

Hashes for viztracer-0.11.0-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 4f3152a4a428d7a6c01124f290ba07fe5de670f407211001c8b5373a694915e5
MD5 f29c20a668c5b4431c242197f341a2f1
BLAKE2b-256 3848e6f05cc718dffe03cb317ec893d037ed5139dd124dbed83e4d352d48e235

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