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 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())
# All raw inputs to the terminal
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.1.tar.gz (17.8 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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (730.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyavt-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (752.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyavt-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (792.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyavt-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (698.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyavt-0.1.1-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.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (550.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyavt-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (635.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyavt-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (518.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyavt-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (522.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyavt-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (544.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pyavt-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (720.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyavt-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl (746.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyavt-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl (784.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyavt-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (692.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyavt-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (540.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pyavt-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (631.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pyavt-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (507.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pyavt-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pyavt-0.1.1-cp314-cp314-win_arm64.whl (293.6 kB view details)

Uploaded CPython 3.14Windows ARM64

pyavt-0.1.1-cp314-cp314-win_amd64.whl (313.3 kB view details)

Uploaded CPython 3.14Windows x86-64

pyavt-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (721.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyavt-0.1.1-cp314-cp314-musllinux_1_2_i686.whl (747.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pyavt-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl (785.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyavt-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (502.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pyavt-0.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (542.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pyavt-0.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (628.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pyavt-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (509.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pyavt-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (537.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pyavt-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (468.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyavt-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl (468.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pyavt-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (730.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyavt-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl (749.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyavt-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (550.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pyavt-0.1.1-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.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (517.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pyavt-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (519.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows ARM64

pyavt-0.1.1-cp313-cp313-win_amd64.whl (323.6 kB view details)

Uploaded CPython 3.13Windows x86-64

pyavt-0.1.1-cp313-cp313-win32.whl (289.7 kB view details)

Uploaded CPython 3.13Windows x86

pyavt-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (730.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyavt-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (748.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyavt-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (697.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyavt-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (511.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pyavt-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (634.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pyavt-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (517.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (521.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyavt-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (540.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pyavt-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (477.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyavt-0.1.1-cp312-cp312-win_arm64.whl (301.3 kB view details)

Uploaded CPython 3.12Windows ARM64

pyavt-0.1.1-cp312-cp312-win_amd64.whl (323.9 kB view details)

Uploaded CPython 3.12Windows x86-64

pyavt-0.1.1-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.1-cp312-cp312-musllinux_1_2_i686.whl (749.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyavt-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (697.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyavt-0.1.1-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.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (549.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyavt-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (632.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyavt-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (517.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (521.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyavt-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (540.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pyavt-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (471.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyavt-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (477.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

pyavt-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (732.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyavt-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (751.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyavt-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (796.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyavt-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (700.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyavt-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (513.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyavt-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (551.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyavt-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (638.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyavt-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (522.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (524.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyavt-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (543.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pyavt-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (473.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyavt-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (479.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pyavt-0.1.1-cp310-cp310-win_amd64.whl (325.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pyavt-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (732.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyavt-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (752.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyavt-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (795.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pyavt-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (700.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyavt-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (513.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyavt-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (552.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pyavt-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (638.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pyavt-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (520.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (524.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyavt-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (544.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pyavt-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (736.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyavt-0.1.1-cp39-cp39-musllinux_1_2_i686.whl (755.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pyavt-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (703.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyavt-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (517.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyavt-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (555.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pyavt-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (640.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pyavt-0.1.1-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.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (527.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyavt-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (548.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pyavt-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (736.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyavt-0.1.1-cp38-cp38-musllinux_1_2_i686.whl (755.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pyavt-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (798.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pyavt-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (703.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyavt-0.1.1-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.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (554.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pyavt-0.1.1-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.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (523.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (527.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyavt-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (548.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: pyavt-0.1.1.tar.gz
  • Upload date:
  • Size: 17.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1.tar.gz
Algorithm Hash digest
SHA256 ef3f62a5f562746e5b6184486f0a9f7385656ae7f6da74d6089f3e2d1addf500
MD5 b54fae4c70470f5861d7c5d51d5cd0cd
BLAKE2b-256 72a4af7b031d40d22c97d521c19f5a34724c57deedfbcbb20b3eae0adb797a4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 730.6 kB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f68de096997615de3071e7f4d35a33b95ec71f55b2e5c7278fbd8fd7cef5517
MD5 9b1491f60b4ae9f1a1fcf5ae40ee0d15
BLAKE2b-256 6b19c57448872bfafd87dd7f625385ca20e042eb6ae08e4f553ae2447bc6010d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 752.8 kB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 765258d0701258af42f37f847d161c77a52ce1c7fef2dd3990ceb36e74cb0161
MD5 4395569c6022a8af07c8a306feb6d518
BLAKE2b-256 ce7207737caa71ed18bcfa7212ff4cce4c1035b8e80f059a1c084aba53416147

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 792.9 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 65712f3e988cb21fa14b5457f7c35cf7279b1ecc429fa3815bfaba39b7f1a318
MD5 b3e0b545990b9b30ce937f604137b3b6
BLAKE2b-256 eded62a6cb792f02579f6365942d9c28ad52facf3cdbacb17c4901eead5813be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 698.7 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 963aaa8b8d63174b1b20f96f9634b62e49d8183594ba015a7aca8505075571bb
MD5 88ec8dcc9f33fc7c869e369a13526187
BLAKE2b-256 45192d07bd09c840e06dea20b69cf4dcb5f53f88930116a2bfe9417f0d6c3d84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-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.8 {"installer":{"name":"uv","version":"0.11.8","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.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3633e8bdbb372ea915dbb6f9f187949e274ced7db16ca293ab692daba188d8cc
MD5 450fcf713a1933aaafdb20370aa95395
BLAKE2b-256 8c6ab548c8d0bf8003377e8dde51d178dd81db0f138e0e25d959e29291cb76cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 550.2 kB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a8cbd40e40dfbe0e52de2e9d70015293336e7f1953ee1458681c28bb04cd9c41
MD5 06dc1dcb4d86f285e149d01cef4d9ccd
BLAKE2b-256 1f041192d036a6937abb39d59c0b8bcab79122fdddb9147709e84b74b93be191

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 635.1 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0db07ba6f775a284a849352eb0bf02b077015a73ca947b9c29c81bb4ef680bef
MD5 e60ecde8312f956d85e6cd1b210f6aec
BLAKE2b-256 58cad35bdac33e2b7e3bc31b78a5666112f6477eaec84f0023abff5f580aa5fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 518.8 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a39ff0ffa7f42977d30fe6598b74f9fbeaa833ccc9ebaf4f117f72e88b737a00
MD5 68e6cd0699ef1b0b6af06b0d35bf9ed6
BLAKE2b-256 1af4960707e06a18ae55238f80173d84046049014a56ec58e51f6c17d2efe790

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 522.2 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e71e6ab7d08d5eefa18dc7647f6f0bd1b2745df9bda18dfe821ee653f99344b
MD5 fdc9d46b0ef09cb12299e805219f0231
BLAKE2b-256 da1f7e2935e5996a337d2e1129be1f3cb533d2b84c4479e5bc2cb99ee4796bef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 544.0 kB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 606f2d92187676e562514cf5511da1a89347bf7d8025a1cad1664a99f7482f1b
MD5 fffa326f138c005a425fd7273d924077
BLAKE2b-256 f9039c66c0794ab819c68939814f4735a70a72f93c139148461885759cdc1205

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 720.5 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5875303d7a9ce8106073b9ba89661dc444a29bb88bd479edbb02eedf51a0f219
MD5 fa6ee6c0eccbf32b613b17c2439eb6db
BLAKE2b-256 76159249d3ab571c3c0cf939e2309d2c8f5ab537fc19af820d7c50276657ac2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 746.7 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d9545d7a0127ec3603f9915858a5854ece09127cf18365ea3ef1d0ad8239162b
MD5 238f1b85262b25b48e396c082cd8f5bb
BLAKE2b-256 d0dc985ff5e1a9cc75d284aa3d3815659e67dcef4009831f980329dc0a837dcb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 784.0 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0b132263a03b4e5f05ddf55c6c5d59b86116364f7b46afb5f33cb76d4a4a3486
MD5 175a9ca9d94be12da0d31e4f51fad615
BLAKE2b-256 c042757429420f99772c66b3c239a2f1041eb7ba0501302f194146d74c500d7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 692.8 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54aade37d43c0ec894bfa6a713f90e709b219dfd10ba2d763558fddbbe941cac
MD5 0e7fe55a0d90e86a2abc35457aa09fa4
BLAKE2b-256 7a56d313db0a7dcfd729003dda0dcec8675ea2e42e27fe878e3d63e789ca9dbd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 540.9 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c54862593f50cebd4a60342d18d3a9ed54e31e78e6fd4824acc198f914e6da0c
MD5 78e34d083efa93d3c95bcc6170993935
BLAKE2b-256 32e0e07b3607c273b1541d359af18f5eef09c974b36e12658735d37b57a5ae3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 631.9 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b6394d9fa512592a21129e60611d041306618f737d938aa24a34f7c50fd44ce
MD5 d2b0002601a3f4093e70227de94332c7
BLAKE2b-256 259919f35c3e6efa6a5a39f2aee71fb7adde9bff5594875b49d5598728182acd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 507.7 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69fbb2d868d031431e4372e15770816ff1f0e7db739b59a7a48954a7d0be841f
MD5 cbab4d1f54967f35ce9c8e8c74d1cb76
BLAKE2b-256 132762c51a4eb2f888c40a54c34c35f1c67aabc2eada25bb5b3a6d99f823a698

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 516.6 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 feafd0235d105fcb6817e38ad77109d223407799353634a5ef3d33b978aabc62
MD5 065eb5c472ea1cedd302bf0596c67e13
BLAKE2b-256 14f3b15e2a6fb771b99872ddd9b94c482a2ac66cbd8c0fd5d98014c7bc0c65a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 293.6 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 41ce00c2671d24ddd48529137661b19e7d6c1135202456efa59c21e99f35f10f
MD5 7ec61241fee476f91c7d9a553cac5054
BLAKE2b-256 4991fe6f229870dbd994608de9abafd6c4269f275d96d120bc3ba5f31bb3b12c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 313.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4c48ef4d1c3020a58bc98178c621d25ec7ffb62c6bf17d6ea03b61e258102a76
MD5 80b086372e94102c7719c666fd8e0e5e
BLAKE2b-256 ed4cf357926d237370fba12f07e1dadf4aa459658c9490a69e4d3a9ac90c9980

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 721.3 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 817875f336abf7627bb9afb0d1ded05e0096088976776d3204dedb77aa7f43ce
MD5 e1eb1ece58f34c7ac74ce9e47ca66519
BLAKE2b-256 952b7128201dc394b3339ca1ba9d418212c7e1e0e91838f275609b87baac2cd5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 747.2 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 51a57dadbe920c58bc53cb68f0a2dcaee5631793826eed110b126343ce52c186
MD5 9cf35d45a5e936251bc9ea98786e1cfa
BLAKE2b-256 4a295c7b1beff3caac316ef848661a450cc5ee7c83d76ea47012958fba66f622

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 785.2 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4e2957e56f0ec3fa574b9e88a8835bcc2048974a10960ef9fa6375ce87c4de92
MD5 107add0b91c3baa17bd29530218f7ad9
BLAKE2b-256 57f1c8c8d7c41f10928260f4abe2fe2c42ed58329fb7e4adfc605ecb4fff1980

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-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.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56a119d48ac8cdff58443e5ed845184adb906aa937d78308c1ba7358c0b5e5c1
MD5 b4e08becc2a0e63ee2bd131ab1b317bf
BLAKE2b-256 2bb384bffece72a5a77b1db6f5e07f51e59a4c4e25a4a7fc343a897576098c3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 502.2 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74a9c1b6636b3a087d81983aa97925c72df039810501504ae887ff32988d49e7
MD5 977601edbfb834641e12aaae8af1146f
BLAKE2b-256 f9c0b2236c445913dfca03e40a7efdc4c7c7d8a3192c3728e9eb9ca65e4b3d70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 542.8 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fcbcd97bc94664682eb67474d09d8dffaea8f9455102fb6de99572dd9e680eff
MD5 7e869d937ab4f155399e76cff79c5d15
BLAKE2b-256 9ac150ea0441226780bf0953d53841af1dce32eee7d5887c8b4f038c20c1bd21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 628.4 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f6424209fd1b461351f0578fc88cf1294ad2328b219b82213a3f55d05de1db9f
MD5 500a6bfbaff6cf832b60f812641109fc
BLAKE2b-256 a842ca4a14149870a2f1fb486a9175ef70dcfc3a1873e335e880c7244cb140e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 509.2 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a8e1a2fcd56f9f0642d14b43d44cd0d0bd797945ee79ca932e2edcd5a191bc92
MD5 bfb1d1bc0759d42b717faa01e60811eb
BLAKE2b-256 bff8bc502194b9b4f7f4f0a37c52b7f6b182c8bd719814d46ddd342f45b3c088

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 518.2 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63e0e8af166023b80d62be2e8cc8a87c3883bc80410b72bc76a7de52bf5a70ba
MD5 d24cd360821b2db3751dab9bb8f9ae3a
BLAKE2b-256 4481bf70d053df8d8e8a45b77f83fd7e91aa91394c127d1c10ae571abb97deec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 537.4 kB
  • Tags: CPython 3.14, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 80f724f3201f2309daec5610cef33bfc7144a90630097e61fc0388c118766856
MD5 740f9071cad9f703a5ce4e49e4958730
BLAKE2b-256 d064892563dbce0626c673f31e810316e8a1e7da8d3c735e70bf00f3daedd0f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 468.8 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 997868119d23741487a3e9711717601336de9f831b04b50ff490dcce86b34611
MD5 3baf7ed6a47c0dce5a518ba74bc12afc
BLAKE2b-256 281c9edc2f83bfe6d8d53c6ee8e9ce80d1ad5c403e9a5f32269405140f01598c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 468.1 kB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 89481665d44fb232510dc9deb96d2789c8512723b6e7b4151a3e72f3e43d0f74
MD5 b850a32a2bdff315700ce7d736bdd5bd
BLAKE2b-256 f50a357c3d5ced130c048af6add54631141ab10deeb36dbb58b7c7782cbabed7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 730.2 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e57cb792e26495d79c9c02a8e13ef89c251385d3dda6c5f849a0f2339f02edfe
MD5 dab1a50fcbf32c0ecc7bc674bcd6194f
BLAKE2b-256 330cdb5de4001d590e75152a750f5be6f5675b5bd8d2a1deeaa31df67e26e082

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 749.3 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12085f218aebedd36b204ec2203a33f7533762758b33aaedc666156d269fac88
MD5 9a0ebb874533ced5d1e56a3ef94c23a7
BLAKE2b-256 0fac121568d986dac6668ab5cb0e30fa482a6dcefeea97190703d0a38350874d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-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.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 86d54461c1d29668dfdfeb947c5210cb44e970300c03eee744426614f279e25b
MD5 ddf39d534407943a9ab4fc64439d956d
BLAKE2b-256 e3b7e5f022a67dd8d5096920518b642c5091e5f377adb6f8aed6e3bdaf1d6259

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-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.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb270930d34800f413cd41236a123de2fb77b7afd937f95c9b1333a8d4c7040b
MD5 d77b0ced642af9e951a22f4ae9df6070
BLAKE2b-256 defe43b973545a05f9a12e0e352c86e21bd3644fbf64430ca01ee05963527835

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 550.2 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9420fc4eeae4fd4b75d8f8a31b972ebccbbbdc90655b969a57d143624b6119a
MD5 04b7fa1f4e01cda2bc1d175c19042c8e
BLAKE2b-256 799e9ddd549310ed4ffb57a7f4b05dac4585494b7ea7deddd2de28fdf14fa513

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-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.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 506a4ea96708028de6d2c7a192e5b9c387ab4cd91741f47ddb7fe24f686fdde5
MD5 58bbfa1be18a4aee0cee58f574297a89
BLAKE2b-256 937dcbc675190645986557c6709a8d3ae2e981d4009ebbb25c228d7e428b8edc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 517.0 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 30cfd6cc170fe1f578f9e4c4fddc44a330f0dd588c552acb3c6fd9c33331edfc
MD5 f46deca1fda716677a1b48aaa214efb8
BLAKE2b-256 91db51c8391e97073ab9fe6179ba034bc3c039445113c8fb03078f0decee2ec2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 519.8 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c06c26b232a8e6af31a8df02eaeaca31dfbc363d64f50d7b9c23a4628d8653fa
MD5 22e5cf4a961db7bf526ca1711c06873e
BLAKE2b-256 ed1a6005ac9dbef602223daa0bb758ec116577f5de966ff611201eb7825c0bb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-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.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 dba6fff6fbe0b969aabe4b9d4dcb45a1652443f57cb42d383cb980aef37a98d1
MD5 75815eff5201dc5b43af262e43399aa3
BLAKE2b-256 b7db01301bad76bf9b915dc0d6a488ad0a7ec6ea448c142d24ebcde760418f8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 323.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0b98a47ad63b6acdd1d7e3e4d1b79dbada827531d8d67ef969acf76302da4130
MD5 8f810421191fb52ff3214c65ce3927b9
BLAKE2b-256 39118310aa6b8ac1f29bc5b658280ec3d51f4fe42c447cf6df132e63cffb3537

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 289.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ea93efddafc2513eb12425ae9f158389111fced252fd56bc045bd4076187a672
MD5 34cdbd930be2454d128579c3bfeb81cb
BLAKE2b-256 e6b0819ac0e093f3da319e0303f7c58021541dcfddc4b62a930fec87147cbff9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 730.9 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c933f0f7172a80ef898762c6af7d084b1dfd7c9d9513e5c777c01ca0cb1066d
MD5 84338debd00ae83e167dcf70d98d95fe
BLAKE2b-256 d959868b4dd75bb623f0c2e1baf1e5b0dc5c5b365e67d767561f976047c87dc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 748.9 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e2ff05b5b1fa0d2fa902dea5c4c634381929be0e251969272d6fbb96efd2d34
MD5 281422e0112aa8b59d7b5594fa46f377
BLAKE2b-256 8df4b00381b19cb9cad2a45beb2978f56b327f8a69be0e73d4f4bcb4359487f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-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.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1daae4b7d5dd3233c43d756092dd621e625f3d5d5e454aca8bccf9e66e131a37
MD5 9744d123974681b70736a52a82023fea
BLAKE2b-256 3a891e4d21f05b163a535bbad384ffd42ef6b703e7d22cd684b45815108c5dac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 697.6 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8dd97571e6b566db821bee303291172956c5f549f60ed9265b2c05db229045ea
MD5 d3c656b3fd05499b72fc4bb4fdb552d8
BLAKE2b-256 d330645afd24b790131d873f27ea1ae1b0949452a26e3d2a11d91a0e0bb33f57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 511.1 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08bcbbd76cf206d07d96cdb8e013342c6c79d7eaa388f594ba41e79e685ecfa9
MD5 19e3a9b8d7b1f6597710dbbe9fcaa0e4
BLAKE2b-256 e956b64ca3426cea25906556476b873570e9a8ad2d7ce47d9dd96a51d1f2712c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 550.3 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b986d9979b039bf1c46fe2ccfd9e7062ab60e5addf616d321f23bd743cb5d9bc
MD5 c40a74b7c71165bc870d7688391e90f5
BLAKE2b-256 a40ccd1d9d30eb88079979d8b74a7291549812bd3ebb40663354e7c282670835

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 634.2 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a65b5ef49dd10543e669551c365998487fb7cd562c5d4e083db75235d8c76ff0
MD5 95accd348992bd1b4efb24028261200d
BLAKE2b-256 7aeac1d8715d62aae0abb639610700d9413bbb952ff532b1a73feb27e88f9c3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 517.6 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c0776018ec0c089bf34df82892e74cad258c14d4025e95038b0887fa7437fb39
MD5 008288ec0cc3b799954d4e9f73cb1c11
BLAKE2b-256 5afc93fd80185bc401b160539062b6e8b721f481a35d5d07230d37bb859b66bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 521.4 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b94a839e8f52ce280e796c419f48716093eb551f59e37bd616b0af24a1c7960f
MD5 8c94e7953dfca023155e0503e863269b
BLAKE2b-256 127435bb4e757e6d207aba1d82d973a951ed679c791161f07690229110d5414c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 540.1 kB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 90d0c92520e9343543d08bd7c2c6937b9f0f1eb8fe4fc64e9b856ab092bf6c24
MD5 67c72fd9637223dafda2213807a41b68
BLAKE2b-256 72ad1a79c86a491944d2729a872ad08f6aea543acc77fc90a96a454389c6ebf9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-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.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2452e5d1f1816837059b07825b84822cf6f26c3a0dc5a16f17a692b7c2e2e954
MD5 f28e1019499608d622628ebe998c9622
BLAKE2b-256 d00e5dff30f3fd33dd4509d34c757418e185d8397c30832164a3c6e558b6b7cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 477.3 kB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ad77287b5c2a4ba3bcfffadbbc045981fd6a71675d8fefc230c046c74fe56f86
MD5 47b008b8646fa5f4ccd71f6a3d632b08
BLAKE2b-256 53905f69bcd3544710f5986eb4fa45ef5421e352c3522cb4c1ffe22cddb243c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 301.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 44807f03858fc9b6c15a87e8518971c4a6f4980a0190ea2c701e8eacaba3a17a
MD5 87cedc91e9ae7fe8d05a232adc4a231b
BLAKE2b-256 0e0e9e2201ee7a76ae48637f460c769a4562eb6b2411a727c90995f26be38813

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 323.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3e12275c4dad266101a371632e61e1d1229f5ec4b0d5eaa300b4c6535b45cd4e
MD5 3e4e0c547eb39b1f71471bfc2f27a4d9
BLAKE2b-256 874692bb685edb64facc8dd5ef3fb8759f669484fc363117acdd1e96b33b1a7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-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.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 122c3a7dcc34820e143139a2948a350a73b6f19aac951fe7ef99f25caa98a058
MD5 9e2013e76cc281723d3a17fe2ed57832
BLAKE2b-256 b6e40ccf5546ec0e1e5147dac5c144efd5005af1cbc292896b1ff2ec4a688b84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 749.4 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec7b41fef69ef9c63364003330f3349ad5949390cfda723f3c73a981c516a379
MD5 d1a3b0dda99b74a3c0f063b0a4f45096
BLAKE2b-256 fc98489e6f4b1db27ef8d5e707757ac4127d683afc9a8e7d47fac9ad0b949a8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-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.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2081965436e78fb8782e165cdf99c6d5398f683210881236761807dd2370cbba
MD5 facc3a8ec9449b7dd87c9ec00dcf96fb
BLAKE2b-256 977b8e247c93769a46737fafc81cb8f75720ed30855f4aecfc6390190f3c4dfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 697.4 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60e7dad44cea460494eadb7fa802467fb0ed6fd190c4ac21f52d89c4824943b8
MD5 ce17038850c4d4ec331aaaeeeb3207ec
BLAKE2b-256 0ebb60f809dc581eb17bcca207ffd5e9ceb146626c7b54fb4ff870b6e4f77c47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-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.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d5db859e27da37c9a428e7889cc6917feeb9fe136334652608448ac8c8410fc
MD5 d0b2dee3146432be425867adc2d0dde6
BLAKE2b-256 ae7ef96a246779574f8e948f884a00ea4fcb669d181b16f3949ad76dda6b56ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 549.9 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a718ef0302a555f614b2198a21a773f5ef4bc7c8e55eaf4f0f9d1fb3de8121f3
MD5 0e85d9b21510d93e4c570c1265594992
BLAKE2b-256 8f6f21bc05196c87370f02fb4f8063e4131abaa60a2a79dbac4bcfc63fc43413

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 632.2 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bdac0a71e6d3013a4ce06db64351ca8134a6609fa6f80190408401aa0924c38f
MD5 4ad313742bd20467d7a5dbfb0b10fc23
BLAKE2b-256 39a021e8bb69c8407345b1f11a41e5322d8e4a61ee545cd87629b76a06709c86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 517.7 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1f5fa750bd02abfe527d7390854784ded802fa94f301db6640b4ad8025c84f6e
MD5 7fdea2ffb90790b895a66d6f085fe738
BLAKE2b-256 96798e22c6631f6cb8a53ac10884270a45f2de105239ecf40d4dc223d58e5a19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 521.1 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94cdab9636dae8a124b33303655e92af5ae786c08ddf2f4e8e0b743376005a3c
MD5 fe0af1541567d42e2bc44af5868e0200
BLAKE2b-256 19889a6da6e1402f2729c6edce114e7c400601957cbd47e4e6350a4017e378de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 540.7 kB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c806e4b3d19765ae23c844c137c5e5f2d23b835c2e035891a65081bb68ddf451
MD5 444cc31e20674de5b2072e044b0e8c57
BLAKE2b-256 5ce73baee020a7a0f235bb59ec2b56a5f787ed8d88d383735feb521676b9f01d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 471.9 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40941d88c1f1fcaea1eb0b8ad1e9adf6bcb31d8aa8791e709b0aefb7f129c840
MD5 e6769d1bfce7092e771c58f0293df516
BLAKE2b-256 70473536d469e1efe5f5e6b4a6d7259ccec9508326365ef2b8ca946e934c16b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 477.8 kB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d373b191cfc031388b1240bc2953d309bc4cdbae6157881640b6d0dbc489076c
MD5 82f2ebc93dff55efc9721321f22cf315
BLAKE2b-256 fa67c9a6edf843a863b98aa833219c1a2c4f3bb0bb4145be32e5860afda71ab3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-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.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4e78147eab9eeafb703d967fe54fc12402788e2b05f85526fce00d6d103872da
MD5 95af0b442dc3d2edada10346f474fbc7
BLAKE2b-256 aa45ff7a5d7cecca23220389b0f8837777de277ca3fae4ecdf1ffcfb9907cb34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 732.2 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7c1e277f41d41b67815913b0ee2fc16a751043a06fc208e02b4f0ad878ed23e
MD5 4117962dd1e6c58f8549c1f6a7f0eeda
BLAKE2b-256 55a1a38a3f0bb9a108a535ea0082a5fcb37e2940b6242e3b508e422f306a68a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 751.7 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1e4fe81990e944239fe8d8910c967f3fe14ba763bf6862128050b44108ae4b41
MD5 3a0848cb712835e8115bcf710b444165
BLAKE2b-256 6cc016867c27963cfd1520b2e5b0b13ed5da8b67d1ab2d803f30591749f81b45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 796.8 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b1bd5f4e605ec56a6659c04bd9d9c4feb0efff522b6aaa27359fcfbe64bba00c
MD5 32aa961a536811efafee9cf904c062b5
BLAKE2b-256 96612d79fcc43dfe010a676a7e955bf4ff8018a48f5c6bd003a0fa039513dee8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 700.8 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c2263a59f68c9dcb8dd07a0a00b7ab13e970508042174152bc4006fc85b989c
MD5 ec45c8dc95a86374c015ec3cefda8d5a
BLAKE2b-256 a83ac413f740ea871cb18fdb0551cb9cd8df825caaae0fe92ce7f96dab8719ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 513.5 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 940b3708179f09a585b0180354cd0e952697ae2b9254a08fc9b9357d68913f74
MD5 f2343e5df7ad7e87b8f26815535d8eb5
BLAKE2b-256 9cbb92581ce1c3501ee48b874a1ce07b9620ff98c952ed437413ca2efc60b230

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 551.5 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3e73d444acaec5362b38d834b7ac0311998fffebd7ed52fb12ca0de496377690
MD5 4fd440ec66add38da20167d915c00b5b
BLAKE2b-256 3558842aa6c45b5eb31b2dbb65d1caf33bf7179a1cb7afb4eba2640b0503faec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 638.9 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 369fb2088a78522073b72b83ff8f554f227e8179a7fbf03e4371035ecfeb26c4
MD5 2afe7b84bf08e3f6c15c29c780b22932
BLAKE2b-256 0b95e2fdee602d1c1e964479315ff6cc8b66e7d9c8e217741cf57dafeddaf7cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 522.2 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 31782f0432b561a17be4d530285e16e35f155488b6a3148f8f9a50128e5df4a6
MD5 c19c4939b895bc32025582d16aacc7f5
BLAKE2b-256 ea488c41c47f3a7f340d4befa9c5a79beaf782c26e6831f9d41edf2f53cc5b6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 524.8 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f53064069779d402961a8111ea6d3eabe737a9b076f66ec801978a1ade5a3f5
MD5 805b82d3976b152ae740b42c3a22f68e
BLAKE2b-256 6257bf872aac498bf772f9e09f8e7410c4c51f5620eef2a6fd68cf8589d56cc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 543.4 kB
  • Tags: CPython 3.11, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3643868073e374f6898d5566ad637f2b217ab27323c23963b30416c163e5fd13
MD5 38c2b1094b946a7692b85a00a125c2d2
BLAKE2b-256 5c11905f7e2f503736ccea449e28684375449bddb93a3f82806130a620d3684f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 473.5 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7544c7f166a306746e9b3c35d83b2c48d9f9a71b3e0757f7ed3a5ce2279546b
MD5 533c3a29de8754177e214880593347eb
BLAKE2b-256 13cf8062a3300ae385e411e972c95e855c7293a12ea350d7e885ba416fbe7f43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 479.2 kB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7add38d442c4d105d1e7d92b01938d5aeeb60dc4b0a1c0e9fdfc847d8cf24f26
MD5 1560406bf58c9d76616ea7242ab37ba7
BLAKE2b-256 aa5e5223bee9903d0c71903c4fb49215c4a7fae8f18d8130790931e62ae7e3b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 325.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d81cd5fc687b123c0cc4dbe1e8451c2caf1d8c6cb0b64ff90b0c4636bdadac35
MD5 52c01ecfa1609314445a8e6e469caea8
BLAKE2b-256 5d7c5da516632d34bdaac065988123be3a4b9cbe3e483e8bd4d9cb698d1138ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 732.6 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d454a182f48d9f32a45aca827725b0fedc99adc897fe6200b565f4676d36e7df
MD5 9b2ac8c8b77a58b3ab1040ccecf25001
BLAKE2b-256 20a6aad74c505b8bb4a5b5b0e4536eb34352fa30a5601345bae3e743988bc549

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 752.4 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 065faa549170d84d847083b492339116922c35a200fc973f78374f07001276a9
MD5 cc56e5b0c68b04825304dcda8ddc98b1
BLAKE2b-256 ea59194f26900a9770d850f6bd56d7f840a2c29b053cf74656a0ab48eee6c54f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 795.2 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d894ffc58d8a655fa6970b16b8dc84afc2f9ae129eb87d1b95b5405e7eecf15a
MD5 b38285a3ab3ae739beb5d5afab15db36
BLAKE2b-256 8074d6df8c44ebac6d6aa634ccd9fbe792b325d8677947ed9a2047981112462b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 700.4 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab88634a38c5654c2341ebe8f166f1b35b1c67351cb8b8b5dd5fb1d024b784b6
MD5 d902ff69e902b9662beaf433112ce5d8
BLAKE2b-256 a3e6a6d4eb8c9c9869ac295599349dbae94a1beabeabf56b6c38ff865d032b8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 513.9 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01280f8a96832c5947ddee8c911130555822ec6c816a4efe5854ef80f1637586
MD5 f4bff36b60956cd9f499c9198909e778
BLAKE2b-256 0314a3be6d8e09f917d25af45237687fb982e5d22486c403b6aafc73167ac91b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 552.3 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 28cae7af88516094c170241909f8140d8697783e78a2ed1ac0f48bece6561d49
MD5 f12a402f40684ade8ee860d3665d731d
BLAKE2b-256 a6095b51ce0a422feeae67854cf53dcb266fa1f27684b750aa6560b73da33396

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 638.2 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c8c057a63921da131173f17ce09fba7e2fb82d81971cff522ea2b7a491c90a6
MD5 2865ca0ac39a5a66acd7451512624b94
BLAKE2b-256 a49eb1139663d9697d83389e3d03e1747320ed45506deada9d36cf8fc858ecc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 520.8 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3f4112a133805d15c7ded2a7c61e532f6be7669c508f27e699bc932357ef5f66
MD5 f192ec4d5e76e89dc30c4e4ea02c3aa1
BLAKE2b-256 d2f69a188d985c62503641239028566ff7485b258548568f73dac37ef0917e9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 524.6 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77c107475f6db560fd728ecef9162a6933d7223040fe507610f3d01aa221ef2f
MD5 341a3b8d2b010c3be7ab181ffc4b4ca3
BLAKE2b-256 eae328e9fd2d5268d7b0494b5dae04c89491646cb7d3de033cd56a9e6203d6b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 544.2 kB
  • Tags: CPython 3.10, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4344f118e89f7f28f8017e4dc5d344dd86f82ee8ddff80109fe93c52e427c99f
MD5 0c61d766cf7104f842f5308da4d26496
BLAKE2b-256 1151485b985837ecf555d307c7ec8d7404b2285041c8ac026d652094ed867c61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 736.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c460ac6f46301a374d0f9b3bbb2fb71de2d6dfb29f33873908ab436a9b16d2f3
MD5 49b288e99940bc90ea3973e03c927619
BLAKE2b-256 ec19504f4733b622e4ba417784513ed0c63d3378ba5c711bb1e0e67d393543a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 755.7 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7781bc4b09b1821a2472c2168510af78d41a55952eaab537c49d86807cc34835
MD5 0d72a431c09c1f7fdbca6fb600ca72af
BLAKE2b-256 45cb545c46ef2a701eb3c763c94c90a8c011c5f75972ce23d0ac0231d9ef90b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-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.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa45b7511a8c956552cf55fef1430d7a7a759457f3ec46238f5c3e828c22c137
MD5 19220fd1047a1744cb9859e58129b7f3
BLAKE2b-256 8846e86393e3f4556812307de399a129cb316f8ae31ae695039f2047fd4a75ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 703.0 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 faa1c348b27ae759c7802799391699f42513235e31403c38107e1cd11d91c1e1
MD5 0e3e0ec078d2f96d7912e8ba49ebef3d
BLAKE2b-256 be57c547e1357b3eb4286569dff468069319d2939ae0f0a04a2871398a934375

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 517.1 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c3a760631ad698691f074e71dba5f3ccd9f80c43eb64126b1902d20f5b51326
MD5 99b47087820abb56e6eb093de428259b
BLAKE2b-256 7fbc74873465233f138f66d26cf5f19403b4de251df5eebbabac5a4d11022081

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 555.3 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 85a19f76d79cf57cb4dc8bb2213637d437ce2a7fccbf9a1c2dbe8ef0cf0c3dd3
MD5 3b332e2a34311da308e91d806da91d8f
BLAKE2b-256 2aae4d3d1572557b48f0946d226444f3e1879349c0ac5d8edd8e81ae2ce91c48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 640.1 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4748a241057f5d58be9005a33a8d5f8cf61694eb4d6b4a409f10f82404326090
MD5 3b1905dc8d2a428c2c2312ce0fcfb036
BLAKE2b-256 db4ff12734c51becc456f3e1e270323b06356a2de00657edf27f7d0975fb1675

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-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.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0535feb219d1fccf49cf83b969cfb24b019d9369a1330309ea6eb89983da8325
MD5 363e80d4fcd565aa416bbc0eebcef7cb
BLAKE2b-256 6f2e6c24655c2ae2ed838c8e55ca007707fbd32ca13b9c6049728dfa0b5b4a75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 527.7 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be434ddbe7514012edb40313cb14d4889a60c359c52b9b9c02d124b750ded66d
MD5 dd1548df8fa5dc3b0a2832b51b3eaf5c
BLAKE2b-256 469f273407f1845a54fc97bf11bda11f70349d046f2b1770f3b04b6b96588dee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 548.5 kB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 21f48bef03947519ea4d34769846a9ded7f304d4d411291aba5f8218eee4c4c8
MD5 98ba158d5771d51838148655ee888b62
BLAKE2b-256 b0e5c3e2837eaa12db594e6ed0af1c450a3c49b35264fccc8450067fd46c911d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 736.4 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c44f31926302a9e1f389fa791d45901bedb04062c9e6edf81941a06d4be850b6
MD5 93388722cf4fa390f93d662b8a02cbb5
BLAKE2b-256 b97a84f9c885cd73e1bf6c23dc9f8474882eb6f19e391738f2925cea1d7d926a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 755.6 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 67ac845673e7bcf9760c1cb4dc74db421a8132d31cf979383e248aec1e64c439
MD5 a03626cab95dd0c503620a6d14677b67
BLAKE2b-256 9071e3f7371700e157dfbb228636e7802ae41c1b88780959993bf207c7d49359

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 798.9 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2cfaea7c4f5067f9f42340a4e3393b72993c053e1031f81c185c6d58a258af76
MD5 716f4ece4fc8778cd3f40975fec200a7
BLAKE2b-256 f46a18437057ccdcbb1c2818bd820432029937d95d5cfbfb5dde28273da58940

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 703.0 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8f9d75093cf40bf980cb7a784ec13c666c7b3d6ba7a90aa18dc89b5ec2a31bd
MD5 683e7c75242c0b902da09a4db16d69c7
BLAKE2b-256 414c3cda0bf27f57bc4c6adee301c67997c3a56b5e99097a8bbca09df6461dd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-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.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c267cfc6a9d99c8d80cb4cd7c94c53698a3f1fcc96b184f726c7c86848e9d2b7
MD5 7441571b2c415f8858c09b54c555691f
BLAKE2b-256 89b60d5379d8844bd7b54e85b7ceedbd0d49c744b1dc5d07b7ffe4f64b982e91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 554.6 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3e5eb9efb8ddb895db5ae570c1984c33bd3831f4ced36eda3ea16010d4fbc692
MD5 8913e13d7b0365ec19499f55ca0b0172
BLAKE2b-256 6ca656262c0779fd5d638e3d7abd39e649f6e6a4b165676158473d3add722c69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-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.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35ea3e096047629971e8fd9cbd5fb5b8ffead2cf57a908f91f4a70762405c661
MD5 c1efe6f29d142ca639e5f221a29ab013
BLAKE2b-256 17f825420538b35a5872fee1881c042c4a59daab8a95137a440f479dc85a1f14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 523.5 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f171647754a3022f5c9001c3e179dd982f0c9fa19e8d75774aa4c604a557c18f
MD5 71d72b694d49031d76fb0addcaa93415
BLAKE2b-256 bfb292aba76863b659e041fb62d6020044c0a92f2e22cec4cf45b358887bdbbd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 527.9 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb9c617b301803ab8871309d393f0b70853d520e5d6af03548060fa2bc6b6561
MD5 953a92407b95b3588f1115909d6a837f
BLAKE2b-256 214bfa0bb7a17e9d8d1fd7db31fffc9f63acd431b9dcd9bbee6ac00e6d6143df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 548.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 facbfee02ace1163d59ceb907b544b9e46ae4035df22276af546b7b0f1b212af
MD5 075d217ca859a5a234045d0bc4b154f0
BLAKE2b-256 9b6b0f400a152af82a706caa02e648c96f89791c273d7f8df4e6b10a92c70138

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