Skip to main content

VizTracer

build ruff readthedocs coverage pypi support-version license commit sponsor

This repository publishes the Chalk-maintained chalk-viztracer distribution. It preserves VizTracer's viztracer Python package and command-line interfaces while carrying patches that have not yet shipped in an upstream release.

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
  • Low overhead, probably the fastest tracer in the market
  • Supports threading, multiprocessing, subprocess, async and PyTorch
  • Powerful front-end, able to render GB-level trace smoothly
  • Works on Linux/MacOS/Windows

Install

The preferred way to install VizTracer is via pip

pip install chalk-viztracer

Basic Usage

Command Line

# Instead of "python3 my_script.py arg1 arg2"
viztracer my_script.py arg1 arg2
A result.json file will be generated, which you can open with vizviewer
# You can display all the files in a directory and open them in browser too
vizviewer ./
# For very large trace files, try external trace processor
vizviewer --use_external_processor result.json

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

A VS Code Extension is available to make your life even easier.

Add --open to open the reports right after tracing
viztracer --open my_script.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

PyTorch

VizTracer can log native calls and GPU events of PyTorch (based on torch.profiler) with --log_torch.

with VizTracer(log_torch=True) as tracer:
    # Your torch code
viztracer --log_torch your_model.py

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

For Python3.12+, VizTracer supports Python-level multi-thread tracing without the need to do any modification to your code.

For versions before 3.12, VizTracer supports python native threading module. Just start VizTracer before you create threads and it will just work.

For other multi-thread scenarios, you can use enable_thread_tracing() to notice VizTracer about the thread to trace it.

example_img

Refer to multi thread docs for details

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

Perfetto supports native flamegraph, just select slices on the UI and choose "Slice Flamegraph".

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.

Performance

VizTracer puts in a lot of effort to achieve low overhead. The actual performance impact largely depends on your application. For typical codebases, the overhead is expected to be below 1x. If your code has infrequent function calls, the overhead could be minimal.

Detailed explanation

The overhead introduced by VizTracer is basically a fixed amount of time during function entry and exit, so the more time spent on function entries and exits, the more overhead will be observed. A pure recursive fib function could suffer 3x-4x overhead on Python3.11+ (when the Python call is optimized, before that Python call was slower so the overhead ratio would be less).

