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

Remote attach

VizTracer supports remote attach to a process as long as you installed VizTracer on that process.

Refer to remote attach docs

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

Uploaded Source

Built Distributions

viztracer-0.11.4-cp39-cp39-win_amd64.whl (694.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

viztracer-0.11.4-cp39-cp39-manylinux2014_x86_64.whl (735.5 kB view details)

Uploaded CPython 3.9

viztracer-0.11.4-cp39-cp39-manylinux2010_x86_64.whl (735.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

viztracer-0.11.4-cp39-cp39-manylinux1_x86_64.whl (735.9 kB view details)

Uploaded CPython 3.9

viztracer-0.11.4-cp39-cp39-macosx_10_14_x86_64.whl (690.6 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

viztracer-0.11.4-cp38-cp38-win_amd64.whl (694.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

viztracer-0.11.4-cp38-cp38-manylinux2014_x86_64.whl (743.0 kB view details)

Uploaded CPython 3.8

viztracer-0.11.4-cp38-cp38-manylinux2010_x86_64.whl (743.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

viztracer-0.11.4-cp38-cp38-manylinux1_x86_64.whl (743.4 kB view details)

Uploaded CPython 3.8

viztracer-0.11.4-cp38-cp38-macosx_10_14_x86_64.whl (690.6 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

viztracer-0.11.4-cp37-cp37m-win_amd64.whl (693.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

viztracer-0.11.4-cp37-cp37m-manylinux2014_x86_64.whl (729.4 kB view details)

Uploaded CPython 3.7m

viztracer-0.11.4-cp37-cp37m-manylinux2010_x86_64.whl (731.7 kB view details)

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

viztracer-0.11.4-cp37-cp37m-manylinux1_x86_64.whl (731.7 kB view details)

Uploaded CPython 3.7m

viztracer-0.11.4-cp37-cp37m-macosx_10_14_x86_64.whl (690.5 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

viztracer-0.11.4-cp36-cp36m-win_amd64.whl (693.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

viztracer-0.11.4-cp36-cp36m-manylinux2014_x86_64.whl (728.5 kB view details)

Uploaded CPython 3.6m

viztracer-0.11.4-cp36-cp36m-manylinux2010_x86_64.whl (730.8 kB view details)

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

viztracer-0.11.4-cp36-cp36m-manylinux1_x86_64.whl (730.8 kB view details)

Uploaded CPython 3.6m

viztracer-0.11.4-cp36-cp36m-macosx_10_14_x86_64.whl (690.5 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: viztracer-0.11.4.tar.gz
  • Upload date:
  • Size: 682.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for viztracer-0.11.4.tar.gz
Algorithm Hash digest
SHA256 b8fdb7ef99f74e12697b54fc9edaf690ef9e8d7cb0e6cc28aa841e2390a4e29c
MD5 cfcaa7e778c0f5ced100f7d4f44eb70a
BLAKE2b-256 b9af237824ef177564c43d12d900940d4de14992d8881931cfab351a5f58a318

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 694.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 513db136bfaeceb6e76bb9db98500b38fd7e454a7551f4c441dc50721840f9d6
MD5 458d24e2adaebbb662b28c66b7c81fdb
BLAKE2b-256 4d039fc5d03daa27edd9f96fbcfb2202c149e728c67e661c7f4898fc4613547f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.4-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 735.5 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for viztracer-0.11.4-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08777016e06df9f4690da11a7265b7143d5df73ddb8474f184abfe9ffffdf08d
MD5 6c7ebf96617e915b5604afbd077c45b9
BLAKE2b-256 3b8a1971e61a4992ca3174433f7e47c4c9ff0f74d280a43d7871377b1150bad1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.11.4-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5a9a9733fd766ea9fb038d43a01681171ac362bc59e1e39238d56b5c431afa52
MD5 23fdb8e02b5f9be5df3e0daf8c0a3bcf
BLAKE2b-256 540ce8a360c38359826297d079716d5ba424eddc4f93c1e02b239afb422f047c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.4-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 735.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for viztracer-0.11.4-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d6ee9ed3684e48bbd0d4ca77b9d8bbc35ba2d001d81434efae495eed770f72dc
MD5 13a7d2f801eae61b386f4cb5d51a1fca
BLAKE2b-256 21c98da4b757719f669fcf84b71aeef76686ac04b967f7bd97266f20b420c930

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.4-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 690.6 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 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.4-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f71c67e03ce2c3b3721b0eda940aac718435df912adb5a6c71403ec63b1a04f8
MD5 eee514f48e33b513a275c0a0e975d299
BLAKE2b-256 a7c400a7d10c8bae44b2e8b2615742aa2eb6f82ade9f7ad92988d9bbc86dd606

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 694.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for viztracer-0.11.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0c1a09fa2e0351687e1718f6643ac738cdcace01a8ca56704e2c7822c5ba1ff6
MD5 33b96b8291d042c23c163b7b5e32a58e
BLAKE2b-256 410ebbd92a8e09e027d59e116e3d2683372ffd94813f675e857e272c22802a9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.4-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 743.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for viztracer-0.11.4-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4e5af7ac6ff1eb92393fcae678c769c6e39e7f884dea8dbb52b710ec36ef54e
MD5 b2446e79346a8505f9fef149ab356d22
BLAKE2b-256 d985bfee15428c930da1693cc6b4e3ce34eb3984d7e28dc0bcc7771e19269e8e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.11.4-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7098d14951af392aab64e2dd2f74d0214385e8c5460b979691034c3deb2aa0cb
MD5 2d0daf23a401f066d7b953fecb7f22f1
BLAKE2b-256 de69759c42922813d2e30c9842aea91e1b2dbc52e351849ae5d396f63360bf89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.4-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 743.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for viztracer-0.11.4-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c994e1d8636e8b0324d3b2a282d7f6c8003c8712c375b93cff90d99cdae3c7e1
MD5 892acd0b637ee0cb1de4bb61253a1529
BLAKE2b-256 2d3865f23fa94ad5935bebdcb31397463b8298093ec2896eb3bda4d306bc1972

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.11.4-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 cff78f8ce8f8ae57cd65c2e84787a30122aea16cc4c4744dcc6228b6d0d57d45
MD5 df6d9c66283dab265f7a44924aa5a936
BLAKE2b-256 9d820838beb930597967d0171b2f30630096d3023e0599b9c3632d18292cf009

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 693.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 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.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9376509cec844be48e2d403bba8c1017b2d3161ffba89e940b49812ce5e4a68c
MD5 f6f40d0f7b486b4f8f3b5fb18b42acbe
BLAKE2b-256 ce3b43b30e3734f1f23f357f063d119194ec76d0dda1e1c39de040c38495b243

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.4-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 729.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for viztracer-0.11.4-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 181258f705e41b929f44920ed7e3b608f89b305414a2cc3d1d384d521f415ad2
MD5 1dcc8986d001bffe87542e562813132f
BLAKE2b-256 3ab4083d4739d2693e3a234046e9a91aab9e491103fd4465f61abd3bf0cfd46d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.11.4-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c5f35306dc04ffdd528570db15a4d4beb788f418cf0eef21bc8c67602ca49164
MD5 94c920c9fc29640841708d7669ff43ec
BLAKE2b-256 34fae368d2bbc06a836f4288ba4c2fd0c5fcc4652aa7a5b72184b2727bbb7ed6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.4-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 731.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for viztracer-0.11.4-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a8dff471d7a4acad4a30ddc420fcde43ffa275d9d6259b7b7ecaf99cf13a7f1a
MD5 280dd6b4327c23064a2a2cc1fc13dee5
BLAKE2b-256 7f208b2135cdcdf8ab964ccf4b68112a6d949b4d264286706d26aadd0d191201

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.4-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 690.5 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 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.4-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 2202a5f79bb2613c3a641f0b6ed5ae1fc5011066b13eec34377414c1e6373483
MD5 5a38383c4e121b0a7b395078dd58ea90
BLAKE2b-256 f8b06a6bc7bca02c9eb2f2055f9ec26035e2443f23ab433890a0a18b6f726618

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 693.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 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.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 101190ce6b68aadf55007870c660ef0199235a8d4cc766dfd6e3b7321b20cd06
MD5 d82964a0a5308bf354099d23a7c3bbf7
BLAKE2b-256 912f8fa2ad93a4d834024010cf150918579cf5384ba64be2a41044d84981d696

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.4-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 728.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for viztracer-0.11.4-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b01628bc412fbd48117a28b4f9c0df4b1d19bd0fe9b573aeb52e6b7f26f3b635
MD5 fe77b0f020bd3e773e321d75e9f9c8da
BLAKE2b-256 4b752bc462b6fb92f72aa9bf4916f05cc19ad6c6be606f415778a19ddd8c961b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.11.4-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b637e230652f8eddf53144de57f877f67787dc603353dffc45567b9120aebc0e
MD5 d6bc51d5615dc831087463bfff983082
BLAKE2b-256 6681182d5a2c3aa9c1278fb5deeae85373b61faf93c0173ba2f726cc1db5f24d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.4-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 730.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for viztracer-0.11.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 48dbc5b97e95257f2d1715893c1a05a02cdd104d98c0fc5a55614c130bf5533d
MD5 3cc2d8e5588b125f11291ccfb105859a
BLAKE2b-256 29546ea43cc7abeed3e4c9279c0b3320e0d87e2f863dadc10a1841749dabd59a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.4-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 690.5 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 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.4-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 d790a6180e3ee35bb1e1135579c80080a41bea09a83dd0cb8f5cab1d0ccc30aa
MD5 1101cca42d92b9dcc0eed5c2e9c62e57
BLAKE2b-256 52a9fe1921e9067abd19bc55cac217c259620558766e26e82cd205af746464ca

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