Skip to main content

Python bindings for the AVT virtual terminal emulator

Project description

PyAVT - Python bindings for the AVT virtual terminal emulator

PyPI version Python versions PyPI Downloads CI Type hints License

This project is a thin wrapper around AVT, a virtual terminal emulator developed by asciinema.

Installation

Using pip:

pip install pyavt

Usage

The package exposes avt, avt.parser, avt.terminal and avt.util modules, mirroring the underlying AVT API. The original is mostly undocumented, and so is this wrapper (PRs with documentation are welcome). Refer to the type hints and the source code for details.

In general, the high-level API is avt.Vt, which implements the actual virtual terminal, and avt.util.TextCollector, which collects the plain text output of a Vt with proper line unwrapping. avt.parser.Parser recognizes the ANSI escape codes and converts them to avt.terminal.Functions for you to process. avt.terminal.Terminal implements the virtual terminal sans actual parser, if for some reason you want that.

import avt

vt = avt.Vt()

# Changed line numbed, and the contents of the lines reappearing when the terminal is scrolled
lines, scrollback = vt.feed_str("Hello!\r\n")
print(lines, scrollback, vt.cursor)

lines, scrollback = vt.feed_str("\033[0;31;40mCOOL RED TEXT\033[0m\r\n")
print(lines, scrollback, vt.cursor)

# You can access individual lines and cells within them
print(vt[1][3])

for i in range(25):
    # Reminder that raw terminals treat \n as "go down one line, keep the horizontal cursor where it was"
    lines, scrollback = vt.feed_str(f"{i}\n")
    print(lines, scrollback, vt.cursor)

# You don't have to care about them though
vt.feed_str("Alright, how does it look?")
# And the single-char version reports nothing anyway
vt.feed(".")
vt.feed(".")
vt.feed(".")
vt.feed_str("\r\n")


# All lines, including those out of frame
print(vt.lines())
# Lines visible on the screen
print(vt.view())
# All lines, but only the string values (no color, etc. metadata)
print(vt.text())
# The raw inputs that would result in the same screen contents as what's in view now...
# Or so I think. Did I mention the original AVT is undocumented?
print(repr(vt.dump()))
import avt
from avt.util import TextCollector

tc = TextCollector(avt.Vt())

tc.feed_str("Hello, world!\r\n")
tc.feed_str("This one's ")
tc.feed_str("l" + "o" * 100 + "ng\r\n")

print(tc.flush())
# ['Hello, world!', "This one's loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong"]

No automated tests exist yet. Report any issues you find.

License

© 2026 Andrey Belyaev

In accordance with AVT's license, the code is distributed under the Apache License, Version 2.0.

Project details


Download files

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

Source Distribution

pyavt-0.1.2.tar.gz (17.9 kB view details)

Uploaded Source

Built Distributions

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

