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

Uploaded Source

Built Distributions

viztracer-0.11.3-cp39-cp39-win_amd64.whl (693.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

viztracer-0.11.3-cp39-cp39-manylinux2014_x86_64.whl (735.1 kB view details)

Uploaded CPython 3.9

viztracer-0.11.3-cp39-cp39-manylinux2010_x86_64.whl (735.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

viztracer-0.11.3-cp39-cp39-manylinux1_x86_64.whl (735.5 kB view details)

Uploaded CPython 3.9

viztracer-0.11.3-cp39-cp39-macosx_10_14_x86_64.whl (690.2 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

viztracer-0.11.3-cp38-cp38-win_amd64.whl (693.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

viztracer-0.11.3-cp38-cp38-manylinux2014_x86_64.whl (742.6 kB view details)

Uploaded CPython 3.8

viztracer-0.11.3-cp38-cp38-manylinux2010_x86_64.whl (743.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

viztracer-0.11.3-cp38-cp38-manylinux1_x86_64.whl (743.0 kB view details)

Uploaded CPython 3.8

viztracer-0.11.3-cp38-cp38-macosx_10_14_x86_64.whl (690.2 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

viztracer-0.11.3-cp37-cp37m-win_amd64.whl (693.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

viztracer-0.11.3-cp37-cp37m-manylinux2014_x86_64.whl (729.1 kB view details)

Uploaded CPython 3.7m

viztracer-0.11.3-cp37-cp37m-manylinux2010_x86_64.whl (731.4 kB view details)

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

viztracer-0.11.3-cp37-cp37m-manylinux1_x86_64.whl (731.4 kB view details)

Uploaded CPython 3.7m

viztracer-0.11.3-cp37-cp37m-macosx_10_14_x86_64.whl (690.1 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

viztracer-0.11.3-cp36-cp36m-win_amd64.whl (693.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

viztracer-0.11.3-cp36-cp36m-manylinux2014_x86_64.whl (728.2 kB view details)

Uploaded CPython 3.6m

viztracer-0.11.3-cp36-cp36m-manylinux2010_x86_64.whl (730.4 kB view details)

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

viztracer-0.11.3-cp36-cp36m-manylinux1_x86_64.whl (730.4 kB view details)

Uploaded CPython 3.6m

viztracer-0.11.3-cp36-cp36m-macosx_10_14_x86_64.whl (690.1 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: viztracer-0.11.3.tar.gz
  • Upload date:
  • Size: 682.3 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.6

File hashes

Hashes for viztracer-0.11.3.tar.gz
Algorithm Hash digest
SHA256 14ee813b54150d8639fb6420b6c442e635f63cd7d92ceadb8c891dbc70ec90b7
MD5 d0ec916568c9d30cd0c2e4afaa845696
BLAKE2b-256 0a100d883de9811e41b26f489337649d09a5fef38f98121c9e3de6416cea6d0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 693.7 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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5d51353a7a5d85cbc43e75246e96abc379d1b7810546fa45ffaa03dac99de6f3
MD5 08f0bdb5dea0a071895260d2aa952112
BLAKE2b-256 07e33510f5ffbbbc70b25013cb30f1f080d724c68a4e8ed0bdb094608b1d3596

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 735.1 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.6

File hashes

Hashes for viztracer-0.11.3-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8bab031a3299e810416d3c941e159af0d2f44f041816867d2aca54dcb0719d40
MD5 2e88112305d4fa6abf1b43294a023f69
BLAKE2b-256 f4d3fc7a53e0b45e7c1db2d89fcbca9b40e0c75e2b7795e5abaed4fe915ba598

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 735.5 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.6

File hashes

Hashes for viztracer-0.11.3-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 303abc46dc4c7dede9d26c9ad0a09cc431b3a51d90a6ce670aa7fe23d01f8316
MD5 352f67aaf80f5f4b8c29315a1eb51c46
BLAKE2b-256 b2e75fc6a905dcf6d78c539b24c6cd49f41f125e447a2cb7f8526875fb962cc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp39-cp39-manylinux1_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.6

File hashes

Hashes for viztracer-0.11.3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0f611e40fd1b778e55c0f2e8af3f19b8cd0a912c815bfecfe84d85fb7649d065
MD5 435685d40eb7fdabd76dd5048c696d47
BLAKE2b-256 ac0ac9abb0c0d768f5b3e075ca1f2a7415defef2f8b3654f94db914e4e702d74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 690.2 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.3-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9ed8f94c692bd4b7c7b6e46bd458ecd3138398d0ec16917be0b303cd7af016cb
MD5 8e468d649b9d9cdb531082342217d11d
BLAKE2b-256 549164d3cc0c575c54beef100cc24b97753219fb705a9500d680a1381f204375

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 693.7 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.6

File hashes

Hashes for viztracer-0.11.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 53ab8fea8251785932f674997172ace4042f28cf54ab2db503e4b86b7043ffff
MD5 4ed05c5c444a2b73e29a5f7ff9fae128
BLAKE2b-256 166d1ca1509fb69e92107b8074212e299523960261ff43ec75a5b32a577473f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 742.6 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.6

File hashes

Hashes for viztracer-0.11.3-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b65d3b222fae878ae76c7adea55a36f750bcb4c9d1a7e711a31d37082ab0a081
MD5 dd8d4689ce49e8196b4b82b90c116123
BLAKE2b-256 dd7cbb2ef9f57fb791d5b15008f2b388b91fb6137c34a42f0331909dfff56d1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 743.0 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.6

File hashes

Hashes for viztracer-0.11.3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a842fb1bcca6b4106ce6eeec606ffaee202dad41721283b4bf006c89f7f7493a
MD5 60b254962bc48663a8d483502433dd1c
BLAKE2b-256 4c1f0cf7029a7286f69d5c97e6f7315dac0373a6ad79f665bf26090b3760eab2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp38-cp38-manylinux1_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.6

File hashes

Hashes for viztracer-0.11.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a37ac9873737ea1549dae7e793d8d93a3e79f6023b8a469b1b4c2d37acecc85d
MD5 513777bffdeaa87e38d43baaaf4740f8
BLAKE2b-256 23e297eb452e2f8b414af5cea704a3b1d9e4a850143f8add51668a8ad5b985ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 690.2 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.6

File hashes

Hashes for viztracer-0.11.3-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 bcaf4ad7b6822bc6b27b69e6fb79e6a202de519b30e6321a331f91d70abdde7c
MD5 86c7e0ae0dd5ee8beb37510ec9475b06
BLAKE2b-256 b485a7a08e8e6a8849c4f67d67203ebd06f858e2b0c31ed37c65a43d995623cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 693.5 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.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6d0c7a7826ce9afe37ad910ee7cea6ecb3d1c00d7d6211bc9f70f9b803e64949
MD5 344bd852955152f09d5a178c419ecc5e
BLAKE2b-256 1e32f86f2b6d7c71a6d34684d1d620c9b35faa3f918307009c400d3aa901f8b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 729.1 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.6

File hashes

Hashes for viztracer-0.11.3-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a739704a7b6f676e0857bfe7e0806c320f85800505d026b9221cc6b46d8eadc5
MD5 019b10cbe50b58d4d3f3c1261f588cf6
BLAKE2b-256 a2730a1aefbefe9671daa857dbcb7df4521d5e3bc271f476db2862125b749ece

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 731.4 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.6

File hashes

Hashes for viztracer-0.11.3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 321a1450a490347ba8e68c072f7fed61e0bc0304dd70fb6230e946954e8e325c
MD5 e237874ab53a0a61fccdfc9ed6e47103
BLAKE2b-256 d89a501a133b554c7837ab0a1cfe0b0ce0f740305ad0616e814d61d93826786e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 731.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.6

File hashes

Hashes for viztracer-0.11.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8468e0fcbbc3d13918087b32dffa3bc0518dcd9d384cee63148de694ddefa5a4
MD5 d3c9171f55ae9bd600bec943d355915f
BLAKE2b-256 2d9033f62e6fa93e73878c433d32cf4f039e4d52b20edc61af5bd879b5793a9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 690.1 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.3-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b24b8cccd70ba4bbca4f87ea423d04e6c0356a5eaac09487ea4a9e53b403678f
MD5 debec6bf9d7527a1d911c49c83e0b21f
BLAKE2b-256 9baecb63259a9fc12e60230c55cf80176e096a8c2ac148b382b73b23f7e144fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 693.5 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.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e5d250ed2fcd4e0cb67fdfa7712a51ec63cd08ba6759b2fb2eb4551571e63847
MD5 676d3d2964a4ff6a03e5c6a61bf0dfd1
BLAKE2b-256 41cdf86661dde5cb1cfde2866389b9f33112c0225ad535d2598354729745d273

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 728.2 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.6

File hashes

Hashes for viztracer-0.11.3-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6638e8479e431a1bf40e4d79d0cbe33e73871989ab17563fbc27dd9ee4a42e01
MD5 4cb74ad581b3ed4172ba5fe9d30c2386
BLAKE2b-256 1ebc15b809c4beac9bdcf07d7117ecb2e2a5fe1650e70d41734f826de506ba8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 730.4 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.6

File hashes

Hashes for viztracer-0.11.3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e7dcde85edd15d2eef90c81336d676feb08751c00eb26966f5a05e769a9cc6e3
MD5 dc016dab0fc95a9f234534f45af3ef44
BLAKE2b-256 2d5071aa22b9b1c5708b36054215cb80405a515150405fbef588c05efdaa4c8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 730.4 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.6

File hashes

Hashes for viztracer-0.11.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bbff599a5b3c70d97453da35308f40a57db3066991fd580bf2497335ee90afdf
MD5 60de015666d9e9ab02fe070eedd52087
BLAKE2b-256 ebd391e9f295481960f4b11edbc1ea7df8510b7849fb6b56712af46dc121cef7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.11.3-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 690.1 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.3-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f883173746f15cb0243423a47334fb9c9849ce3390f5de74350bf792fd0d2acc
MD5 70631e98060a43c59e7ad9eabcae40a5
BLAKE2b-256 12554eb8ceb4c16bbb8504c3b9f484289399e81b462b6847a8416025bb82a99c

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