Skip to main content

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

Project description

VizTracer

build 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.10.5.tar.gz (678.8 kB view details)

Uploaded Source

Built Distributions

viztracer-0.10.5-cp39-cp39-win_amd64.whl (689.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

viztracer-0.10.5-cp39-cp39-manylinux2014_x86_64.whl (727.9 kB view details)

Uploaded CPython 3.9

viztracer-0.10.5-cp39-cp39-manylinux2010_x86_64.whl (727.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

viztracer-0.10.5-cp39-cp39-manylinux1_x86_64.whl (727.9 kB view details)

Uploaded CPython 3.9

viztracer-0.10.5-cp39-cp39-macosx_10_14_x86_64.whl (685.5 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

viztracer-0.10.5-cp38-cp38-win_amd64.whl (689.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

viztracer-0.10.5-cp38-cp38-manylinux2014_x86_64.whl (734.9 kB view details)

Uploaded CPython 3.8

viztracer-0.10.5-cp38-cp38-manylinux2010_x86_64.whl (734.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

viztracer-0.10.5-cp38-cp38-manylinux1_x86_64.whl (734.9 kB view details)

Uploaded CPython 3.8

viztracer-0.10.5-cp38-cp38-macosx_10_14_x86_64.whl (685.5 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

viztracer-0.10.5-cp37-cp37m-win_amd64.whl (689.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

viztracer-0.10.5-cp37-cp37m-manylinux2014_x86_64.whl (722.1 kB view details)

Uploaded CPython 3.7m

viztracer-0.10.5-cp37-cp37m-manylinux2010_x86_64.whl (724.1 kB view details)

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

viztracer-0.10.5-cp37-cp37m-manylinux1_x86_64.whl (724.1 kB view details)

Uploaded CPython 3.7m

viztracer-0.10.5-cp37-cp37m-macosx_10_14_x86_64.whl (685.5 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

viztracer-0.10.5-cp36-cp36m-win_amd64.whl (689.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

viztracer-0.10.5-cp36-cp36m-manylinux2014_x86_64.whl (721.2 kB view details)

Uploaded CPython 3.6m

viztracer-0.10.5-cp36-cp36m-manylinux2010_x86_64.whl (723.2 kB view details)

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

viztracer-0.10.5-cp36-cp36m-manylinux1_x86_64.whl (723.2 kB view details)

Uploaded CPython 3.6m

viztracer-0.10.5-cp36-cp36m-macosx_10_14_x86_64.whl (685.5 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: viztracer-0.10.5.tar.gz
  • Upload date:
  • Size: 678.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.5.tar.gz
Algorithm Hash digest
SHA256 258c8775cb65620056141069f7c0c8ac8df33ab843f076d817611555e0b97fc2
MD5 9244732c732a6e6bc79d4ca7a180cd91
BLAKE2b-256 115ad5e402eb20ebf2db9235547ed9615511ce9e071103ddb66066bf6b029632

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 689.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.0

File hashes

Hashes for viztracer-0.10.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 196792e519f304c25bf6b8c31e3f064f63d490ce453f2d5e6f06ac0fd734a45c
MD5 57e5aac44d4055ee97e404da4ec15fe5
BLAKE2b-256 2de19966cf9b73f67033293177488c60f12b6631759960eba3fe86d69644660d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.5-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 727.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.5-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dab72539bec7e3635f26c52b6e7d370bdf153ba538fbe97e23a202ed3d4499f5
MD5 fcb583e8b462bf23dc3e446ede56300b
BLAKE2b-256 18ffa7cddb345a89e93bf88b05291824b0fd6172fbe92666f0a02b62d36ffc88

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.10.5-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7c79cceae6fef28405616b7facbc6f7ab1c41e27ae507c138ab770638ee96323
MD5 9a455a6a2f270ec3eec1618386ad3de5
BLAKE2b-256 6950d518e9b329241050150bd7ebcc5e282b6a2a9d1e2bc1e263d89b42a921e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.5-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 727.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.5-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 661abf0564d863bdeaff6a47cc672844a77e57922821151e15b3507303fd5628
MD5 7f6e54fdae1c04b6f93f900d8cb1ad2b
BLAKE2b-256 9f81a0ebcfdadb188c6675d66a5f2177e5810cfbdea8b82c032f839de2953ca4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.5-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 685.5 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.0

File hashes

Hashes for viztracer-0.10.5-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 48e3c88c53d320d146c0e8f3b33a646247c522aa8aa800b71bbe2020b0f80e95
MD5 51718c1e847a052224a273633fb590d6
BLAKE2b-256 eb844bb4396dc3f9d0de035be8ee5d147709e5fca531a1d2870191720181c3f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 689.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 127bc4d6a96cd2b94b9eab3e62bfa1b527cfa26eecf52c1be1ea063d3055449c
MD5 301c998dd6c061f0a207571aabc853ea
BLAKE2b-256 c5158bcf4b8209ead0ace1165be35b86a61b2d7ec404c2dd3c75cc3d35d59ef4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.5-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 734.9 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.5-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ebe0d328929787d01acbb97fdb5d16b94546713b27c06b2764ae3f61e554678
MD5 4688ed97c0577f2eaf8e8091ac320457
BLAKE2b-256 18085bd2fdbfa61aea31b3bcc3ee2d28806f1601ccd592b26100ed6694d5e5ed

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.10.5-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1630c1dca69e99be9f9153f9d785581990e6c703ef34938a537b3c18e9d37809
MD5 1708eeccb4e0152ab4bee249d1230afe
BLAKE2b-256 04da463484fe1fbe0272bb7db9bf8137670213b0bb8ff1e333d288a2b403131c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.5-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 734.9 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.5-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 eb40d693181348a45dd1a5a65193994d4d3a84eb415fccda6d2e012b0213fe98
MD5 59bc5dfdc21339cdf418bf4ca41e5165
BLAKE2b-256 aa0bacbe43599ecff9b4e7954c891a64183dc96db53fb007500ffd09a494adc9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.10.5-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7d927749243220ff72fa124b2fc531f226a3dc34bfe36eaab739385864318f44
MD5 703d19c8fb5916cac83af80004230e78
BLAKE2b-256 bc7a5e5bc5aa5842ee5882a5feb19076cb671cfc03fe2a327c05cf0ced94d46b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.10.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 01bed23e7bd7cbcea958d23bacf671c996bca6833812696528362ea6063f9b99
MD5 a2091546ebb151c743f0e0f6c05cc6ab
BLAKE2b-256 bbb4e6d6eaf74fb665e98810471ce22b746cfeb6adea983c8e79f05d2759a6bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.5-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 722.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.5-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01d48c70c0666c1a6d9d28404c6d79f495720b56c366ceff865cdce97d4db2df
MD5 3aef8e6509e3da2a2d5c7394ed6dc6e5
BLAKE2b-256 7201e39d880a54c5ab1d0b6e4a59cafd31039a4ddc209431e6f71b77bc445f17

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.10.5-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5f28904ba4b594c4c85c40e0c1e708535335e486ba0ed978c1a5ca0201f15baf
MD5 f8df031a25981d4ad3a7696e437ceb9e
BLAKE2b-256 1d4b7a453fef5e3aa9798c3e5c59dd8951e003db4b8ebf18f40f2f7f3789670b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.5-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 724.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.5-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b56a96d54ddd438cdfb3a87a56dd16f54858288aa5982aa734e88c27488adc7e
MD5 3dff2c60d8609bfbc3ec216a9b6cdc23
BLAKE2b-256 32016f6acb3f36da38efec64fc76a2fac42ca256d4df6937e421c4bdf4232db7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.10.5-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f233ad785d0b828b2f28c02da53f98d8e1bb48dad6017b3839bc91f9eb7058cb
MD5 f15fabe19aacc7caa92b05c8b7abde38
BLAKE2b-256 a7ce496626577f3df2aa1be89cb53ff6dff5e5308a5d38154f235a68800fc163

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.10.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d658653b55bf08a6c75098654c0b21848fcc87eb25448a31bcd3727757eae8da
MD5 92eb2f113251d63c4ed860ec172515a7
BLAKE2b-256 6cfeb94ff5ac108cc9a59ceb93cfa729d89d0ff397b3d554e25701bfcd9efc4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.5-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 721.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.5-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 203d4c715da45a4f131cb363f0c91c5275d405b31589d98a85a653a867ab3e78
MD5 1a69414d2c16b579d8b8f2f0e13ac1e0
BLAKE2b-256 db70a2b1494272ca6b305afdc702e138cab43ff14575737040b3de392a251945

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.10.5-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 360917c85d8e32ec5053d70fe04b3f40bf1a01da81a8fdb0a6754e6470b69fa6
MD5 2ffb740f50e5ec538bc326737327ed87
BLAKE2b-256 180b9045a0dd54ab368fb4cb6a4baa332fd7e60379e3b71a075980ee322cec82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.5-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 723.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.5-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5fe0f158621966b36b809386168fb421d0c7ebd30f38100e3dcff8a6dc2050d1
MD5 5647898e8079390ae4dc238b4787b900
BLAKE2b-256 2868c506da68b79e049dc1a7b5b11bd1f66b22608f20355d7e7bd76c35b7be1d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.10.5-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 2893494e6dd478f6e17285909af919680e0da839ec751adcccc71002a9d01df0
MD5 a6ed7449251980eb93d2d7ebde88b72d
BLAKE2b-256 1972c6adba2069c4dcf9658fcf1d6a035d85828cb6bf92a5cbba10986be460b9

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