pyavt-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (730.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyavt-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (753.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyavt-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (793.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyavt-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (699.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (511.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (550.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (635.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (518.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (522.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (544.3 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pyavt-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (720.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyavt-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl (746.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyavt-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl (784.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyavt-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (693.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyavt-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (541.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pyavt-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (631.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pyavt-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (508.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pyavt-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pyavt-0.1.2-cp314-cp314-win_arm64.whl (293.8 kB view details)

Uploaded CPython 3.14Windows ARM64

pyavt-0.1.2-cp314-cp314-win_amd64.whl (313.4 kB view details)

Uploaded CPython 3.14Windows x86-64

pyavt-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (721.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyavt-0.1.2-cp314-cp314-musllinux_1_2_i686.whl (747.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pyavt-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl (785.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pyavt-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (694.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyavt-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (502.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pyavt-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (543.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pyavt-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (628.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pyavt-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (509.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pyavt-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (537.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pyavt-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (468.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyavt-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl (468.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pyavt-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl (730.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyavt-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl (749.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyavt-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl (790.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyavt-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl (695.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyavt-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (550.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pyavt-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (633.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pyavt-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (517.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pyavt-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (520.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pyavt-0.1.2-cp313-cp313-win_arm64.whl (300.9 kB view details)

Uploaded CPython 3.13Windows ARM64

pyavt-0.1.2-cp313-cp313-win_amd64.whl (323.7 kB view details)

Uploaded CPython 3.13Windows x86-64

pyavt-0.1.2-cp313-cp313-win32.whl (290.0 kB view details)

Uploaded CPython 3.13Windows x86

pyavt-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (730.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyavt-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (749.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyavt-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (791.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyavt-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (698.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyavt-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (511.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyavt-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (550.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pyavt-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (634.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pyavt-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (518.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (521.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyavt-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (539.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pyavt-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (471.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyavt-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (477.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyavt-0.1.2-cp312-cp312-win_arm64.whl (301.4 kB view details)

Uploaded CPython 3.12Windows ARM64

pyavt-0.1.2-cp312-cp312-win_amd64.whl (324.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pyavt-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (731.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyavt-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (749.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyavt-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (792.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyavt-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (697.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyavt-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (512.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyavt-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (550.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyavt-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (632.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyavt-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (518.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (521.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyavt-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (540.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pyavt-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (472.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyavt-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (478.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyavt-0.1.2-cp311-cp311-win_amd64.whl (325.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pyavt-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (732.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyavt-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (751.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyavt-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (796.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyavt-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (701.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyavt-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (513.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyavt-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (551.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyavt-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (639.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyavt-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (521.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (525.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyavt-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (543.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pyavt-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (473.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyavt-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (479.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pyavt-0.1.2-cp310-cp310-win_amd64.whl (325.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pyavt-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (732.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyavt-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (752.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyavt-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (795.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pyavt-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (700.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyavt-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (514.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyavt-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (552.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pyavt-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (638.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pyavt-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (520.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (525.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyavt-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (544.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pyavt-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (736.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyavt-0.1.2-cp39-cp39-musllinux_1_2_i686.whl (755.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pyavt-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl (799.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pyavt-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (703.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyavt-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (517.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyavt-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (555.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pyavt-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (640.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pyavt-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (524.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (528.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyavt-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (548.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pyavt-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (736.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyavt-0.1.2-cp38-cp38-musllinux_1_2_i686.whl (755.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pyavt-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl (799.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pyavt-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl (703.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyavt-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyavt-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (555.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pyavt-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (640.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pyavt-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (523.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (528.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyavt-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (548.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file pyavt-0.1.2.tar.gz.

File metadata

  • Download URL: pyavt-0.1.2.tar.gz
  • Upload date:
  • Size: 17.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2.tar.gz
Algorithm Hash digest
SHA256 4de005f0d9381bc5549f91e2ab374ffb5b67d6cb9fd992a7cf643b2538cf746e
MD5 3d625e33ab3bdf84f424f58d0d9461ef
BLAKE2b-256 9dff53db3fc460155772d2e4f2c4903739757cb2671f5946a87392472f49b8b1

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 730.8 kB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d325d00231f3d35fd12d757c9259ad4fbc6aa7c4160e5716cfc4b472eb5b611f
MD5 780b4e66ae282f87272bea47c7a5c6b8
BLAKE2b-256 539d8125ca21e420ba52c8da13169d31e94468f57c21374c5b292453e6083185

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 753.0 kB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce10b54334630143338992fe8e1ca44833391e3e1a06b12a5b60e2b5970f4c2b
MD5 3515b96a4466a1a2eea63ed550179817
BLAKE2b-256 00faebe3967612e9a4b9a4ad74c278ceb0eaadd95efff4e268fb97d8003da306

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 793.0 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 616c2eaa708e623421e4169f7eabe409c52241b4b835024b831393c1ec04aaeb
MD5 630f06898bf88afe68ac222bf67c68aa
BLAKE2b-256 d00b6e91426fca915558168eaa4189a4c1e6c50d6b0f52c45c19094535f4305d

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 699.1 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa96f474ea7f6fdba8aebd9c765a8b6a75349608bccbf836b5362c546839bd44
MD5 2df4634cc00641ef36638509bddfe324
BLAKE2b-256 8f2510bc5837b67dfa0c5fb47ee0f2caf18b515e2df8305f149d42462c3ea89d

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 511.8 kB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61623be7a9ba9791e4f27a78ed5450b24ffdb32d62b93406c171707b42ef55a1
MD5 bfa64e4ca96f014aa99fe30dddde14d3
BLAKE2b-256 0cc6d7cf54e08909af707d85e278727bc828bf81591552769714485bd8cd74e0

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 550.5 kB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bb76b3517b8289f47dd4b4feaccfd5f2d67d0973fb3720c9dbe47144592b2575
MD5 048603e6abfd0b9ac4c00674a6b915bb
BLAKE2b-256 ee6b547934d93cdcad6d52336d62eb157b3d900bb520ae7c7c7ab3322e260589

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 635.2 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f25f06edeb3125dba9e67e48e9e55854e2fab6b375212cc2f99e7925b8d6c2cd
MD5 f6c83c7aa051c682f46262f5103f31c0
BLAKE2b-256 0e223d1730f546d6715e93ef6f1efe99fa02e4ab5f708f913f7b0fc145debeee

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 518.9 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d77cc743a1ba3e1c1886602a4cb488d533dab9a709bcce5144449f32bdd3ead6
MD5 77168023565ad015ba4598e3253ba8e7
BLAKE2b-256 e5fa20e0ad5079e7695d04440bbcff4a1e897ece4c152cb00f4160f1b4be1920

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 522.5 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0708d3809cf7026f3d0850a7c69f3b63f8f2b59754cf209cfb7cfca5547dccac
MD5 d18cc6debbeef78dac92b48f780506d3
BLAKE2b-256 06b7f00a70fbd399eba07623e90b06ccefe94d87324c8a6995398bf5555a92f5

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 544.3 kB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ebc5bffc1f8405803513fe98d73fb8a1dda99b5498abe7437fe814ca9d15b33a
MD5 a2bbb7b92b478b69c721cf81b9aa49c8
BLAKE2b-256 8557eb60c07633bd5932689e0c8872aad79891599fd8ba5dc157745cde632ed4

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 720.7 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88e11dace9e191533ae0d67b0eded539b2a90cc3e36ab32f25abea2a62ff0db9
MD5 5be2c4939fe717011e5d18e85df4a244
BLAKE2b-256 fb21b17ef93a580f46d1de4634e4f03d409fac5906e73c4f5637d454b9f9d09d

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 746.8 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bdbaf14f8b8f3a727a95a45f39384fa5e321366f812d4efe7ff83454d5739154
MD5 ad649bc6a73b4e90c3f76f27732cd029
BLAKE2b-256 4223c5219f445ea70e50f50f1ce79cae88572c53946d827af635fe79b2ebabf3

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 784.2 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eda6169ddb419528760b4bc97fbf28746e77923b0a8454bbb967ede05d10d2cd
MD5 f1d9537518307b8da5cb1440ccde71b7
BLAKE2b-256 aabf967663f10247ce2670b8873a3f2b2f0bc7cb6cfe05b3ca5286dd0fadaf51

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 693.1 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f569002bfabbff290cd9e4ae4e853735dc803806fe7c3e0f02a8193dbfa570e7
MD5 3b0c69be829f58b9e23c7340cab75dce
BLAKE2b-256 e6c460785fdd2af1342cdf4258409ce251f240817ff878d2a6c8d22dcf616417

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 541.0 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3f97d7599112ced3ed5ac03767d1fb5bfe104fb6e7ae0dac1840fd9335178c6
MD5 bf6b58267c328b54c18fa6f241c16174
BLAKE2b-256 c2c4f8689b8374acf28982f25069234262bf3310e872a6d246965afd2d831a71

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 631.7 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a55129b8afe9a7efad2cb5410d198f467edd065af919e350e40e7a7f7b170fce
MD5 dfa5d0884f25017f592f75dd81819eb7
BLAKE2b-256 a9e999025839de0eb08172dee0ed3337afe10ee89b545c06c37bd89db68e0e0d

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 508.0 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2cd3c7e1a83594c4cc30bfcfddb0460909b063507d9facd5116ad97babc19fc8
MD5 f2a58e4a8c54c072aae00689cc3674a7
BLAKE2b-256 866cdbba058c539ea277ccf9111a5bab4e17ff333a476ecca9e2cb21b0600880

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 516.8 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c522705f50352e608c01d6237abed6cd18ecf59516fd884b0fc8a3186e9c9dc2
MD5 703c900bb35be70b7c0c7de59d6c486d
BLAKE2b-256 6e831214150eca29f7f867d78953656f5806a604c40baf8714aaa3bdd2f0a24e

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 293.8 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c4d4fc5d254a3bd30b0b4b4fbc04873601b6a08ee3ce6c2202082013978d1824
MD5 ac8ce19c2281820c81d4050dc2de7309
BLAKE2b-256 894f856b1128a6eebaae986c619a28e1a2b07980a47c92494518eec506bcda15

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 313.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d12f8419c789a5fb7219a892f75639d87b7c3fc61011d6dad1a9e584511c7e4c
MD5 e0ed49b414378d8574b992a7864471ff
BLAKE2b-256 8fef92e3f9c90eefa4cc2140a457c86f328e40ae8ea63d7f5392df7f02c4b3e8

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 721.4 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a10ef0ad5db85805db8685aee684a97e7f70fac7aa1e7708512919566dc95469
MD5 08c1ba59155a219295d786b0d734ddc7
BLAKE2b-256 e0f1f1d3c83ed2424ce2dcf54468eaa30bd228ae3e49b8ec38141b415e48dd1b

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 747.7 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6fbe1c061424548a68c7d14b0ef0b62c27d9cb7f10699220beadf187a87f6a6a
MD5 9ae4d07bdc9fe65acbed422e0b797372
BLAKE2b-256 e8d953c4ceb4a4454c2dbffc63c024b590803f901c71bdbca4738975412f38ba

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 785.1 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 639161a92cc7ed6b0364e2545ab21edf9d12a0f5c56379e1ed20b1b21ce04fe7
MD5 8f1d600d630f045d0277b07639fda4d4
BLAKE2b-256 47dfa284b5aab0b2b2dc7ad14e2b251ae3fad938ec83940f2dd81d3d5e46c528

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 694.8 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8b90eb6a3654414b293201b1cef9479e4e6a8339384bc0278d57a7e20afdc75
MD5 a163aef42e04a80705750dda3723925f
BLAKE2b-256 b2de15f2a7d95b4928cde8b9de950ab848cfd01cc1c8fd1709ea11b0c7ce4317

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 502.0 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f42532d63b5b0b2e5ccd38cf38bd04e6b64ed8017c7d820a6dbed6bdbc188b0
MD5 84ac4a42a86951ca8969e2b84362fa7e
BLAKE2b-256 21f66b25e0a058c7f7d7b8192e3ac8e58bd42e5ba958f0be83aea7d18c9f2704

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 543.4 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc6dc59ad31da487e85fa88e14d9d2d2d53cd7da3c6d5fc0b728d582d5d0411f
MD5 cab9984bbfdbee7e6907aad2ad25785d
BLAKE2b-256 c6be0f187d0d183166e0aa4039c71e576c4ddac9f5ebf601e05978b087ccb12c

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 628.6 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dcc0ab394f1f96518ee4a2926269c8b6b995d5da91d4e3f202089cac1bec130c
MD5 87744f841eb7651e0642abece1aeaa7b
BLAKE2b-256 c0fae675f2c20f463c7062ad22ab58d312788ad68a1726fb251c2b72c9f5998c

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 509.3 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e15872b0c154c5db4fab325d5a1e063d3b8171ef1b734d3450d25aa69674b9be
MD5 5979b9d23b0a8e43b96021e2528210bd
BLAKE2b-256 2dff8ba610333a12cb02934ad05e63f2a51eb67c0ac12ba26a60bb6329f3bb83

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 518.7 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ae51e14d559d78e7dfe2f258c0eed85d6bdd5614fd871bba0d8c59f97874ce3
MD5 2734af61fe1ea93f73bd1e857bd79418
BLAKE2b-256 b8c4b39ffa3fb333c5073d407f68d21e14e5d33470883f8483bfebf4b5c83494

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 537.3 kB
  • Tags: CPython 3.14, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e0a7c2d3c9ed326525cf7841e8c4b3e2b5948f5360494c772a6d73135ebfdfd2
MD5 6fd4f5e5f5b4571f44f76616efeb3c15
BLAKE2b-256 38d61b89be265b46a228b1324ec26c09e311e6be50713467462404ab0620706a

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 468.9 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4125552afe848688626165e1c19d152bd6bd0ca7caf46e235684b6ac9da797ee
MD5 b6a63901811d5cc479d4912c6ee7abe8
BLAKE2b-256 3d0aa8836b682edcfa49e5977be9f0ab5795ed0744010b77a2275f24962ee8f7

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 468.3 kB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f3ac4803338215c28debd431b53221e4bb934ede1950e402f32afbf6ac99842
MD5 5b20e22146d703421f19110eadcbe2ef
BLAKE2b-256 3b7faa318a73dc39a1506d586deb4ddba0db85dcf51bfaa3b181b084b3cf708c

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 730.5 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 369b795d7ecfb03bbda2c78507cdb364362beda1c3e07e28e6d39546139d9840
MD5 5d0bdf5cddec85dfceec36dabdaf9090
BLAKE2b-256 e2a6f68d25621e3f459e3cfb5f64af341c4fcc593ec21120db197cb7109ebb62

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 749.7 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63ab8dc99a465e59df9a9d47a2a07687ce1c9428a0acbc75deb3bf9480c8cb47
MD5 101f8d209667c61307c38561a31f7e54
BLAKE2b-256 e7d8cd728c0d4753568be0779e32147aa07ee83a8c825ed2e597430acbdc9cd8

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 790.9 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 258499c9b9a1c8bae67789675ce6c9b4be512fa1d8e75c729579c76c713901cf
MD5 771ee397b3b995fe40bd23e1a5bdf733
BLAKE2b-256 b98febe3e1646e539ed66e1590d895567e6077c59aa433002fa0ca7406b7076d

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 695.6 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4ecb5fcf2c1a5145c9e8fd1faa9cd0ba2cd5af685b61bf986ccbf9c2067fb86
MD5 fdd8934ff5bd78efd27b7bb99c6230eb
BLAKE2b-256 80ea6963c7ea98619c225c9c523e4daa1f218054c8caa24a563c513708eb21f8

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 550.3 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3040e042080f50445378e78a0debc91ad5a52b635088f932071a732a9d4f38e9
MD5 baffbc29ffbac84a72d06e5f85917fbe
BLAKE2b-256 56cd22595c63e28f8d8edf463ecd4fb53082e799e4e4f46b3d74d63ebe602374

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 633.6 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ff93f61b11e0d8a181d92badf574645badab92b00dafd11fe9a9f91465317878
MD5 99d9d7e5622ac9b43c06bfa8fed1ecb5
BLAKE2b-256 02ac2c2a089ed5019b020f3931ef7b1dae0c4e6bb67a08c43208a59ea76aa360

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 517.3 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eebcdaea21feed1cfcf858cf759799fddfcfcde7959f56dd9cd2e207aa1798cc
MD5 963f97ca73e3dbea8ea19e13a82aeeb2
BLAKE2b-256 6f083d832456240722ed752a9fe54068c5baa187abcbbb58bad3cd21e90a5453

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 520.4 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d21133c7e7ebe5da99c30e3a06a4bc78419ea1c2fed3531ea4960b1eb2d6643d
MD5 839f187ecb517a66c8bb3f96837029d1
BLAKE2b-256 1b7cc622a4470cb2ea399ff191e2ecc921e0c9b54f29db37d7b4c7fae5cf32e0

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 300.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 77a1a79ac92f81efe05539c1f0a2ef63491204ae3efc3dfe94bd74c5124fe6dd
MD5 260427136f45cfe278fb89039a582fbe
BLAKE2b-256 7fa14d2c6a31c0d327e4afe22d7c1f9d677154a334fd254ac85079c0a9188c45

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 323.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a43d5d97913f25a2336fd014ad13132884dc5d9c8e606009ac58286dcca3a521
MD5 f97a946f29824bf53c2c64beaf812957
BLAKE2b-256 309767d562d7b136debb08c3c11f4daca7cb59457f6c6b0fdb92fba44616340f

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 290.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ef9411b554c8d12c93110779c094be45febb2d3187243809aa96ed5ef280e860
MD5 8d001824f519278e311b6989f0f2be8c
BLAKE2b-256 d2de4feeb0c2ca9bc531391f9d8add5ca7c9915d6b3977c2e3f98199c282bd9b

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 730.7 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d9b260839eede13f152a3ba6370e141533563093f590c627a37e8c449ca8a87
MD5 9d6647f6a75b44e647960dc3e81355e3
BLAKE2b-256 2f78e2e81b13526ac6816f2db2d1891b6b1c196349df22c11a1c5a377bfea550

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 749.1 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a2e8f42548808632f37de1dca5b46377bc3ebef5507e892eccb5819112a979ae
MD5 b1552152dc60ec94609ba7804e3923fb
BLAKE2b-256 8e24e859c101f72bd4baa78c52598b2e5feae32eed9c83605c4beef46698279b

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 791.8 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3dfa482ffd86e03d07381f0183d1bb429766516006e66431417ce76a66c0ebbb
MD5 fcf2760da088a7914dcac6692d5fd585
BLAKE2b-256 a4f9b3162c7d6421fa60629b41d000364ed68fc48f049fbc936c296c27932483

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 698.0 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b108143f01f5abe4c5e402e8bf25cf0667d0f3af276a2166d4815e40bb45e13
MD5 33f726be664281e9142b6bcdd5866d14
BLAKE2b-256 8121838acee9fe6a07b983f8b588ae6b0833d8660c67494111ee0c93d0b65173

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 511.0 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1729bdb0179a53dc7e53ea3768ee507978b2a0af50717cec4bc1ebcd281556ea
MD5 50076c5c349e1b586daaa200b99c36e4
BLAKE2b-256 77bcadd2119d3a95be719dde6378ccd5635a714e3b5b2ae8ddd500b7973b8a88

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 550.5 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96e71ea056bb754125e6802f5e41e0d865ef988c8c22368b1de18738b0470384
MD5 020dd2391336ed4a58a03a68a04a9c12
BLAKE2b-256 87cd192128abadd33c530d9b84e8b6be1afc79e04e3d300be332e1b36d27ab88

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 634.6 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6dfde5db4365af63ac587fd81489f2afd8d34508ad64516ce4cfc27142d79778
MD5 4c886e43fc2ee9d9de7c9b3fd9ec2e58
BLAKE2b-256 d7a86a0e935824a5a43f05f479dd4100820a2d421f212d29ec21679e4bdaa54e

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 518.0 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 033b153665faaa541897ce33a442dcc5f26b6c1ac6df4bd2eeaa40c1753fa2f5
MD5 1ec89af062870230f4d7de21e02fa8f2
BLAKE2b-256 c40a1af13fe117bcba97e3dbef60b72c412cc3e377736fa7a5bcc4fb1c29cc72

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 521.8 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce981def84033308481c6f3c6cab284bc8224575f925739c15a3b9dfe4b94001
MD5 94a1f5517202e6fc5aad5548650b13cd
BLAKE2b-256 72c4a04829f9edff6ac5f365b5adfd83755d5262cf3439bf5539fb1975ef115e

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 539.9 kB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a9a47f9bd7786c3bc9719fd99e3fbd889986e989c261176a5cc937ff7ee259f
MD5 23c51327e46d606e27da1f78ef8b590f
BLAKE2b-256 abc9390767041d4d36887994944507843214c1c2621c53487e39582912e4c4cc

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 471.3 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b4fd7158a93c71045bb4718e30e3c25e09a540fffe5bd2973cff308858665f6
MD5 7fc259e54d23b2f9f979553f35758151
BLAKE2b-256 b691e6d49eb54e393e32a20bf7dfd5f9557b98dc1eb99ae63f24f24bda1e1969

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 477.7 kB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6710403b862d8a0766c6f0984657924b1cb1a80e51b491dd99791102390784ba
MD5 f1c5e8687f7454e93de9abfe1fa54357
BLAKE2b-256 f12eb74214ea1c24367ce6ec974135fcb83e195698d4a8dc4657dc5394cb7cb7

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 301.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7b2ae5b9de79a81cbc5288aab1188b164c66844c1a92e85a161ce509bb05bed0
MD5 30690a04a3d131ca186c0d7070d53e30
BLAKE2b-256 527cde05d5ec1ce0955064985cb2767e717eaada6bcd83162357121b3f0fc17e

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 324.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f8e9c2c0e586d8f2d146af7f25b18bc63bee4759c726af1c2afce6009972555b
MD5 2f39a70db8f32a68ffcc078dd2e4c1b2
BLAKE2b-256 0ceada8676f111ddf6e8e1c7f73e4167ddcc4550760a69209eff3a1c286262a6

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 731.6 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 932a2b25e8a59c81c2e53f68a8921b5140cd5634fa1474e62af79821e4b16585
MD5 79ad437621bbff05520d19aa2804d579
BLAKE2b-256 b2a2911869d57eb724138a01e2db6618377806334098f7e3e3fdbc4d07400c32

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 749.5 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 16acb00796505da23d7b24d2b3d0521657d5ffcfedf1e5b697c0f9566e8ecd29
MD5 ef627bbfd8a3f36e4bf174c558e3f9c4
BLAKE2b-256 cc10ef123f6569b0073123414e35d617fa69f956d7ad812621ff4f8e115ed74b

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 792.2 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 16348b101473ac33952abc460488d3e1eaedfcdd838bf3cc88ba28a111a85e5e
MD5 4abc9ac3bf30fbbb77e2e0c58ce05767
BLAKE2b-256 05e1385140c828777ce276204d342e53a64c761452567e7c7a517214e9659f24

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 697.7 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64e8bb82d3cbbb8a1ae27cf40ffff5ec939c70530c5bf7ef8fe50b17f69fe60e
MD5 cff1889bf74f7c776a92e5d8d35d7f78
BLAKE2b-256 2f3439f0fda5f93b5b53dfba77aad234c9eb1e67c66bda108bafcadc2367df19

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 512.5 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce764c537c977a28a89f7c3345e9b98bf9a50c3221e9a9b87937ec69f93a9822
MD5 794d65db2edd0d3cc799ec80a8c7c874
BLAKE2b-256 d1665d3deb38c97889b63a8c31ff84dfeea8ace17db536de2c46ee8e6fe91526

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 550.0 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b65d9578ae765bf76fe05e8bb8b10024f4c4581cf26972ff823a303b3a69f01a
MD5 61206ca574d9de4681f95aaa76ed612d
BLAKE2b-256 282f7fbf6aa1d4319271791ad67605da827df6d491b2255dff225ee5d6c61acd

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 632.5 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 20a1dc40f8cae9a23c858c54a00563d02ff13a6b74b1a486ced17c3a3b2db5cb
MD5 a43e1ceb27b250d1b98553433992ce0d
BLAKE2b-256 683bff6e43e743c96569c1f17cadf127ca63874921ea85d0389a427e1ba1233c

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 518.0 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df8593f26eef49441c475e5f5c85f78fe6e40d37a57aaab30c0f40eb3cd1edbd
MD5 ea1adcc6673c202df499bc6065920ec8
BLAKE2b-256 5df848527bf96502e86f04c567576537d8c18833568dbda7d1f9cecf71351824

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 521.7 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbd5cd5e38ac5533500661d7aac6dac7cb4297e52de44ce893a803a3acafef9b
MD5 beff2a67f0073e59dbe8c6f05f0a7cc1
BLAKE2b-256 2191355021918f2bceedeb21be954f63572a9d727eb7b00ea6dbc6d841eed3a4

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 540.6 kB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3332e48beeab41b4404f9f55ba712f50c668a45bee31bec3ae734910f0e8262f
MD5 04dbe2075d9e1417503f438fcfe1eeb3
BLAKE2b-256 a6e7494c332afcafd0c7e6fde4cf84b837b4239593ace86c16e652982d4d6982

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 472.0 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8654f3cd51499770f15a6045cdbcf205bff4befd9c4d78ebaeec5b95ec70697c
MD5 758e1b8018b22c42806f0e6b8f4d8377
BLAKE2b-256 350aff5455166a8410fba2d1033a3a3d273b970b1dd2f7191c0a3f8eeb251d59

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 478.1 kB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2ca6f97f03d0a94d9ac4d2fe9b6e71c43715951d5572c7d11f47a4795956a82a
MD5 b2d6672b540aba63d213a3b59d815e64
BLAKE2b-256 2b8701ea0011cfa81c85082070e41ffa26da796b4e63d2c70bc0d313bc291124

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 325.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b85ec4626998d98110ff1cb1d2b41a5b87f44aca44aa0bff8720e87d38eb27d0
MD5 a431eefe34a96d6370bd1adf7d1a9639
BLAKE2b-256 7b9727d28c2ace45547b253d00d9fc82b5c3076c36fb40b8cd3a171e98ead26e

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 732.4 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af453c65208f874e06c2b7831536434e620b0c2714b88b57f82d1ac7e3d1fdc8
MD5 c3a40be3ba4d44bcdea6c8e062c52f73
BLAKE2b-256 bb853a2a331ec155092267724c55a04959aa15e70b11ef7ce7040d3d31060dd4

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 751.9 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2c7cc9cb9f01a733c03cd91079a1db3b7a84d02ffee6ad4f843b282990393f4
MD5 7f9dfec67b1d17ffd994ab7e67e91824
BLAKE2b-256 e3aa2cb997456a2c10372c12d90e136d0de06cd947726da40086e3aaee619c3f

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 796.7 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 48406d567bd41bbff3c8c61d5ad977934abf994fc60eb6024c965bd009fbf228
MD5 5759c483d56698ca384870d42aa39f7b
BLAKE2b-256 7793c49ab7111bc104606b7f92d3fbcc43764eb884dbab89fcad10954a5f89a9

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 701.1 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45b21beeccf5ce7bbc79f985343f1b81fe38f242837e0fde84c082872f6f3647
MD5 d956579fe3ad445d842fd840e85478ce
BLAKE2b-256 7ba1a5d50c36082158ce217b2cf72a7c365ce7debfce99adbc8fc5f118f2c733

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 513.6 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f6ff0d8cc98f19af23aafa5fa1b0b120ce783b4f9f34fc72f9d3984b5725195
MD5 649848440d4580ba6b29ef6443dcb9c2
BLAKE2b-256 84b723d37b34870fa1ccb3f4c1c1a53c3009d02bbe662cd11f31c42881659ac1

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 551.9 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d489e0d3000f3c452d21accd32dda98d52e64573be558a8a8645dcdb866d99c
MD5 3b799f3d6c56c3851f3f8e68c373f7ba
BLAKE2b-256 2a4f8b89a358821a1de7f750f7b4804cd429666bc824db804211df41b30b2a0e

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 639.3 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b7d531ae1b86f9933be7efb02ae50c2126f1bd87083a57d40f89322528083c3
MD5 5f384acda36385025b739a0e11e10f4f
BLAKE2b-256 a35eff9a9152adc261b7874013375d97d762702f5a78880d66736659c14c8b46

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 521.9 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 86f14613be9bf4c42456062a87ef6026e8e4cc95844245bf7d7481263a195b5d
MD5 b6d96a57b9f03ecead97a42e194199e9
BLAKE2b-256 0bf921427f4628fb28b7283e85429f6a2f4af23452e280500c856278e91d0a48

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 525.2 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6dc4b8b1e7945be3f036ffae0410523cafc146d49029c818e8a56c15e015c20
MD5 942b5d05ad0f41724c90edac40364ada
BLAKE2b-256 adfc1f81b4d91f3fdc488356794bd0568395bfca3b3b808eb32f42978f05dd6c

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 543.6 kB
  • Tags: CPython 3.11, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5b39c26c3884d3e5b7dabcec407b02851de3734de9a5b6f3abfbb6110df90bc0
MD5 d3979c105e1c4e48670c4fba4640d175
BLAKE2b-256 30ef0cca6985719abd506b87614e3816a6000f88009f1f72b2eed2579a98b588

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 473.7 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78aebd31cb73a16fcca2327d82a5762e06e353a4c46766bce759e045ce48a875
MD5 838a28296be1a3a35335839adeca39e0
BLAKE2b-256 05a76a02643cac0237bf3325e06d262b030c2dd7c95ef2651a4216c3f1d21dfd

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 479.4 kB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a1f2cc03888922ce5cb5ac5a4d27faffdc2e989bcdde1f2e61a03d8442ddf0d
MD5 96077a7812b8002deecde4e52cdaad21
BLAKE2b-256 ca4c451c2eed5f2704d82a3f8502725b17e0621132ba010a3face13e78427141

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 325.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fabac6d9ada927bed30374a5ef5438f91c9fda14deb6a5b70fbd5313858b1428
MD5 ebc65adf293cade8e09e100759ddfe7c
BLAKE2b-256 06e0c1def790596fd57e5660d703fa4085ae65284987a7b682611073e4641a94

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 732.8 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4f8603b0e0cc4032621fb17999c552a8b58cbbb67b019ef93acdd7838a976ae
MD5 36aa6e17773e7f7df78e41b542c745e8
BLAKE2b-256 799c83789843d1c2aa7ae5f1a1a0a3e4268f5007d167d26ee4c8a149ee7186b5

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 752.7 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f7b9f028ae41971ded8aff1e2cbba0430a0f0fe43aee8908d5eefc09e9c176d4
MD5 00c91892753c95095bfce15a662eed26
BLAKE2b-256 47e8f60cf26504034f294503f21a0ff12e7ebfe6bbd4b5ccc11ccffceeffe3a2

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 795.3 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e9e768830ba38fa1a62f8c701edc018337d2dde534ef8f5f5418b939bbaf9935
MD5 4912683e3441bbb5ab83b4560cc61e00
BLAKE2b-256 3f048ccb76e6d821e135c3084c6414f18b13149e21f5550278292d3d56b1b445

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 700.7 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66756ec6c6a86a4f2ed956d44912e6af7381da4d1e86da1050c78dceaaa7de05
MD5 e0388e51f5feb2e23afae8a746381e12
BLAKE2b-256 9ae1125b6ae03614243902af2162ed74c48ec38cafa87c20d7504c28a2281ab3

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 514.0 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72ccf0e24ede8f414fe57bffecec7245d991e9a96e8c2e2c67dbd14e5f38fc8c
MD5 6c95d8bf745f45e987ca11cb8ebea34c
BLAKE2b-256 2fa48cd2236fcdfb53e7d20b458022e4362e0d14fd8c3b913e352711b00e45b0

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 552.4 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2d0a67ce7575777756b0e1b33d9f1839f00b4c9c0549aa0951059bd370777bf4
MD5 49baed030f99b2d77f752f5c0dcbfa6d
BLAKE2b-256 90ff0fe1d00483a8d154053a6811715d442937cd9c154e4be571555b43baa9ed

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 638.5 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f383e3467304ad56a4e2771e36533557a0dfd0e98037972a62d263fb0e5a570a
MD5 c82fcc3a1d14f44bea311f31d84654d7
BLAKE2b-256 79f644029c2854cb3173401d44e2e3b197456007b1eaef1c6bcc73605050805c

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 520.5 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8489187b823983322cc591aa8865ec40ac364e0e0561c4437fcd9d5bbaa1440
MD5 fec591f9c2937a25f0a624f2e1382094
BLAKE2b-256 2ee12f5b0365d7565ee2d004885381b6bc98a74492a164ba88e6b27fa34bbcec

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 525.3 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 166424628fb172150e6ea8bc54dec4878a986081f25f7106801ff8f3c7673ff4
MD5 3bf1e1bf33ac611efbbf8cb5e1535cdd
BLAKE2b-256 e360f2ecb35490dcc41045c9389029b573c005905306776f4f277ff0b5fd13c5

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 544.5 kB
  • Tags: CPython 3.10, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd370de3a742530c7c0a582edb47e788ea1492d80a20da77e48e36c956e7ed4c
MD5 a31aab4d786b82118f96f4376876ab25
BLAKE2b-256 6f12f5e3db348bc70df44af885317b56fab3b5892117954ab099d85ebc9e40bd

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 736.6 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71c4cd1694a10f3e34514645cc0091011c7a52ba82778ca32289de0ee8ad603f
MD5 be82f227a108d9695e97884791c92074
BLAKE2b-256 5a1c169276c66c7456363b915faaaae543198140f7bc47e42e0e8466f3fb2890

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 755.9 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7871672669c94fafcc1cac1df4cfa107dcee9a83323a3636ece5e15b91a1efe1
MD5 629ec002d8c09f5a1be3a4e7823cb2fa
BLAKE2b-256 9910d97b879ef4bd9d8224769f56c916fd75ee58c40f41c74b587911eee41349

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 799.7 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f3a3a31469360108c5724f24622e349bf4e0e7d054babe34a517b528bfc47351
MD5 3823f66d539426a61708f4e261badea7
BLAKE2b-256 35d0481354c1937eb48cd1ca3701ea4dac2d53c2b9a16f22398549a4d5cc89e3

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 703.4 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b098f0730b4bba007fce4bc4a992c805b4f09520fa0375c2a7de3092ad6ef3b5
MD5 d88e593cf430126cc8fbd013b865bb61
BLAKE2b-256 f87cfc77bb80c5241150421babbfb0b51b7c06850dbb8948218a88e6f46deedb

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 517.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13f8b48d5059e4facb4408d77372055a7ee2e84916493e645e48a2dc0f4090fd
MD5 b440554ec70a8a251c7385b1b386b431
BLAKE2b-256 faf142b91de9e6e55954c1a95d1d9d3ff55899740b0b8f848c52dcd2a11b933a

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 555.6 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5d6236a529d1185a18f35ca216e8a219e01990c746c9a2bd3b085a472f3ba48a
MD5 3b1a636a581829114c131258dad148d3
BLAKE2b-256 1840280fe3bcb6e46e3efdd70139af9b3b4429264aa26f74b6ee1456b3372daf

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 640.4 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82fa60dc21cc9b4cb5f1cb12b88afd5656a9cbe8a103892b0e2af5891db0cff1
MD5 9a5011495e9a8ab592d171da13e8f881
BLAKE2b-256 101bc23a6a555daf416898ba1d545e30dacf7b4b2ccd3fbc290768d0f869f079

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 524.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b852b8dac6824fb4468823cc2742a6e0bad151e9f2e6536e68f4e0adfe98baf8
MD5 fdb54c92b9bf60c18deacc069f7cd08e
BLAKE2b-256 afd78c74a7b18b6c8cd7f68bd9ce6f1b49e458456879e2e768b0c7eb653cd34b

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 528.4 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf1f3d96fee66546dc2e0cdf4fc006a4e5787b36f0c86ca395a5c2c294f47293
MD5 cc24e4f5db0d5723ef19d81d1c646c92
BLAKE2b-256 8ba118a425c6e4821c02fbe1d06009d6d04d444acf49b949a5cbdbc4e2b8631e

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 548.6 kB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a431940a1878834ca7d26f0c6b0082475c87f7035ab49206a1158b74f9a4941a
MD5 575b398644fbebb0b1e7be76a86a687a
BLAKE2b-256 836a4c85a72038979fc4fd39a67ac5db53166d7127db813eb014a626595576cf

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 736.5 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aea1e4e5515523d0109fcf18ff459f9d67e0ce6d33ef691d659dc4b58a27e5c6
MD5 be2ba3dab9d5130c7512c769bbbf6972
BLAKE2b-256 9347f9b5883bcee4bc991cc28fd714e847002174b9ef16017e2983da83c1a8da

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 755.9 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 717f3def4ebe5b37619a2b81483cd4f2ea27f36383baf319a69a6c370e4fc162
MD5 bc47e64d7c7778f5b8c4d2a016cb8d2e
BLAKE2b-256 2870e2bce14ca26b583964328e64b3d83606330cd3a2a91e9d7f7456b8ef9128

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 799.0 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 629690e0879b37fd523d7b09343de442413fd55118cf896e1e42c660e67cdf3a
MD5 06c21d616e803245619d2ac44882aba1
BLAKE2b-256 37f267484faf566f2032a68c2bcbe424a08b612d8a17ba9be8ca17c52d263c57

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 703.3 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de1f10af48a80be9ecb1b46333df64668351d78b593e7459488c5121a1cc7434
MD5 b9a1ea9458f46afc5b0c94fe0ecf3311
BLAKE2b-256 9acde4ebc0b5d86462c74e94b30bfa6d300bf32a30cb184e3dee27bec323222c

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 516.9 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8a48f3547ce80514d45c2e2637024ae172ff2b611d6fdecc0a1237931e2d9e5
MD5 d059040a0f501b88f67444d0b7dc30cb
BLAKE2b-256 6cab0041d18ff7f1b726fef2dad3821c006b270f69e63f70db734ce4f10de6b3

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 555.0 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e363ddd329ffc9437618cc4a3f871efcd4cc936094cba2aee1337c32a0ba5ddb
MD5 2063a16f7368f6a8cb64e4297e6d9253
BLAKE2b-256 61032de1f061577d95fc0b67b46154e104bab2e5afe61efd5328b36e6875e29a

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 640.0 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c85c312759f8b3c5931ba3c0bb865fe7898efb159fd70fa6af53f7f4a92bce00
MD5 801c49c0198f929310186982d8ba46b6
BLAKE2b-256 80dba56290f9ad60cde8639956912c0dbb190ea55db3c2e1ada12cb70ce0ac3a

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 523.6 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6030be5c14a4e784c522895f6987e46513e355790e2c6905ae6b08860a358b0d
MD5 a3d0c89d153b6009270dc9d82951442a
BLAKE2b-256 c7a198086b5f3eb715aa8e8a3d8e32123d3001f8c21bf089dde577f024fea656

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 528.4 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b6b9e6c4deaafec20272242134fa5c3996669d53c78a7f9e23d5a8e9de98717
MD5 ba4b5d2c963bb69a9757d35041db18e2
BLAKE2b-256 d2db697e57cefc4408f7df64084b2fc6ed4bc5c3e2e67dca752331662005556c

See more details on using hashes here.

File details

Details for the file pyavt-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pyavt-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 548.5 kB
  • Tags: CPython 3.8, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyavt-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d604e23b76a84ed022474a620b22c9a55a90b4cc8616263193ae5b79b5a4aae
MD5 8b010568380b0d9a0e935933dafd9293
BLAKE2b-256 4d14f21040ca5775f88e4c2f163a360f6a6d0169f1559cf07ff0d7d07db5e7b0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page