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 display all the files in a directory and open them in browser too
vizviewer ./
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 an arbitrary Python process to trace it, as long as viztracer is importable

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

Uploaded Source

Built Distributions

viztracer-0.15.1-cp310-cp310-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.10 Windows x86-64

viztracer-0.15.1-cp310-cp310-win32.whl (8.4 MB view details)

Uploaded CPython 3.10 Windows x86

viztracer-0.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

viztracer-0.15.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (8.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

viztracer-0.15.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl (8.5 MB view details)

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

viztracer-0.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

viztracer-0.15.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (8.5 MB view details)

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

viztracer-0.15.1-cp310-cp310-macosx_10_15_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

viztracer-0.15.1-cp39-cp39-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.9 Windows x86-64

viztracer-0.15.1-cp39-cp39-win32.whl (8.4 MB view details)

Uploaded CPython 3.9 Windows x86

viztracer-0.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

viztracer-0.15.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (8.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

viztracer-0.15.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl (8.5 MB view details)

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

viztracer-0.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

viztracer-0.15.1-cp39-cp39-macosx_10_15_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

viztracer-0.15.1-cp38-cp38-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.8 Windows x86-64

viztracer-0.15.1-cp38-cp38-win32.whl (8.4 MB view details)

Uploaded CPython 3.8 Windows x86

viztracer-0.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

viztracer-0.15.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (8.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

viztracer-0.15.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl (8.5 MB view details)

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

viztracer-0.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

viztracer-0.15.1-cp38-cp38-macosx_10_15_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

viztracer-0.15.1-cp37-cp37m-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.7m Windows x86-64

viztracer-0.15.1-cp37-cp37m-win32.whl (8.4 MB view details)

Uploaded CPython 3.7m Windows x86

viztracer-0.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

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

viztracer-0.15.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (8.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

viztracer-0.15.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl (8.5 MB view details)

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

viztracer-0.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

viztracer-0.15.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (8.5 MB view details)

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

viztracer-0.15.1-cp37-cp37m-macosx_10_15_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

viztracer-0.15.1-cp36-cp36m-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.6m Windows x86-64

viztracer-0.15.1-cp36-cp36m-win32.whl (8.4 MB view details)

Uploaded CPython 3.6m Windows x86

viztracer-0.15.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

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

viztracer-0.15.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (8.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

viztracer-0.15.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl (8.5 MB view details)

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

viztracer-0.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

viztracer-0.15.1-cp36-cp36m-macosx_10_15_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: viztracer-0.15.1.tar.gz
  • Upload date:
  • Size: 8.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1.tar.gz
Algorithm Hash digest
SHA256 43a11682859dfb68874c84f0ecfda280fce0dc2af7c04de9b6031cb1f0014e11
MD5 1be6320585cae946457da1a6d7a74b8d
BLAKE2b-256 8f53f735745f86bda6b4f6c628208053eec296202a374e0e204c52ccf8b063df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f0475f2272a4145c485e886d15909ba3821d29b47f0cdf285cfd4f3adf4c31de
MD5 5fe3b935b1a5515649a29c2f47b315f6
BLAKE2b-256 7cd7c0af666bbd4635f7f462678137ffbcf64f6e02823cb7f928243e5778be0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 727d27247eac33ed24ff6a7fdd41357343cc2aacabc69abe2425557590c2f03b
MD5 e08357eee86883caf475d2bcba91003c
BLAKE2b-256 5724c61ca02618ab5849b55ed531af0ba278a2561dfe21550511ee45ba5df7bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32b163dd7c472f970d53f376c549b243d5b3a46e278346fcada920d4faf1f34e
MD5 18a3ba469db300d010dac988aefd714a
BLAKE2b-256 ca18b97a77bc217b133737cbd91bbf9ad4d44c52ff63ff065b1e515b9c05077d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8de903c788529e781c95f899141e937180d435404541d442db1081dcb461c9a9
MD5 c7421381ff0d7ebb99a67b1a6b4ca4be
BLAKE2b-256 3f3e001f1b1a39bc735debdc50f394af871f9936b57cfe0a76e4a6ed6ed21c56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.24+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 80d84b82c370649cd0c399bb2391c2cbb011906aba956262e185c8f57b5221de
MD5 a4376bce5e57a52a911237fd9eae0ed2
BLAKE2b-256 d3340bdf3293809903d5373d4cd5afcb5c233c8589251c4766911322e22690b0

See more details on using hashes here.

File details

Details for the file viztracer-0.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: viztracer-0.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15ce8df6a48189977c80bd66d58f687a937351ab395ce8c20bd0fa18f6208747
MD5 446e73d312db97c50e082a8943dd01aa
BLAKE2b-256 3df8ca2297f39f381063aae15b5491eef0bcb330bb4fba48f109fb03ddaaea61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.15.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3a13213faf8a4c55bfad1d654bdc2cc3b1ce27300f629e13310b639fb4400d49
MD5 bfed9cd9349308065be068256d257e32
BLAKE2b-256 cda663c5501af8c203d5e8fcace113acb7b9799c3f8a533b8b679f62a4788546

See more details on using hashes here.

File details

Details for the file viztracer-0.15.1-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: viztracer-0.15.1-cp310-cp310-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.10, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d1fc226a1efb5bd527aaea0068f1f7e5bb74673de7624cb451f65928b2dddbd6
MD5 d27cdabc762e43f33b171668dfcd10ab
BLAKE2b-256 d32795832898c32663f25f62b5536267e0b4dc126ebb32cbfdc607863482b425

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 50da70665e576b14721e4bc3fba729690d936e70831408c1435539f43ee1534a
MD5 28681432a44638472c5a6c73197d2cd8
BLAKE2b-256 9b1a5317d1537fba60336852928a0801764e1169bd316f43470832eddf7db42c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ad507fba0b6751184365a30223f46bcb2ac24b0a5ba87854666de54c55087799
MD5 124952a19aa5796a832009a9df079ab8
BLAKE2b-256 05559009f1117c7d6457beb8a00cad67502208f63120b602efb335fba59d90fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcd43e8c9077414939946c53cd1ce9f19e54010f061d33b015143f6a36070517
MD5 acf8279b4e4aa9507b4d0e172908aa6d
BLAKE2b-256 9d667d36d4bb74911413a953ddb6ada96d61cb98e2816c1c30117ad0d62457f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7b578a9b90d4b23d7ea49f9cb85889c2c456c1c29fbef89fd605f9304ae163b
MD5 ff26c93e8a1a5de3af2553030e8aa69a
BLAKE2b-256 7140ed34f588e1f81ee957e2a5e1b11e2696fffb6f13c5d42559e3cbca57cf88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.24+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 7bd4663bb26cda22948c91a2328b94ed7c1715ef30e93f9fa5c345e1085afe27
MD5 f3170724ea8dea787857dbfe9f6f2740
BLAKE2b-256 9002302b5d92e54c0df4d2d7b745090a434bd871f6f3ce0eba789a2e799a6b40

See more details on using hashes here.

File details

Details for the file viztracer-0.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: viztracer-0.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61a00bb08ed340de48d9a591e0926ee9c17f5224b2c13153cced00a8b9422ff2
MD5 184ad1eaeecd75a71107fd90a3a8d438
BLAKE2b-256 74e02de1a105c582b1f537ca8580ecd90f105a5e689da8f2bfcb6684dddec155

See more details on using hashes here.

File details

Details for the file viztracer-0.15.1-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: viztracer-0.15.1-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 efa85b1676db9e0b3a640a3acc8ccf7206f754bcff8f72b7451f8099f83111d7
MD5 8a7d69376055cee394430f8aff51d843
BLAKE2b-256 ca666d055101ad118a1efe1cded128cae1beac3f3855c62514fbbb9c80b20184

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 484dedc0a0ada128c9edd0e0df8ce7d08eb86bbbd9b0be07d233927a25c3fb48
MD5 2070f23e7da3e9439fd3f5776b051d81
BLAKE2b-256 5eb0eca849361e3e6c678901571b8e0566d4e2e1acad2f03a32e21977adf68a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 bd0362c78e90062f88c08b87220cd107492ddb0e130ee153ad460ac20f18efc2
MD5 15cf7cedc8b217f2f5c158b6298fd38a
BLAKE2b-256 96b758934771999d01df0a4a4e46a167a4f9ae648b18d5fec34c1133a32d6bae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7cfecd37efe141459d734f9ec3a577bd4f45b1d373e2dce705683e2e8c7fd42
MD5 33b35a7efbe377727e3e8d70b2b4d040
BLAKE2b-256 5ef2026a315a7d6a7e3ca0e80422506812ed465dbed7e85e11eecac5f314cde5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31c8e48e3ff5fa8f548b7aa1cf64563a18c9f48c23f9897f6eb4540a1b0a1f72
MD5 e1a651ee15df557e1059160b940feb27
BLAKE2b-256 79ef7db3275c9e976f447a5d62c2863ad362d33584eb27b922754591cebf37fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ i686, manylinux: glibc 2.24+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 961dbb04b6897409c386d90e391150c5cee8d1726e78bedc66a8fbd6fb20f7d2
MD5 4c89e60781c2a756a94450371ce2ae8e
BLAKE2b-256 29bdac6a7a613ef6a734f7b5cb3322ced5f91141f7a8a94e2db44850887804f5

See more details on using hashes here.

File details

Details for the file viztracer-0.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: viztracer-0.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d603070bf6708f628ab05a8831eb0c971ec2514599ba52cd302a2ade47dbdc35
MD5 b4ba4fc9d7cb07fafda840d9d168cd43
BLAKE2b-256 7d01a25442817fb7b7df9d04e21e15508e1672d22bd02a878ecf4b1b14316c41

See more details on using hashes here.

File details

Details for the file viztracer-0.15.1-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: viztracer-0.15.1-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f20b342140b4870283b7735cd4fa3fd70f70e773e313a9e18125750c2cb462bc
MD5 914f77057cc4fed540fb25a036aceaae
BLAKE2b-256 8dc8dc9d73117f3558be8715e04710264db969be957d5f18aae44819b30ac1b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 14a7350381a93db2e8739e4207a50d4a1482c87d9a9c4eb5aae3e8ebbc63a03e
MD5 8a7a01b783c0646368579a66e5e583fc
BLAKE2b-256 fa61d8e18430d3bf5de574b546b8db2c4564bfeb25a6e41ef39140a4936521ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 80e9d0c981384e8e4a5636be1badbdde81f7c27ea9f49414cc5fd252fa63781e
MD5 b7ada4c01569a470ea3508b4884630bd
BLAKE2b-256 4fdbd02176a18c14da22c79fb812e14c20519c16040da176942d5480df434e20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b572d234cb4d35ae96c93ac94442ac4e11e97ba32d025292d25f7c16af9678e
MD5 8675cfd708bf39ada7f50c09d923a6e4
BLAKE2b-256 40d74fad1f7baf1e5f2cf330efe179df5973eb6a592525fe7f7d81ac6b7050f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 66c22ce5e86291419bf5cf14b03e985d5703804cfbc6fb2415fd55edb85a5bb3
MD5 31f7728c82b62651569ff754ac4c7071
BLAKE2b-256 7854b7adc066b9afd6466599b4e3a9ccc10b7f8d56ddeff6ce7da2369f62fb8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.24+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 28681ca23c0164260cd21359cc90566b034d9e6179df69e1e9423ae98f0a421f
MD5 8250b4736bbeb19340a724a9734a5838
BLAKE2b-256 1b979fb965c5afa4b4978aebcac113830f9a140bd258d7ecb9fd67a44dec2828

See more details on using hashes here.

File details

Details for the file viztracer-0.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: viztracer-0.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed0596fe30c8152561419d1b2595226bdfbae20d4740b4839639c936292b54b9
MD5 e4dfce65eb370da29676ead8689a7b83
BLAKE2b-256 84cc6a81f23700dfc891daf894b6c0de37ede2255355809000753d7e9d1be95e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for viztracer-0.15.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1a391a230d391f9074dbc007dbabdcb184fcd8bf314596da8ecc8d5751f58f45
MD5 dfddd1de27a2b52c5948fb173b0099d7
BLAKE2b-256 75d0004fb765b3f9b61c59c4f8058b653caae45932ca4aac527e2f23ab17e62a

See more details on using hashes here.

File details

Details for the file viztracer-0.15.1-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: viztracer-0.15.1-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8c5f4495da65a59a0b109c39c8543880c3e197f344559caec6feda2fa436ebb9
MD5 842d22bc337d57bdcb66c499d89320b7
BLAKE2b-256 3606ff358aed8aeb2dce3dbd3281295ed71f95b22c49a8358621ab239dc65558

See more details on using hashes here.

File details

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

File metadata

  • Download URL: viztracer-0.15.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5f0906c33d83b13f682955dfc82aecc551eeb55048e366eafb80d5081893532c
MD5 fb7c3489fe0bacdde4215477c9462954
BLAKE2b-256 b89c4797c8e6b2df273fbeb71e65bbd4334eb948c750c1cf1b7e68ad17eea0e6

See more details on using hashes here.

File details

Details for the file viztracer-0.15.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: viztracer-0.15.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 07b76fecf829e5b76eac4cb06dac7c258a19d20ff30e18084c029e95244b5c3f
MD5 62fd6010f8340b066f50fb84d722fff0
BLAKE2b-256 d7cc1ea10c4750d21497616f3303e264c6b0199fb01f0064e4faa31d8bd3fa21

See more details on using hashes here.

File details

Details for the file viztracer-0.15.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: viztracer-0.15.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15f1f3c7009b0057c1a4fed55b74a7b79d1c100b879ef5ec0e9f239bc6ada9e7
MD5 2985666158b68699fc6c98c867408d98
BLAKE2b-256 e377c48c90dd31352472b5b1d0a6ad4188478d1cff9a4f85e81535b0df4d38d3

See more details on using hashes here.

File details

Details for the file viztracer-0.15.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: viztracer-0.15.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c531ba75416ba9ebba8bbf35f59239e132b702e6d926af31b0f552eba1409ae
MD5 782074bd657139571bfc51a563c0bc74
BLAKE2b-256 b5e1628bfd6bc413b7fe4e81b0c6777c3fc5338624e76bfd7e2bc0ffcffe007c

See more details on using hashes here.

File details

Details for the file viztracer-0.15.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl.

File metadata

  • Download URL: viztracer-0.15.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.24+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 a00fd5a025fe5763a0365c1ce98056e7a9cf69ae97bf9a5ae20944f41d174d2a
MD5 28c68f8f71423ab590dc036b16ecbb6c
BLAKE2b-256 a19fb7b5c923d4ccad4f5e3bdf11fe4f661398eb6bac306814884c5b0c32dda1

See more details on using hashes here.

File details

Details for the file viztracer-0.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: viztracer-0.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b74b18b4b88090a801d6d6c4286a8637254f2e7d7279e63d824e785cac71816e
MD5 b1b83091df6f2770ed228c203f891210
BLAKE2b-256 0a9e34cdfbf3783c9a240e3ad52c3f6b8742f2ad984fe226a9163fe74356edb1

See more details on using hashes here.

File details

Details for the file viztracer-0.15.1-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: viztracer-0.15.1-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.6m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for viztracer-0.15.1-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bfbf2421cc7b13a84028618ca39f8e5e9875f4320b96712f3a06a696ebb695dd
MD5 04262db620b0d7c59c5bde0ab4e0b72c
BLAKE2b-256 6643c1437e234d0c9e93e5ed7eee3a1f0e4d216560b1919dff66d81f801d6123

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