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 and os.fork() 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.2.tar.gz (8.0 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

viztracer-0.14.2-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.2-cp310-cp310-musllinux_1_1_i686.whl (8.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

viztracer-0.14.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp39-cp39-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

viztracer-0.14.2-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.2-cp39-cp39-musllinux_1_1_i686.whl (8.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

viztracer-0.14.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp38-cp38-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

viztracer-0.14.2-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.2-cp38-cp38-musllinux_1_1_i686.whl (8.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

viztracer-0.14.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp37-cp37m-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

viztracer-0.14.2-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.2-cp37-cp37m-musllinux_1_1_i686.whl (8.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

viztracer-0.14.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2.tar.gz.

File metadata

  • Download URL: viztracer-0.14.2.tar.gz
  • Upload date:
  • Size: 8.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2.tar.gz
Algorithm Hash digest
SHA256 b75b3e1a87821889a21c10277d4b027e372978a5abb94e372d24f85a44f53f32
MD5 2dd5ca1893f89b9328cb2483dae904ae
BLAKE2b-256 85ad0735ecdc9a3484d05f3e3c373e7bdda932953bcab0b738c16f0b60f721a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 af9bcd36046cd9e9627e4e1c994261cf6fb84605e11011b8e76ee4df1ef5b6b2
MD5 41e7ff92a003b9e98cfb90d1c1add41e
BLAKE2b-256 ce439fa95cca0e282e1f337b1c521689c16b87423637c390d02235c5c64fd7da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7a73b0338e91df5c948f04dce285c15ec665332a44d3cfd3852d375ba18aaaf0
MD5 e00695ae6ee798b01cee9d2de1a56d65
BLAKE2b-256 2d629ec9a9e2b1f7fd9d09430aa2cc1f6ae2f923c11dc2d343c3df190466ecd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 547eec952f812d9facb75b5c82b3ff75fa2849627bcaf15f677ac1e867e045f2
MD5 aabf0ec0087d611a4744bf1109e101ef
BLAKE2b-256 919c2b9f86c48d551cb292eeeb2f6f69e62142bb5fbe843f8637d348933a8fb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5b29eb5d54fca2c48b83e93332267312103bf3e41e00445ed266d0a8521f8106
MD5 12b98b30448cc5a8b44c31b6c4977383
BLAKE2b-256 43eba8810328be614a56dda0bb78c286ff09a8c8ff44c7114262ca44ff86021f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.14.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1c72a0ca29b0b75f049be6c205a85e87c6dcb409d1abceb368be1b917c2eb7a
MD5 0f8e413ae5ec663749d2d074ebdfafa2
BLAKE2b-256 f3e6fbdcc5fcd5a9e77fb992b0728c8ac785ab4cbd8bed58a7a1578c718674f7

See more details on using hashes here.

File details

Details for the file viztracer-0.14.2-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.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 9dce174fea8b06b4bc5bbe37420f452cb9322bea2dd689be7894f24b68acd51b
MD5 a1461215bab234e0b5ca4d8532442b9a
BLAKE2b-256 10c3b9ebe3fd47662327e31b9bf27d54b89203ff7d2cbe06a01eac330f0c516d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.14.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c4c2aee4b9ae0dca1ac9eab8764f39a4edb7f64a66641b846e719511bd0eb25f
MD5 1fec29387cf7a2f5503a0703710c899a
BLAKE2b-256 2259062d613dfe3dfba52c31586c4c8de84895f32553302ad68d7aaa3e6b97b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.14.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 b5b46c0dab37e05cb59490f85937524aa3f4b15584e8ef5aeb01d9c04e1b8160
MD5 75ee809bdb4eb6b938a6e3d7f876415b
BLAKE2b-256 eb59f9f03dd1d3e778ac41dea052e3538f249c41961a5c34db2bb27f75fd9718

See more details on using hashes here.

File details

Details for the file viztracer-0.14.2-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.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4328bba977b7901ae06d55ea30ced8f72ac91a43dad05a83e7da5a7cbde214ac
MD5 350eaab75205611cad894f98264b06f7
BLAKE2b-256 f9c9e1662a23a090ce855c83bec15fc4740bcc988e24f5e507ba7f61ee4002a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.14.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bd75dc8c09d2217b24171143ce98d7173f90869449e6c994bb3e624bfedf2569
MD5 eda5962c66efe1236ea5e3d7477a8551
BLAKE2b-256 8ed69ad8a1c041b06335eca7d64bd29da7f2933751cbca8f2798b4c12afea95e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec52ba1554c2118df70680c0537ec87714cc1448ef9eb9f2c5e827f649cb679b
MD5 603e3b2ccb7e2217badb50188d1f5609
BLAKE2b-256 c1768353e332f3977f51629a1ca14db09b42f1f1c9d0dac24d7e9464a050ff12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 92eca227b173786ce0977f18dd650166b643e26ffe8874ef320898c77d8c1c98
MD5 047fc3464a61253e1097ddcc49bff7ba
BLAKE2b-256 9d27ce3a4fcb1b6a0016f0b7d3e0646c70f8567f390499efd1e6314f8290bbd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 23906cfe54992ec8699a7a05fe2c35f74db0a5eff7db6a6c760d0ee57ceb2b42
MD5 afcc13f5498276a9c82afdca9790373a
BLAKE2b-256 8abb2cc283f5a33c46c67d562136ca63126b9b1c8b0b561d4d2404125caa77d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 19e6257865e931de1c05a47032b2c2a42b617e36a04159cb533807ed746de8ac
MD5 05cdd6743b91db35add1f1785cacc45c
BLAKE2b-256 33ddb3dd38d1a7d85b7f696e7db4351e6ccf02154587aa7335db6954b1a00d41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 729ea7f3cae528378c1a8c5ffb4217bae022483739e397746d8aae9f2422868b
MD5 6281edd26809244cd0d51fb8b06a35d9
BLAKE2b-256 bcc63e8bd1dba717e071f5d1d2204c159278d0397aa771c9484b53dcda1aabae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.14.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ac7adf89437f85333fe4d7cea5404c3fe1d55c04d4caf8cf94cc2e4a19e87e4
MD5 e0a55a7ce63497f443c6bf43ac62e7c1
BLAKE2b-256 1ab34b81614dda045a6a3a97721695b637e1b58d2f01fe434501354dadd71a0a

See more details on using hashes here.

File details

Details for the file viztracer-0.14.2-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.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 e73b5512938ef02ab6910a3dd0eb695f3f1e1d588a667bfdfc7b2caad1253417
MD5 300d12155e9c13fb0a128517be45f182
BLAKE2b-256 792d7e3f795d334ad541620a57a5b952f94e08f62b0d17067dd9c559113b66a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.14.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6430f225327bc1a7d76900559e62e1a7135328b6049b59f767ea761f084bb89e
MD5 97249f8b79b2b16d6ce8076b4f827a29
BLAKE2b-256 f4d91fef15b3342c0880c2f86b51bd0d6c5dcedc9c15359723c8dbbb5a8ae629

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.14.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 a92b9ec30af4abdd2f377191e401d0162559e960eca561be7c83bc54446f119a
MD5 61373fc8bd125162eb21d067844384eb
BLAKE2b-256 460f3915e2ffee574b2ddc764fe427067c07fe8261e3776104447b4712d661ee

See more details on using hashes here.

File details

Details for the file viztracer-0.14.2-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.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7f8ec65a482c073f032fbae82b9b918d3c34f533d45980f5224466de8994ed7a
MD5 5c1351c8080635d9a28ba5b4f08a1863
BLAKE2b-256 9d5c64efaaf1c362c8c846760af29cd4acbe9bd33e76c98090b02ba6c3fe6249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.14.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fd5067d85ed5e12b2114e9a74b81e20d8e3370c204c76f3df7def65f67721dff
MD5 ead977fdd434db280c065c08a6939ec2
BLAKE2b-256 ea47a00169f440cc2c245a2c3a7b0560e51ae0c0441d652b40f27f9cf145f5a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9b7e0a6454178619fd7b65fca2b05f23f1e8afd89619b9369d291880c30a1b50
MD5 241223feeb38b7ca2861d218db138114
BLAKE2b-256 7fa005390021183262721e1b33bc59eed60e10e09734cdf810db76eefd99eb9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b9f5d7ec8f85c6876a5916ad598f2cebcbc0c632324166fe6ad0205fc79d2146
MD5 12634bd379f4e5b5c1bdf087962b82d0
BLAKE2b-256 3bc5edc699dcfb9d363ddf327f57b793fa26c4fc4cfd029d3d663cfa5916b038

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 12dd4980b3b82664b2f2397d7cd14b2cdc1ba6faa61f7fb47e8086482a31a6ba
MD5 6803efeba884332d954b6853a61985bc
BLAKE2b-256 1a8d561078072cc085bcb19f04fea43d5cc104f3a8c29524f1e4998795969acf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a7aaabef6359bfecb40ff1807dbd186afeaf7768ef65c3a67d11af8d822a9240
MD5 0429c7855b532dbd7ccd4bfd63093001
BLAKE2b-256 bef384fd45ebcbd5bf4e367fc3bd0d1c217c8ade8f17d79f7579ce9e5a266832

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8d45f71ad2fa6c3d88563150efbe7ef64817bb5b1c82c613bce0c963a82743f5
MD5 00dc7a44b9f93db0610e01b279ffc816
BLAKE2b-256 628cfee2a3215076c8ba2ca2b7c4d29b62829ac14cdffc4dd3df2a39c33db710

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.14.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e94d96007993a0566520aa9affda3ffc165b860713b2e30d44b083066848f99e
MD5 6cb4c07e60596282d8e2854fef6d46d1
BLAKE2b-256 01d534a21a49b9f281a4595b86bb3ddb8ce1fd44a2d09c6219f4676cf60ac200

See more details on using hashes here.

File details

Details for the file viztracer-0.14.2-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.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 bc374922ac10187027c7b7b9a04d17be1f3190d7cf78438207769adcc79706aa
MD5 fbfbfeae062a412eefab39fcb9c92041
BLAKE2b-256 ef67ac8ff03b8cb9898e5579c84487d12a65046412abca1aabd6715c4dbff6e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.14.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6522809d3e6498bbb30537f0daf3618bac97cd4dce0c9d8624fbe3b8d3a02463
MD5 2e37ac51420d3d6724fa2c5b40e1b6de
BLAKE2b-256 e51936f20d2c3e58ee9767321ee291d82e7a753711904669d4e5950199f81749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.14.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 795a6b8ceeb3c1354e547ce51af49d19c2270dd1e4728d368ffab1ceee536e69
MD5 972d11364d4ddcfb3fbec740bc4fcb27
BLAKE2b-256 4e7f9f27a5fd17d4069339f45832c784ab74d944bf95c411000dffbfb7b04fa3

See more details on using hashes here.

File details

Details for the file viztracer-0.14.2-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.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8c7ac6dd61505ca4f14e6821c4e78c6f8c77060fd5adf8e8ef16e1162cff8801
MD5 482a0f07e59ee8c06764f34e275a46f5
BLAKE2b-256 27b4cdcf8fd3a42f8438a0f9a95a1f4e43ec868f3d4450259250b9aa150262de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.14.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3a1b5b778f2e72add8cda2f3d01f7bdc6c7d136f71558395b8635a15655191fc
MD5 d0910db943e47c1cff83fc1fb95e398e
BLAKE2b-256 9f14189ee56531b18f65d63be61bf15cbc2e0c17dd04238d59a6b00babc76b5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 41860c3172668297efd9997d53ff5a1d6c628aedf5121056274b3ea6d2a8727c
MD5 44cd2729b75b8d0b88e2fea9f1f8551b
BLAKE2b-256 6483de0e6415b3760619c9080d4ffea8bbe5bc76cd653e7696f78f1448509743

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b1c6442c7197a16528b86b0c4543b289f207cda6282c31d0f76e8c498e1fd011
MD5 0e53426b1a15335c58054ec0494fbde0
BLAKE2b-256 a035264615c24ff7a9599e1aed8569e33d3947dccb6cee5c77e9f58621af486f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 dcded6465a87307c5806ae61ea00af01f8306d92c05e416f7efcffb68a76a177
MD5 6447fb655343d04e930751a5b7ceca77
BLAKE2b-256 ba3967b894d0f0a43e388c1e6e73ba3a7c3421ddd0d31c4faea862b0aef830ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9935231cc15a265b761854a63c8ee3963bade9e6a7071072c298258ba01371c7
MD5 e5b6d2986b4ef4f147f30d96eb081b79
BLAKE2b-256 33b290e09fc59939f2dd117e75a909d4aaa7ace06e48ee4236c7802634ac3136

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6c68fddbd25551103fdbddcfcc70b484ea3c9db355f806146608493091aa3ce6
MD5 98812a57100e53226bc2887b7258dc73
BLAKE2b-256 aed9d33a4176894581f2f2e3ff94fae418215fa789674e1b9bdafb59a7f354dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.14.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa82c0c89dc02a34b541149528dcad0706d6dbcd27f64e787f87d3df7ad7c3f9
MD5 b560187bcdbdc3259d00634c3628b308
BLAKE2b-256 b64711f0a30cb22c3f0e95da6d9f0085cbc8dea04bbc8cbd65d4256e959439e3

See more details on using hashes here.

File details

Details for the file viztracer-0.14.2-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.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 a8b1c623d788d6313c550f1e472e367583c8dbca6bc55ab2f641ebfafd9e9370
MD5 4dc8cb50c7957ba6a71a405f3fedab31
BLAKE2b-256 65558f925dbfa0f917ae7768bb48be038963c278ae46868c379442dc3434a901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.14.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 26318cd60f8b8c5d216fd7ae47a7e4535fd5361227ee7a8d4c151ebea653122a
MD5 edafa93c4cef213942d93ba6aebcffbb
BLAKE2b-256 7b4395f70be1cd5c94854285bf75862cf3a4fdfc282b13d3f2a9a73042f9ebd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.14.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 99bb0429583c0c4cfab2cdd2bea73acb9a8d9c6e7fa8e734a33636a3a464e612
MD5 b3bfba2f8aef1f07505d663ee020d681
BLAKE2b-256 3eacc8210bceea7a1c50a834530f2046b7b7917f1821ac26cac0f11fbda552c5

See more details on using hashes here.

File details

Details for the file viztracer-0.14.2-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.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 526478ddcdf959e16b45036a20bd7e77c48de4fc03be6dc7e6de4419d17134ef
MD5 1195f202f1917e90057b5a44363a3046
BLAKE2b-256 05ac069b35e643567c9d6f02ab9696183cdcec635c8dc3fbe5bb06add709a5a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.14.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 df32eca08f50b463ad16bd6f116ce774731b75d6cdfed23b5b0fc94d8df35260
MD5 9da2f72cc1a8aa1819ec4899afbd5b43
BLAKE2b-256 a461234b1e6284bd57bb1f970e2002d3869ed26781f7925496b24e4b09973ce6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.14.2-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for viztracer-0.14.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 91d7ae418cdb6973a303879fc8ff781ffae46cc32ee681a1dbcbfb7c777ff80c
MD5 8f7599a157a120b116f3d44b0825f992
BLAKE2b-256 b1d6ffc2abe568845f0914e4776941bcda75348542071e2adf3f22d452554eed

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