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.

The front-end UI is powered by Perfetto. Use "AWSD" to zoom/navigate. More help can be found in "Support - Controls".

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
  • Supports threading, multiprocessing, subprocess and async
  • Logs arbitrary function/variable using RegEx without code change
  • Powerful front-end, able to render GB-level trace smoothly
  • 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
A result.json file will be generated, which you can open with vizviewer

vizviewer will host an HTTP server on http://localhost:9001. You can also open your browser and use that address.

If you do not want vizviewer to open the webbrowser automatically, you can use

vizviewer --server_only result.json

If you just need to bring up the trace report once, and do not want the persistent server, use

vizviewer --once result.json
vizviewer result.json
You can also generate standalone html file
viztracer -o result.html my_script.py arg1 arg2

The standalone HTML file is powered by catapult trace viewer which is an old tool Google made and is being replaced by Perfetto gradually.

Catapult trace viewer is sluggish with larger traces and is not actively maintained. It is recommended to use Perfetto instead.

However, if you really need a standalone HTML file, this is the only option. Perfetto does not support standalone files.

You can use vizviewer to open the html file as well, just to make the interface consistent

vizviewer result.html
Or add --open to open the reports right after tracing
viztracer --open my_scripy.py arg1 arg2
viztracer -o result.html --open my_script.py arg1 arg2
modules and console scripts(like flask) are supported as well
viztracer -m your_module
viztracer flask run

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.json") as tracer:
    # Something happens here

Jupyter

If you are using Jupyter, you can use viztracer cell magics.

# You need to load the extension first
%load_ext viztracer
%%viztracer
# Your code after

A VizTracer Report button will appear after the cell and you can click it to view the results

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, multiprocessing, os.fork(), concurrent.futures, and loky out of the box.

For more general multi-process cases, VizTracer can support with some extra steps.

example_img

Refer to multi process docs for details

Async Support

VizTracer supports asyncio natively, but could enhance the report by using --log_async.

example_img

Refer to async docs for details

Flamegraph

VizTracer can show flamegraph of traced data.

vizviewer --flamegraph result.json

example_img

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.14.3.tar.gz (8.0 MB view details)

Uploaded Source

Built Distributions

viztracer-0.14.3-cp310-cp310-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

viztracer-0.14.3-cp310-cp310-win32.whl (8.2 MB view details)

Uploaded CPython 3.10 Windows x86

viztracer-0.14.3-cp310-cp310-musllinux_1_1_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

