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

Uploaded Source

Built Distributions

viztracer-0.10.2-cp39-cp39-win_amd64.whl (688.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

viztracer-0.10.2-cp39-cp39-manylinux2014_x86_64.whl (726.7 kB view details)

Uploaded CPython 3.9

viztracer-0.10.2-cp39-cp39-manylinux2010_x86_64.whl (726.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

viztracer-0.10.2-cp39-cp39-manylinux1_x86_64.whl (726.9 kB view details)

Uploaded CPython 3.9

viztracer-0.10.2-cp39-cp39-macosx_10_14_x86_64.whl (684.9 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

viztracer-0.10.2-cp38-cp38-win_amd64.whl (688.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

viztracer-0.10.2-cp38-cp38-manylinux2014_x86_64.whl (733.7 kB view details)

Uploaded CPython 3.8

viztracer-0.10.2-cp38-cp38-manylinux2010_x86_64.whl (733.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

viztracer-0.10.2-cp38-cp38-manylinux1_x86_64.whl (733.9 kB view details)

Uploaded CPython 3.8

viztracer-0.10.2-cp38-cp38-macosx_10_14_x86_64.whl (684.9 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

viztracer-0.10.2-cp37-cp37m-win_amd64.whl (688.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

viztracer-0.10.2-cp37-cp37m-manylinux2014_x86_64.whl (721.1 kB view details)

Uploaded CPython 3.7m

viztracer-0.10.2-cp37-cp37m-manylinux2010_x86_64.whl (723.0 kB view details)

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

viztracer-0.10.2-cp37-cp37m-manylinux1_x86_64.whl (723.0 kB view details)

Uploaded CPython 3.7m

viztracer-0.10.2-cp37-cp37m-macosx_10_14_x86_64.whl (684.9 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

viztracer-0.10.2-cp36-cp36m-win_amd64.whl (688.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

viztracer-0.10.2-cp36-cp36m-manylinux2014_x86_64.whl (720.1 kB view details)

Uploaded CPython 3.6m

viztracer-0.10.2-cp36-cp36m-manylinux2010_x86_64.whl (722.0 kB view details)

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

viztracer-0.10.2-cp36-cp36m-manylinux1_x86_64.whl (722.0 kB view details)

Uploaded CPython 3.6m

viztracer-0.10.2-cp36-cp36m-macosx_10_14_x86_64.whl (684.9 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: viztracer-0.10.2.tar.gz
  • Upload date:
  • Size: 678.4 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.52.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.2.tar.gz
Algorithm Hash digest
SHA256 8bba6cad26546766fc5f04f263eee945ad93ee301131202bca923d6d7bdd78b1
MD5 8258b3f206e174b5bedefc211ea309f2
BLAKE2b-256 b522efc92b0dc0c7d8437a0fc22cb680f38380d566cdfea61446fe3d6c325aa4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 688.5 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.52.0 CPython/3.9.0

File hashes

Hashes for viztracer-0.10.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3d8a82084e1288636055583b18500a403c1f4906eda62ed3c12474a662b1bccc
MD5 fd1c6939a17884ce8dd21114abbdf30c
BLAKE2b-256 ab71509caa023482dd7809e67d59b9dca8a1c244228d5c24bf16ad2461f50e88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.2-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 726.7 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.52.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.2-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4aa2fdfbcb7b0db11c7790369d7dd477bfe8674606afd23db8448017ff6ef2a
MD5 e000b91c0f99fbc9e0151e8ed589d8fd
BLAKE2b-256 a018e82d73dc651c7a2c74d53afd630005087c4c63dc018df25172fae8c18f1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 726.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.52.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 93ff648b7ee8e6e11f5470ef1bf9a85923c9daa4878e517a3edda3c50df66d34
MD5 728dcc66584cf49623f6bf1676606da3
BLAKE2b-256 c1c0c6c62aacf317163c1459437fad41bed2d2cf187ff6cffae17cf32de16c90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 726.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.52.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 70c30a9907df85a07429515fc9f60467361ea4f6af1a917272f9bf2eda89af0f
MD5 16edf1538be45515fe004eafd962ec6a
BLAKE2b-256 034745dddbfaf9ef13eee75a107a096a4ea898812d89e6336500b22ed4c42ee6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.2-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 684.9 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.52.0 CPython/3.9.0

File hashes

Hashes for viztracer-0.10.2-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 d1186f1e2f4efcce97a7c931a5e93072509903e8c863f2fce9a487b0b80ee378
MD5 c295a1a87691ed9399bd30c2622d0aea
BLAKE2b-256 9e34b5135f18bc58284a110a03b81ee4c96133316f19f58f51b6ca1f02d9d373

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 688.5 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.52.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a1239737f0a239683ec0a3b6acbad50753037631819d723310b3e68c099bde8b
MD5 0dad31b1685d663eb1c3d5b040fa157b
BLAKE2b-256 71ae757888b2db4ae1cc1a789e88157d713a9cb9861360111b7d0e3b689d78ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.2-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 733.7 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.52.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bb97f762a77ee068cedaec6fd2fbd2f6e76647a4d017a8041d44d8f9c26d38a
MD5 a0af4ddc76116c5f3f6966f70b7701ea
BLAKE2b-256 1f776370f867f2d89fc190c2c8cddf04daa8f98ec9e8d2917c151a1c00337ae7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 733.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.52.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f2e02f3ce30775ceba6ad959807ccca38935bc577f501311fa89b3b457fb6841
MD5 622eb83a91fb20949a5f19d9eaf5fc5c
BLAKE2b-256 b750ddbf15585c2c09f64488cd34099451a56c8bc750ebbc9592d5007215c0b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 733.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.52.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0472027526c976828d28cfa2017221bf4c574f4d0e052e99ba25f6833eb9e7cf
MD5 69d5b289d0fdf68c971aa437c47d34fa
BLAKE2b-256 f4008a5081f4222efa508722970d6d39b192ba38fc269ea06422f5a4a54b8ee9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.2-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 684.9 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.52.0 CPython/3.8.6

File hashes

Hashes for viztracer-0.10.2-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e09c17f0871519b717a882223d9eea6abceb141b3ed868cea1528d511e12e994
MD5 b00d593fd7ab398850889937a387ebaf
BLAKE2b-256 513a29367f10d03ce053ebaf01af242b1f43d93bf8d4678f79e80476eb8f7062

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 688.4 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.52.0 CPython/3.7.9

File hashes

Hashes for viztracer-0.10.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9e9e24988b624dd49726e7a5feb771b3ab82dd3fdda759e7f7e97e3d26d56117
MD5 03a2ad9354a0a5bc43232d29ae4d3d2f
BLAKE2b-256 84259d08bdcaa5c44afdd245a9b0e8a65259d46d3e25f0ceb6f1f439edbca613

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.10.2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9460a277189fda14bd8dc57e43beea60a7cbcdd25c9735ebd49dd4f90fdaa8f3
MD5 1228acbb67b6ef25dbb8a403d48c8f45
BLAKE2b-256 c8f301945f3c5f08b272ebb2c5e9c3301dce13cfd126c1e3655b3ecc07df5b5e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.10.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 71f4a5ff76885c38fedac30ccde9f3dd7bd46d15c82622615381ca254d62a60b
MD5 901b88eb825baa06167d272fec1979ad
BLAKE2b-256 ec1799337476776634f9f3b2a0bc62c4317b4674a6587c0a9bb51f9ce16d95d0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.10.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4316963e2ace3983ee0acb920edeacd049a6b48971f89c695a6f4e058e449c9f
MD5 050a888460acbd1b53164e0346d614fc
BLAKE2b-256 1b88944adb90265e67f93795aa7b16391bb8ea64206a45ee3e74e4a27ee37920

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.10.2-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f9383e5f51f7b44d73aee7800f850de56a7f7afd4818d934a72f60f862e1a14d
MD5 89728710316e02489c7f44154733c961
BLAKE2b-256 2857d326391a8e123e8c0b5af0cb0e4391a7e7456e92a59f7b35bb871b66d2d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.10.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 688.4 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.52.0 CPython/3.6.8

File hashes

Hashes for viztracer-0.10.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b50331559867bfce824bda228f6ae58f2c0dbd736948f540534cbbeb760eb6dd
MD5 509c6de5b1872340775813763168001d
BLAKE2b-256 dd2c29dbf43684991e7b89c5f11e16f3404ea9ddd8c048fa9ee98cbbc663cfac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.10.2-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5d3f6c63096d39cf8b10959fd701a6461fb3244e5c89656af5d0dbe4a5d4327
MD5 6cdad3ea03e4b8171dfe0c731417b266
BLAKE2b-256 271f01314f3ef3ac18f725676c5a56c2aeccf99c959c212610c5f09e62c0da61

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.10.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 066461632a18af127f29d865468060b675305550d195d4d60fe135b3940697b3
MD5 1a2dc774fa5e8c06e5b37e11b72d1421
BLAKE2b-256 2cdd9cdf88a40e28c5651d86d69e7c5fea2809fd6d6e67b0c3afbffa20d1dd1c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.10.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 16ab8ea0f1310e42ac3b7d8b5b2d3576a38b0494bb611f4d0143a2e91c61df82
MD5 21a499169e95a541f0bc7ba93bd12ecd
BLAKE2b-256 c8bd9cd51899e3a6b786de6b4ef567cbf5bbada303b78a5514efdfe88e7996f6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for viztracer-0.10.2-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 915d10a6d099bfe566b8264a56b0f5db97db95efac8048d49fca1fff0f599717
MD5 df291a8b9beb4b3e1f69adc1952e3d21
BLAKE2b-256 4d242dabeda295e097675b84a69c7fd13d9298c67b18d619039fe7e12746d4df

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