In the real life scenario, your code should not spend too much time on function calls (they don't really do anything useful), so the overhead would be much smaller.

Many techniques are applied to minimize the overall overhead during code execution to reduce the inevitable skew introduced by VizTracer (the report saving part is not as critical). For example, VizTracer tries to use the CPU timestamp counter instead of a syscall to get the time when available. On Python 3.12+, VizTracer uses sys.monitoring which has less overhead than sys.setprofile. All of the efforts made it observably faster than cProfile, the Python stdlib profiler.

However, VizTracer is a tracer, which means it has to record every single function entry and exit, so it can't be as fast as the sampling profilers - they are not the same thing. With the extra overhead, VizTracer provides a lot more information than normal sampling profilers.

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 2020-2025 Tian Gao.

Distributed under the terms of the Apache 2.0 license.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chalk_viztracer-1.1.2.tar.gz (15.7 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

chalk_viztracer-1.1.2-cp314-cp314t-win_arm64.whl (16.0 MB view details)

Uploaded CPython 3.14tWindows ARM64

chalk_viztracer-1.1.2-cp314-cp314t-win_amd64.whl (16.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

chalk_viztracer-1.1.2-cp314-cp314t-win32.whl (16.0 MB view details)

Uploaded CPython 3.14tWindows x86

chalk_viztracer-1.1.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

chalk_viztracer-1.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

chalk_viztracer-1.1.2-cp314-cp314t-macosx_14_0_x86_64.whl (15.7 MB view details)

Uploaded CPython 3.14tmacOS 14.0+ x86-64

chalk_viztracer-1.1.2-cp314-cp314t-macosx_14_0_arm64.whl (15.7 MB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

chalk_viztracer-1.1.2-cp314-cp314-win_arm64.whl (16.0 MB view details)

Uploaded CPython 3.14Windows ARM64

chalk_viztracer-1.1.2-cp314-cp314-win_amd64.whl (16.0 MB view details)

Uploaded CPython 3.14Windows x86-64

chalk_viztracer-1.1.2-cp314-cp314-win32.whl (16.0 MB view details)

Uploaded CPython 3.14Windows x86

chalk_viztracer-1.1.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

chalk_viztracer-1.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

chalk_viztracer-1.1.2-cp314-cp314-macosx_14_0_x86_64.whl (15.7 MB view details)

Uploaded CPython 3.14macOS 14.0+ x86-64

chalk_viztracer-1.1.2-cp314-cp314-macosx_14_0_arm64.whl (15.7 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

chalk_viztracer-1.1.2-cp313-cp313t-win_arm64.whl (15.9 MB view details)

Uploaded CPython 3.13tWindows ARM64

chalk_viztracer-1.1.2-cp313-cp313t-win_amd64.whl (15.9 MB view details)

Uploaded CPython 3.13tWindows x86-64

chalk_viztracer-1.1.2-cp313-cp313t-win32.whl (15.9 MB view details)

Uploaded CPython 3.13tWindows x86

chalk_viztracer-1.1.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

chalk_viztracer-1.1.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

chalk_viztracer-1.1.2-cp313-cp313t-macosx_14_0_x86_64.whl (15.7 MB view details)

Uploaded CPython 3.13tmacOS 14.0+ x86-64

chalk_viztracer-1.1.2-cp313-cp313t-macosx_14_0_arm64.whl (15.7 MB view details)

Uploaded CPython 3.13tmacOS 14.0+ ARM64

chalk_viztracer-1.1.2-cp313-cp313-win_arm64.whl (15.9 MB view details)

Uploaded CPython 3.13Windows ARM64

chalk_viztracer-1.1.2-cp313-cp313-win_amd64.whl (15.9 MB view details)

Uploaded CPython 3.13Windows x86-64

chalk_viztracer-1.1.2-cp313-cp313-win32.whl (15.9 MB view details)

Uploaded CPython 3.13Windows x86

chalk_viztracer-1.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

chalk_viztracer-1.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

chalk_viztracer-1.1.2-cp313-cp313-macosx_14_0_x86_64.whl (15.7 MB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

chalk_viztracer-1.1.2-cp313-cp313-macosx_14_0_arm64.whl (15.7 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

chalk_viztracer-1.1.2-cp312-cp312-win_arm64.whl (15.9 MB view details)

Uploaded CPython 3.12Windows ARM64

chalk_viztracer-1.1.2-cp312-cp312-win_amd64.whl (15.9 MB view details)

Uploaded CPython 3.12Windows x86-64

chalk_viztracer-1.1.2-cp312-cp312-win32.whl (15.9 MB view details)

Uploaded CPython 3.12Windows x86

chalk_viztracer-1.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

chalk_viztracer-1.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

chalk_viztracer-1.1.2-cp312-cp312-macosx_14_0_x86_64.whl (15.7 MB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

chalk_viztracer-1.1.2-cp312-cp312-macosx_14_0_arm64.whl (15.7 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

chalk_viztracer-1.1.2-cp311-cp311-win_amd64.whl (15.9 MB view details)

Uploaded CPython 3.11Windows x86-64

chalk_viztracer-1.1.2-cp311-cp311-win32.whl (15.9 MB view details)

Uploaded CPython 3.11Windows x86

chalk_viztracer-1.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

chalk_viztracer-1.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

chalk_viztracer-1.1.2-cp311-cp311-macosx_14_0_x86_64.whl (15.7 MB view details)

Uploaded CPython 3.11macOS 14.0+ x86-64

chalk_viztracer-1.1.2-cp311-cp311-macosx_14_0_arm64.whl (15.7 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

chalk_viztracer-1.1.2-cp310-cp310-win_amd64.whl (15.9 MB view details)

Uploaded CPython 3.10Windows x86-64

chalk_viztracer-1.1.2-cp310-cp310-win32.whl (15.9 MB view details)

Uploaded CPython 3.10Windows x86

chalk_viztracer-1.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.8 MB view details)

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

chalk_viztracer-1.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

chalk_viztracer-1.1.2-cp310-cp310-macosx_14_0_x86_64.whl (15.7 MB view details)

Uploaded CPython 3.10macOS 14.0+ x86-64

chalk_viztracer-1.1.2-cp310-cp310-macosx_14_0_arm64.whl (15.7 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file chalk_viztracer-1.1.2.tar.gz.

File metadata

  • Download URL: chalk_viztracer-1.1.2.tar.gz
  • Upload date:
  • Size: 15.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for chalk_viztracer-1.1.2.tar.gz
Algorithm Hash digest
SHA256 23f1913eeeb2c3a495279e1d338c668b80e001b1f20987c0f96b96207801a162
MD5 70b828f444f0a7d749bcfdea4c538209
BLAKE2b-256 ded079e444c6d92cdcc15b56f5f4514cd592e713eb2554e9e57fe84bd586bed3

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2.tar.gz:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 09a7b96b40e148045dd961db5d78efc5fbe11ee8d567c26a49a285a86d0263b3
MD5 af2b78635ecf4c1b5adeb1e14cb37721
BLAKE2b-256 2d4611133e9f1f0a70539c6977df42429a9273082d8704b84a8aee677a45f329

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp314-cp314t-win_arm64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a1ebfe339fe58883c6eb36e113be087fa50f2e33e8f1c62d2d84e7b11b56d650
MD5 1a2fdd78b098306df810bd0c009bbd22
BLAKE2b-256 64433295af4aeff837e47210b46f56cf4252223a86135383c42ea18270f711fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 823da38fb9a42f9d03ba2b26021d8d4fb53aac1c062030b18cbff257c4df75c4
MD5 ddbcd6aec5293d029105186fd7d09c8b
BLAKE2b-256 9d5d9444266b25a2294011aa6ae302c4985beafe69cf4f31f4123b1df0e5a589

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp314-cp314t-win32.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 27431af066553dfe0b3dfe9fce9a7ad3f8f332b1fd6aaa98dace395a02d42633
MD5 97f28ce3a5953a50335c2f18b15948c1
BLAKE2b-256 9fce9ec0e54b12482324549eaa7061cfde0dc3d33980b663b04e7236c6b26c0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9a81629fd17631db1ac66559869bc4dd5aff110be5aaeef32cf28a06cdd2052
MD5 9f68599bf9b14458f946763458fd227d
BLAKE2b-256 95a583b665ac56a97a2535c437310f258de689dedc18c18d7d2f6031f27b9f7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp314-cp314t-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp314-cp314t-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 41bf720101dec507e65cacdb5a5a301316f4d8eb3ee4ba724645dfb1d1d406ad
MD5 55cf5467d8d76e0560bd6a19069c453d
BLAKE2b-256 d7ae25114b84fd13cf9aee43e022b0381f3d5827aded70e962df78f3406a704d

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp314-cp314t-macosx_14_0_x86_64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp314-cp314t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3584b7f18f770b5c2f6abd23d39c7615ad086420aa38e2ff265ff0c4a80fd2ab
MD5 746431faf96edc86b184f977f59c079c
BLAKE2b-256 4a6d07b08a022360bb2e9581df6138f677de3fb9f8b620744d840ed4fd71c43e

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp314-cp314t-macosx_14_0_arm64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8d9f59e5c1e588de3964bdf2ded365714e069b3c42d711744fdb40bf29d75985
MD5 b09f9827bec410b387f7a4d65c02ff90
BLAKE2b-256 443ea54c9156af62a73f032a1a6baf44c214379751870774869da15ef85a3913

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp314-cp314-win_arm64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 20c6db8263d29da56da24c2144142ef122939e66fc1f9c5242434d9a621a5a1d
MD5 3e283462eab2b332354e8631fe211f76
BLAKE2b-256 9063a6a7be4056c8f2db841ffdf14666f539955a18db76665ccb17bf29ebc079

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp314-cp314-win_amd64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4c220d87b9aa0a222ce215e5b85b7070e84da83440eb600e99a1aeb4d8f861a8
MD5 6ab5363fdf6d8ddcb202ec634ea3e4e5
BLAKE2b-256 3049d701077f95cb95a52eff0d99a12fee21c079ac379dafd7fa249bbbb0b444

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp314-cp314-win32.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c162331ebfbee72c9f9b963acf6591d27e2bce90f3df61cb7d470add908d8ba
MD5 be1602648633e44c9bdb8f459f125def
BLAKE2b-256 0753e4f615d7aa49a1ef686e2ecf9e8114ae7efe81b966f6ae91f55e5f626c32

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b8509ae2da9b1685f165d7e3ee635b43650409f36297a5c7d3259ea1cbe103f
MD5 f798d9fbc2d1630cfdc833b69de4133b
BLAKE2b-256 62eb5953b9781f0117d03c1bf21495794183980970c5728a10573474c848d382

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp314-cp314-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 23d612091002c267da6f888d8e9ded89ba44c6536b3797daa1aeae5cf2c1aa7b
MD5 d8946fc146fe68730d7b444f715f92f1
BLAKE2b-256 d45f244d78762eb64b6877b7432a16481e12fb29f39b3379fb00e4bec0e6e61f

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp314-cp314-macosx_14_0_x86_64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 99ab25a290645bcfadcd8efc3019ab9b7523b51041f968bb165b827f90c73637
MD5 1acad75f462644a3cca4eab7d7017e8a
BLAKE2b-256 83b9bf469199330188cb4255e263981ce68363e2748ce3c9ec1b95022a024181

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 03627210f5bcd4d4b3613122b9686500bf3776cfe13288bc81834e892a3a4b67
MD5 0079b74a300e5866dc00a2c81cb9254f
BLAKE2b-256 d35ee89922ad70e8c49b4096cdba69104b0f9d93525418bca1b69f9c519497d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp313-cp313t-win_arm64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 6a98734fa4a2796b252684fe02e9e86c0bb46111d494900a469ba0466afc382b
MD5 5843a1ab761a939a5bc4d1cdb6e7632b
BLAKE2b-256 c491e03fe206b79d6ebcd2f004911b81266c2438b44e125d69d9dc4480e4d3af

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp313-cp313t-win_amd64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp313-cp313t-win32.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 56496c7ced4ebfacbba14272aa4e7b27a07abbb9999a979d830aeff7dd7b58ec
MD5 a5d1fd3095a797de601db2626160da63
BLAKE2b-256 1a64b5e1b42d4e9343347ed408df7839bb5677d514d8b796513165bec4ed6cd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp313-cp313t-win32.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e86a4fa686a78725e23d792c35482366e7fed79ebfa553ebcecf1788a0462659
MD5 39a4aa39ccf3819eec6e487c19f97bc1
BLAKE2b-256 2b926717e63a065fed1a0eb9290d5f448437d6b535bd99386a638971dcf85c9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc72b4d1d843ff10f5474a71953178e2898047eca209f996f1fb96d4c7f4bc17
MD5 85e4627503809424736278eecc23d2cb
BLAKE2b-256 fb5b79a916a38978ac74cb3e904526323cbf92131aa470af2acd9150d87f037b

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp313-cp313t-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp313-cp313t-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 ea7330b9470480a15ab8144cebc5d828081c9b396ee156b336a91c49b701e430
MD5 953ca2d96f7b6179d4508d47fb1713d4
BLAKE2b-256 fc61712f32dc359a381323e9a2648464a208be0cc02d89d9a770c95a50c56151

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp313-cp313t-macosx_14_0_x86_64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp313-cp313t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp313-cp313t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f53cfcee714b92aca81c09f2f501bdb9d9d38d7c62d53ccbd8c78fdbd8a4582d
MD5 a35c877e5dba26ff687cbef627cbe5e3
BLAKE2b-256 7c8ddbe90d9ef9007a1632b18eb3b98889678d4f84456acfbf1106cbe498dc01

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp313-cp313t-macosx_14_0_arm64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 979b3cf889188d95ec15b788bb6a4770930a24a1780b554eceff054109412759
MD5 378d33e8182d4114253586503a41950f
BLAKE2b-256 5318f47507a3adf59b19b7d531eec68b5685b879876be47cffc21fddcc41d24c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp313-cp313-win_arm64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 79b1632788b66eb83ab6ee4fc2710ac6a72e47c13eaf1ac077ad74dc673c7105
MD5 cfa15f5614edd41879306c8ee1defab9
BLAKE2b-256 3f789b74f0270460bc1582b4c925bff2e22fb99e952c3cdf9b8aaa51c14a87d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp313-cp313-win_amd64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cb2c2accba659a2e3a2399d51d2a5dd5f5874cfe5bc0c52025fd3414cf6d5cd6
MD5 b94addf5fe0e0413e8b69c887502ec6c
BLAKE2b-256 facab59a6881319263d9346b7cf17b83ad27659255660241b932d3c9b6b66ed3

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp313-cp313-win32.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 464e00cb4b0717a718197d73ccf82f93b0d8474354f3d4d8ddd843a164d7e788
MD5 9ef33006567c4f3a6cbd9e0f2f39719e
BLAKE2b-256 c30d45bf3ceaad9bb465bb111ea694f6503c0114c124deba33569e5e63b6cd49

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ff603bde69ea5d479455bd0125d0dd08b65dd4b39fc48825ecbfdae53b928dd
MD5 85cd10116971c8f0462ee03bfcc67a27
BLAKE2b-256 ff27a24389fab7680e1f7b21d63ae2c5f0b1ac5b8b0aced5869e9388723f7cf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 beda02501424bb4fb2b2d224ad494fd1c58f5a29e06205854a83e17ea33aa011
MD5 c5c549ab6655e353ed2d71ad03661b6a
BLAKE2b-256 ba0002068a801b27df3b2105d5ea514167beada669f2fabd24420ceed53c364e

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp313-cp313-macosx_14_0_x86_64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 5f50369fdd805b2c47f18f29cf88f40c831cb984e80ba64e92064a60cb60cddf
MD5 9a8579d20ff9ffed2220bfd4b2795446
BLAKE2b-256 6e0d529c349a48e83e472c6efa5819532a2511e3e54dbdadc9f6ef808c71a0d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ddc339c7782f9605080c1674640f9bb111b82aa50fc1fc565184466f2d04d6d4
MD5 2404001414f6fbd1e6174dcfef9549cb
BLAKE2b-256 699969549340a79e9ffd4d592c0055064348562c668ab4f640d55e8fa09ce878

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp312-cp312-win_arm64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 788f00d999b591e88113de9b31f59c561644b5338327887931e4d30ba3571dab
MD5 757475f2fdf59cb8ebe6d25e80d19b91
BLAKE2b-256 753bb3865665e57b081555d4278c90d2a490383f62afbfb65f7b7e51f6171d55

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp312-cp312-win_amd64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 797f016d48401beac50ffffacc06d1f8b8362bdd09a368f0fb1157acc530d4e7
MD5 7f419ae2b1cbd7071d3f582809e135e6
BLAKE2b-256 25850f3a920c8f5e6326d1c2c037b70e5f4b119183dae65d89cf790fd5d245a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp312-cp312-win32.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 432cd515f547c6597b6c1de51202f9a24681eae39ae4673a2d3bc6601202b95a
MD5 da261a84293b053c92e3001821ca7d8a
BLAKE2b-256 e8f689d3b2a3152f24e2b9be1038600066eb6e9770424b890ca4b438d983a0dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 393d4ef8dd62114176893c6cc6b78d54ebc979f815d5d487689fd6ccb859cec3
MD5 d7ad331db813de6032199293fb63d766
BLAKE2b-256 3ee299ebfd9ff176a4ea813f7724d52e0e85683a73be1ac218e0a9dd88102610

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 336a3708d94dc9c16f994baee7d47d045ccd53e253ea6bf302b867a654273973
MD5 dd959d3b1cf57bb2363f1b691c709a29
BLAKE2b-256 be1d50579c933d9538e2ea6e34be24c16d2f4b9b1ba164dbbfb1ad7b8c7d1825

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp312-cp312-macosx_14_0_x86_64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 91e9baf457dd67112ce30eedb41b37fb6d0d4bca35153cbdc33bd8c511a21aff
MD5 e5ca983f8e034857879c6da8d0967d75
BLAKE2b-256 534d8d51872eea5af92914812108bab088a8150597016746851ba26251180a0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9363ec761cdd4ea6a3a7e4e00e00d4ea82a9b45b34a15d3fd0e4f5c5f5ae540b
MD5 4b3dcb1702749c7a2342aedc814ca6e7
BLAKE2b-256 9f3005d70e81e2193b95313b291b06a6bee0d2dafff0dd4d12fefc8732dc68b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp311-cp311-win_amd64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ad6cb6782776faa5de8b51dcf4772b9d01ad854944be83bbfccbb94402391ab2
MD5 1a95ab9ca5530f49b2ab3408edb9be7a
BLAKE2b-256 19c5d20758983a31f8f4af5f299383458f0b94faac7aba8a36a6bb62e3130bf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp311-cp311-win32.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be08bd551a8746bde99e7873d6105a62a297a77cbda2926ed03793405a86c190
MD5 ba5460a76d9dc83456c9f1ca54986056
BLAKE2b-256 afc20389f83a202de5647d613d79392d6a4e16731735d0c5fdcbb2a5310c7477

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cab7b33f4af1b5ce186ad54dbf8b6a9412d84d78a8c3b336cda6cc3bcf622b48
MD5 2ac91c44b36403c3b866d2ad4ad9d68e
BLAKE2b-256 3209aabe5a74350e776c25c674acdcf1d0521143434176b74310e8df90618b98

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp311-cp311-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 36c7e0e8e1a12ca06ff848f9c62553cacd6d2019d4318d1a02b9d7b6cb5feb62
MD5 bc6f088ecb47e4ba480c320aa83aa9b5
BLAKE2b-256 d4514b8e9fd1184d7cba17886908f9dcf55aedbcb73e30ec6a16c1cd0f40db5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp311-cp311-macosx_14_0_x86_64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e2d3c090a420821a8ded6fbc826469701d24f7c99520223d89343b1e82643acf
MD5 7d9b07aa8b42a7e7bd51d4f4db305518
BLAKE2b-256 405b72485b73af5a4d56c4f07e225faae8affb3f5d08958e8374d06a91316e66

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f40f034d504bf1fc71ce2cee3a84001cfa5d10e9fb5c2d1428cf9e2ad05cc4a0
MD5 9baa7fa15390626263ea791667a6b66b
BLAKE2b-256 6e06a027b031d6839edafe9558a70861c45c82d67cda2f84dc0358056b48bec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp310-cp310-win_amd64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7925b0c5d3c566675323cc7cf81a0945f41c0ecc5a46365a6e31c1d1ff7d52ab
MD5 4e48effc4ac892cb36fecf77bbcd8e2c
BLAKE2b-256 14794e61f5027b308fa13b37fea1c2823d320c66e1fb1d0e895b47b08ca79a25

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp310-cp310-win32.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e99ca65c438bb98675dfba3ec75f260f92aa9a7f6a069da24f853e14e2de9e3e
MD5 28f9fb12aed42ab55bc9deaab7345b1b
BLAKE2b-256 33a15900bc193ab1f09a24dbb494f5a8004fe24a3e23cb2217a93549d371fd40

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2faf56ccc121d0aa8f1464fdc50a4ea2dd854a01e54aeb5760d5f4c0b13e63f9
MD5 35f2987f9c181008b9f6c49540f30c73
BLAKE2b-256 f4f879fe0c54e1e25ade80eda6c1d727c873c407ba689acc90628394274010df

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp310-cp310-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 2c901e61db12b881c168c14c761aa760512eda9d09ea88820f43c7330d6bd4a2
MD5 f7da8b8fe75946aab69101e387874ede
BLAKE2b-256 cc7beb0169d7746203e78d69cbb71af6042291553c49ba02eb269fa347f21a64

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp310-cp310-macosx_14_0_x86_64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chalk_viztracer-1.1.2-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for chalk_viztracer-1.1.2-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f6ae1e3ba71bf295cc45bc4d434b8bf35b462bb80d03a1f9b0dbcf5bd761ddaf
MD5 3c9d8795cf75cbadb3bdeff4da23fb89
BLAKE2b-256 b0cfe7879bde040853431a573caadb075700b0a2e39a403bc2006e55744a4b24

See more details on using hashes here.

Provenance

The following attestation bundles were made for chalk_viztracer-1.1.2-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: release.yml on chalk-ai/viztracer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.1.2 This release

48 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page