viztracer-0.14.3-cp310-cp310-musllinux_1_1_i686.whl (8.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

viztracer-0.14.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

viztracer-0.14.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

viztracer-0.14.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (8.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

viztracer-0.14.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl (8.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.24+ i686

viztracer-0.14.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

viztracer-0.14.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (8.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

viztracer-0.14.3-cp310-cp310-macosx_10_9_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

viztracer-0.14.3-cp39-cp39-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

viztracer-0.14.3-cp39-cp39-win32.whl (8.2 MB view details)

Uploaded CPython 3.9 Windows x86

viztracer-0.14.3-cp39-cp39-musllinux_1_1_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

viztracer-0.14.3-cp39-cp39-musllinux_1_1_i686.whl (8.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

viztracer-0.14.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

viztracer-0.14.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

viztracer-0.14.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (8.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

viztracer-0.14.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl (8.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.24+ i686

viztracer-0.14.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

viztracer-0.14.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (8.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

viztracer-0.14.3-cp39-cp39-macosx_10_9_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

viztracer-0.14.3-cp38-cp38-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

viztracer-0.14.3-cp38-cp38-win32.whl (8.2 MB view details)

Uploaded CPython 3.8 Windows x86

viztracer-0.14.3-cp38-cp38-musllinux_1_1_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

viztracer-0.14.3-cp38-cp38-musllinux_1_1_i686.whl (8.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

viztracer-0.14.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

viztracer-0.14.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

viztracer-0.14.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (8.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

viztracer-0.14.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl (8.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.24+ i686

viztracer-0.14.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

viztracer-0.14.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (8.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

viztracer-0.14.3-cp38-cp38-macosx_10_9_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

viztracer-0.14.3-cp37-cp37m-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

viztracer-0.14.3-cp37-cp37m-win32.whl (8.2 MB view details)

Uploaded CPython 3.7m Windows x86

viztracer-0.14.3-cp37-cp37m-musllinux_1_1_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

viztracer-0.14.3-cp37-cp37m-musllinux_1_1_i686.whl (8.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

viztracer-0.14.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.2 MB view details)

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

viztracer-0.14.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

viztracer-0.14.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (8.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

viztracer-0.14.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl (8.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.24+ i686

viztracer-0.14.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (8.2 MB view details)

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

viztracer-0.14.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (8.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

viztracer-0.14.3-cp37-cp37m-macosx_10_9_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: viztracer-0.14.3.tar.gz
  • Upload date:
  • Size: 8.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3.tar.gz
Algorithm Hash digest
SHA256 6b5111c14f44e98bac493bbc499370c60595f596d822059ce2c3b74d7ad80752
MD5 2093161e58ed4b02092b3b9e2af4656c
BLAKE2b-256 68138764aa0266ec59f202cd5dc8990357caa9cafb21ab4598ef42e0a7b53c8a

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: viztracer-0.14.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bcafc7a5b756b11cbd46efae9da613ab16f2f41bfd74a1f921d39cc9d3889ac1
MD5 90710bf774149f6d4bbac515cce1a298
BLAKE2b-256 48fb8c850db27ed2cbbbf83f50a23654cf8c766dcba7a4016b657342aa5bf82b

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: viztracer-0.14.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c9a8e15d8f436abab4e7e6324ad4a3c4617f8c4d97fbc6dcde9e0fb482d82076
MD5 e4361ec115981e4edeb556b5a607b4a7
BLAKE2b-256 ff5f71b6250a1f7c9a470c9a3d857fcd1d4d4f5f3cc22b516db19fe5c67c7cfd

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: viztracer-0.14.3-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 05d633cbc739f54aadf2250cb7f74fc4dabcb83edf2bb0c2d8e392032c8c7e21
MD5 68bca6fc38f175c3554d4d89f26de1fb
BLAKE2b-256 ea13483e5dfb4948d8acc40eeec6a7aa1323ca2cd1aa7cada280dd8262b0c27b

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: viztracer-0.14.3-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4b162a9b36b8f176029c62d1849386eeb5bc810a862584fdc72d368e11767fd9
MD5 4e3a0d4a619f0897140b9759e44eddb8
BLAKE2b-256 2d21791f08e4250f1f953f756ebc309018d246c4c5db45785713b9b8d58402f6

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 821c34db7bbd44fa4a2bf8b67c4887e6575fdfc584fcf092962001d9881d1a04
MD5 edd0d75984aad4a6da2f2faa825276d8
BLAKE2b-256 ddbe2207d04a0a4af57bde14ae6e2d743aa9894aaa414ee9d8261efdd089a13b

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 6d4c0e386866cdcf8c5dca2d7384ad792b41ae2cf8ca89ac7fce1676a71cd2c0
MD5 a3883f90c8e4f81919d1204963cc3847
BLAKE2b-256 3ab667cc7f6e391b47df3c98a237b9451d8d0adde6da9671855f9f753f978959

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1f337c3bcd5d2138a9f4d20e78cb2bd26c5166cd6f3294daff6140e2f4018022
MD5 c04b5bce4e2240a9281457f2ea1c041b
BLAKE2b-256 3af158a5ea656271106dcf12e587a8675008423417e2dbe8519a41e30f0a5960

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 f31afee412f72174aa6c1bbf6d0de60b8033fca0d5b5575ba4e47ba9ec52a3c3
MD5 ed126aaa3575af59fd0724f6a54285a6
BLAKE2b-256 f45449fbb236aa6e97972cd19e4a30805fdff6c88f8b176f81d88dd745917b02

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4d63b61f87b4ab0b8e4c601d6abf64c6c1b36466464c35bfda9bc7afb6b18c91
MD5 b90e47408f63972e6d9da5b4493a6a09
BLAKE2b-256 401634abae4d974b20386ba1676c8091fe3b369c39cae6ac5240d15349a6553b

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e89c8cad1733ba4b8de025751dc463052127c012c75b74336d1f0e70858093f7
MD5 95eb2c969208f247a3941f072eda0ce0
BLAKE2b-256 dc4a5fc66ed27554d445cb1a9d523e081850434190dd1f4644bd96058b76f720

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: viztracer-0.14.3-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9598905c56f3b9e9ead0f8832f748bb5c2aecc5afa705622d98577ac206bb4d3
MD5 5d9c0efd86ace6db65b729e68a08a998
BLAKE2b-256 ce627c44dc5664bbf929aa7713caf912f4dda71bc7db3a1d0cf46699a44181c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 794f4e2a61d380acb56f9470b36e57af1c2172931e4f8b461b1b772373ab8dec
MD5 d7fee857da94e6b0839c0b5dcfdda64c
BLAKE2b-256 0043cf7cbcdb507e73f034728467d8e8843e1c111e52825339da18f8ce01b0b3

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: viztracer-0.14.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 03b30496f626f94f665eae18c50e709a533c40094c951f3ef13120cf2461bf41
MD5 b35eeda0029653942c43962ce0471fbe
BLAKE2b-256 7c13315367d8567350bd0706ad1727920aa0cf36010d2bc4c99fed168ddbeb0f

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: viztracer-0.14.3-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b28e8f8cac4f124406583dbf3062834dbc04ec7cee48076689d4429e05fd30b0
MD5 11eb1c9ec1f85ed6f05cd2c32e98b565
BLAKE2b-256 ea758a7cd642a0a7b0a7f8f30da10a3ebbf2b264dd8987a84661a5adf5aaeb5e

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: viztracer-0.14.3-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 57ba4f2752ebe9c7b24d8ef02ae6bf8a24874a8fccb990db41134753caa52d56
MD5 153caf2e4a59aa7deedb625ae46ee8c8
BLAKE2b-256 cff5b7fb29cbd299a73a532de8ea3b01efbac096daaf9692c8a3874af6eb1044

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9c8cf99fcee515a50c0740658836eca8848578086a6f74c970a2642306c1eb6
MD5 11def9dd78e520f7346062451766849b
BLAKE2b-256 ed2dc9dff2c5bdb9ed8a650c394f604b22c3ed8d220be13a0ae65fa9ac21feab

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 327b8eccaa22e85e2c90496a8f12182724e9b175ee4a8f00cecb3594107b8b72
MD5 88d53f580fb616ad22c9b1c5b906014b
BLAKE2b-256 858add3bb067b934480e12c66469364c4b28b7a9130567a3ff04c35c1ba310d0

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac60e5240d458c97c7503312d807f48c6391d01533c91304b5b1ffcb97c91f3d
MD5 3f08cd45578652ad4b3a67b4fc80e42f
BLAKE2b-256 579783ac7f7edd9505a468cf82dbc7c8318f14c043658f71a84a9b5168a4a494

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 37a44222b3e8ad62592bc20d00726418e0580cb1f8471f50fa83b031707594a2
MD5 2899f7fd8637f806201830db6b51b812
BLAKE2b-256 9f80b508bd28c92a0ece41641f00225034c3172209a70d230b0eff7a52e9d3d3

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6656132c69ee836a9084713163292caacbf6748ee26c4a7c6cadbb9200b2cdb3
MD5 5362ea965da97d67b40c36305e89250a
BLAKE2b-256 d9b924f96f29c3e9beed13dc821c0e7b71f840a94f45ff3ddc83beb57df3fe21

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cd33293228c48fc54e958528d1dbfaf5d87e5e22d8f97cd3718083622eed1e92
MD5 1c656e3510471a37114a301771a8cf23
BLAKE2b-256 28f42fed84d304cbe4450a77e034dd15eb1d80327d35cbf6128409c457273508

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: viztracer-0.14.3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eeb928f9fcbab1ce99d1c4ef8bed201283d0c733d65c2e1c2b3b7b92e94b07c4
MD5 a091190d8f132aec7e5c0e445dfaf991
BLAKE2b-256 b76ef80802a5ac8e7112f6828e99a3581aead9eb6f168c6d62b95f770d5e06ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1f919f4f1ca6540ef4ec93c1390528e987102adc3bd4159a3b6db7badbdcf4a5
MD5 e08e640c0eb98c221db41593ce3b4364
BLAKE2b-256 a89b328376c9ca4e59de084b3727920dd3048f64b030a276f41eb38006efe976

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: viztracer-0.14.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a3434308ece3fb6c877fedaef413028b51a2821d69512882c8df33630af126b6
MD5 355f956a9f851afb2123165e54e44281
BLAKE2b-256 25aa2509499a03e6c059ab04059ef2da51c97302afa4086ceb180912cd70829e

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: viztracer-0.14.3-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7202d1747b82876315f6800bcad7f6fa5b1b4a56f86fd124c00b5ee8168ed5ba
MD5 673adf695c0c169f4ae01953c9c7749e
BLAKE2b-256 363e13fbe4225aba4f74de7fa5fc55ff9b1d0436bfc40cee371e9203124de361

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: viztracer-0.14.3-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1da6de46fe57aacea9ccc5ba68c1a0627b1e4c3b3347d5bc8e8f60bd64fb448a
MD5 fd38283cb7fa9048891beb7276dbd8ec
BLAKE2b-256 64e2fe90d0d2aa5e1b363a71259cd0bcccace76f9db926680353eea66e2e1257

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93a86374ca79f048c8a8bd7a98b11f3251df35cdafaf1eb4ab07187b004c26cc
MD5 a2ec189db0bb0330b834670395c26404
BLAKE2b-256 80246bf2dd987e4a7204f28126ca8bbc77516055876fae5be8bba87606551c8a

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 7341aadc9f588fbdaa55c46435fe9ebde7ff7f9436dde3bd1088498b85712a27
MD5 f0d435a7641cb516baa48e73594be74c
BLAKE2b-256 412ab1bd31df672e71210dd60475544a2b2a9179434c03e68f11683ef1fe0eaf

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4738f2d5ad425b128b731dabd81ea414c2c3c6adf2c21c4ce9cde5e30e75dd43
MD5 b0e86c1176d837f01a629aa55076dd18
BLAKE2b-256 e2337f7b88c6a28d40fd1c4b4d95edc29a952f260fc3bbe863ea16d370b6921e

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 25c578716245e37d6c7956cbb0e80d10014fde5da95d5c25c07290e54dc84564
MD5 c59f2719ee8337742847bec1ac091e7f
BLAKE2b-256 c9c670e58114871887cf95643d8b7d4c538c969b4837cc15ead7960d1fead7a5

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b787af0d399b77ce953433a0fa0955b3ddce94298fcf6020907b0598cbbb5b04
MD5 b03e8ce009a9e3b348de74b3ea500ec0
BLAKE2b-256 504a8b4dc7c2e3f93091a01c0a92fa4e80e80f4450e9eddc7edad44926adccf7

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 612069cae115fd64c2299b2cee2c3ec311f4ce8d79e7d8dcdfe14404db61f6b3
MD5 cb6f2e21286a647a257576bb4b2b0b0a
BLAKE2b-256 9dd5b1a68175d91962d2bdd61211541f566c0f2ee960f4b96df44c04ab091e8a

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: viztracer-0.14.3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4673fb13465a3175b84102b4ef9b67451e8a576b8dd5798463603acd812b781
MD5 757507072c2fe529a26e070c5d68e26b
BLAKE2b-256 ab51640f495096eeda37ba36f508683d49739ae787f4f6804c3e53344b0463b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e50637ea699acc8fe032e5eee0ab47f3f977e87724444a66c44112804909f22d
MD5 05c8152fbcf3b0b70aa14dd53e3548d4
BLAKE2b-256 1e04b442a3135d5f48bc051c2465222b6d1b7cc2a409eeee28178e8aa8d35365

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp37-cp37m-win32.whl.

File metadata

  • Download URL: viztracer-0.14.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8825c8bc286f05a2ac0a9a652adfbbf2f3b7f642df48051b81ff0e17e85284ae
MD5 f53f0218cf54942aa1888a2e53010c36
BLAKE2b-256 ce1da91f2686345341f1108783536fadd4c365cd314aa18df5b920240a5a7ba7

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: viztracer-0.14.3-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 68ab6b8a5d4c1766afbf63bae4d7734cfd73183dbc31eb9b73897046e0f4c787
MD5 4a64c7cdc24e3fb9b7c2fb37b1d9ecc7
BLAKE2b-256 6d405847daa2f01fba9469b62cc2a22ac9a51e123c53c801b13f7a211b90df81

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: viztracer-0.14.3-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d39f89eebe9a9c53c34dabd36dd935b3381aa6ac88fda87bad2bbf92a5424827
MD5 7f42dc29c9a6686698eef8d1ffc86c2e
BLAKE2b-256 409f1ed8f69f5ef96280b9963b382f3113338b5d27078c8c08b5e0d0aaf86457

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56c3b45d6f195b19a4681be8b62d681b2b3db261fe7d7ca4ad6226b6fa83730a
MD5 a548047a7ec951f8ea9e8b1b6003680a
BLAKE2b-256 42363cb8dff1b4d317b5b3f62076b467d39427c019c1b35477790f784bab5e2a

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 b92b3ebb18affdda644d7d2ffac1c2217de4e46373d849742f0b8fa557740b32
MD5 af969100ddb689627046a7341030326b
BLAKE2b-256 2038003578a300921aaaa4f8a278ad629534293dbdac3baf17ee984fe7d2ea53

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b5d76dee15dcfc03330ab2a2b9d7b8f557591f344f887308dbf31cfefbe54daf
MD5 62657de690ae2902a7b5aabf8718d07f
BLAKE2b-256 95d7f489fcaec624b2d38ed5d50d2eec13529908bc69bea58fcf8562bd38557c

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 97e525c46d21687d48ab6105806badc783c18a2722ae10e64d9eda1f55d74d74
MD5 7b67ab869ae20b2332d6de13401921e9
BLAKE2b-256 b67a64d0f5dd15bab7404b9e9610025a005219760149e1661490be53223a839f

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fd3a9e2e175c58ceb5a84c6ab7d7647246bbf0e8ea4106eb6f78eab34cf5f5df
MD5 71599d0409b68a3875599fdc3c40183a
BLAKE2b-256 4acaef36a9eb203e7b7ad80119b89fb00c6951614c0194ff5e604efe4b74f9db

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for viztracer-0.14.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5ac0aa899e2352c6a0f6c021d5c8efeafa6a734cc551e676f28bd2cdebf134b7
MD5 a7ec4e0c5856dabd6185bb18fa4af185
BLAKE2b-256 f4001db4873e6ddbd83a80c3bb9f68fb30ada954151078b5a6be8f92c68f0a6f

See more details on using hashes here.

File details

Details for the file viztracer-0.14.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: viztracer-0.14.3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for viztracer-0.14.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d04e3da88d16001fd559ecc6c788bdab4aafd10d2bf6d9eb36e96b82e799d75a
MD5 47716de22c1264316de92cf1bf49e750
BLAKE2b-256 c226748cebef9e01da55889d958d85d70511c74f73f645c819fc8dd008614171

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