Skip to main content

Python bindings for the AVT virtual terminal emulator

Project description

PyAVT - Python bindings for the AVT virtual terminal emulator

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.0.tar.gz (17.3 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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (730.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyavt-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (752.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyavt-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (792.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyavt-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (698.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyavt-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (511.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyavt-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (550.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyavt-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (634.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyavt-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (518.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyavt-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (543.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pyavt-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (720.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyavt-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl (746.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyavt-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl (783.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyavt-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (692.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyavt-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (540.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pyavt-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (631.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pyavt-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (507.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pyavt-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pyavt-0.1.0-cp314-cp314-win_arm64.whl (293.3 kB view details)

Uploaded CPython 3.14Windows ARM64

pyavt-0.1.0-cp314-cp314-win_amd64.whl (312.5 kB view details)

Uploaded CPython 3.14Windows x86-64

pyavt-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (720.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyavt-0.1.0-cp314-cp314-musllinux_1_2_i686.whl (747.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pyavt-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl (784.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pyavt-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (694.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyavt-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (501.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pyavt-0.1.0-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.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (628.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pyavt-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (509.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.0-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.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (537.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pyavt-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (468.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyavt-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (467.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pyavt-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (730.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyavt-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (790.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyavt-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (695.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyavt-0.1.0-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.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (633.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pyavt-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (516.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pyavt-0.1.0-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.0-cp313-cp313-win_arm64.whl (300.5 kB view details)

Uploaded CPython 3.13Windows ARM64

pyavt-0.1.0-cp313-cp313-win_amd64.whl (322.8 kB view details)

Uploaded CPython 3.13Windows x86-64

pyavt-0.1.0-cp313-cp313-win32.whl (289.5 kB view details)

Uploaded CPython 3.13Windows x86

pyavt-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (730.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyavt-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (748.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyavt-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (791.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyavt-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (697.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyavt-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (510.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyavt-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (549.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pyavt-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (634.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pyavt-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (517.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (521.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyavt-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (539.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pyavt-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (470.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyavt-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (477.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyavt-0.1.0-cp312-cp312-win_arm64.whl (301.0 kB view details)

Uploaded CPython 3.12Windows ARM64

pyavt-0.1.0-cp312-cp312-win_amd64.whl (322.9 kB view details)

Uploaded CPython 3.12Windows x86-64

pyavt-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (730.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyavt-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (748.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyavt-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (792.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyavt-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (697.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyavt-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (512.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyavt-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (549.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyavt-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (631.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyavt-0.1.0-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.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (521.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyavt-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (540.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pyavt-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (471.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyavt-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (477.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyavt-0.1.0-cp311-cp311-win_amd64.whl (325.0 kB view details)

Uploaded CPython 3.11Windows x86-64

pyavt-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (731.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyavt-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (751.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyavt-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (796.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyavt-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (700.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyavt-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (513.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyavt-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (551.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyavt-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (638.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyavt-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (521.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.0-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.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (543.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pyavt-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (472.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyavt-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (479.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pyavt-0.1.0-cp310-cp310-win_amd64.whl (325.0 kB view details)

Uploaded CPython 3.10Windows x86-64

pyavt-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (732.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyavt-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (752.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyavt-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (794.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyavt-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (513.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyavt-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (552.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pyavt-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (637.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pyavt-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (520.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (524.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyavt-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (544.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pyavt-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (735.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyavt-0.1.0-cp39-cp39-musllinux_1_2_i686.whl (755.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pyavt-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (799.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyavt-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyavt-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (555.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pyavt-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (639.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pyavt-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (523.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (527.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyavt-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (548.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pyavt-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (735.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyavt-0.1.0-cp38-cp38-musllinux_1_2_i686.whl (755.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pyavt-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl (798.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pyavt-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (702.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyavt-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyavt-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (554.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pyavt-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (639.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pyavt-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (523.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pyavt-0.1.0-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.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (548.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: pyavt-0.1.0.tar.gz
  • Upload date:
  • Size: 17.3 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.0.tar.gz
Algorithm Hash digest
SHA256 aaf2ea2f00a41e75b2abb8dcb547e06c52993908374cf265cbf605c3aff1a464
MD5 ca7ce0fc925a36c7df9e072a5a0275b4
BLAKE2b-256 4aa15332107b07ab2c118adef9d70fd789079627c5f0605a0834616897e521c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 730.2 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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e441ba7d696799aded1bc4263a6c877f3b05f74e87990376f6f14b65d222c750
MD5 8d02d0b4d921080b1c56293de1825f5e
BLAKE2b-256 01d29806487ecde28f0d4a6cee5209b24ae69d09f506de86254c6cf81b2e7cde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 752.6 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.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 87e62860c9e4eac7066eaff64097c157e145b025aca01e8f7e692353f8d07fd6
MD5 e10b0251d3f52d27d497ef2214bc3270
BLAKE2b-256 af199804ae64779606402f491252a1b85542673eb045138d5ee4908da854c9e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 792.2 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.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 65ce28d2800818e7e200bfe2b152b543d21ee03051fc2f061075f45fd922030a
MD5 6a54054450ce3f71a2387e5527e9bdee
BLAKE2b-256 b2393352ca6f75d39273df53273bf8cde476b46bacec108684167f575a82b6eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 698.4 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.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c305d3d0c4654044e60a272577d32ab024178ec7a5f095c3c606999034ad09a3
MD5 4b83c33e03c630a650db0b39a2839459
BLAKE2b-256 77e1f23905948ff49abc15cd4f56010f960f5f9a982cf1c1834b6ed0e4f99d8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 511.4 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.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75b36186c6040bab2f1fc181316abe044cdfb2ca2c13e8f9350f147c5ebf88eb
MD5 c3cff3213941ca2d19135ea8914e215f
BLAKE2b-256 3060f6da2d8a43ba5db644530349732f1956f0bfbfd7bea5046c125423d1a6fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 550.1 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.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a60e8d103b6ffa3f43d4f17ed75798c36aceac56058659dc77d6651f329a46ee
MD5 e3ffc936328c81d9c0ddc8b8adf17e43
BLAKE2b-256 0b0f3163655359184550c1a7fd4468c99a53d3f106c2690f477a25913281f84b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 634.6 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.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b6e424ae50bcad6c1e83e08b62ce8dd3b6e8cd0448a65f7d7113fc94e2814c9f
MD5 2592bf769dc5e0d657440e23c459787c
BLAKE2b-256 eccf55df89b7343993694c75c302a44e1a3449bc9aa0202eed3151774155373a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 518.5 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.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d0fc5dc12a8ff24f1e79f320f9125efa35c1d8779867ba50baf265a050f9ba93
MD5 7b6cc5e33f6d5f55037afbdf8c487216
BLAKE2b-256 066123700df471985ddd3dbdf0b5b12c62e710235186e1275132819bfa06f5bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-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.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d96bbeaad1761c4316a785e8e76421680959f0126450f068b138eabffd01cb9
MD5 8ff0700d6ede8678c6136478b1f0e4aa
BLAKE2b-256 7bc603476dd1dd1141df5d83ab75360384ac2889146b81d1019c839c98d5439f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 543.9 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.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b0851671c17b142f6d622f6cfeacd655dc9e77f72ed75ba1a85682033b0148f9
MD5 97077280e1149623edc9f453516ff67f
BLAKE2b-256 a14f64c512a2e4fde03b0cde4b4c6b9ad9187d57ebaf08b00cf40190e136bdcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 720.2 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.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e3ce6ad31de0716464751693a8c1bcf78e75ef9f0ce980f15a280f4e94a7c11
MD5 dbd0a77d300bc52f0a4821e384e14899
BLAKE2b-256 cfea14703b3ef05fb9e4ab7194675dea05d24f6a4b07f9751706880c4599e1f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 746.3 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.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f720e7bdbc1b69f62b23b72482468213fff47b104240932960989eaaa8f44067
MD5 f7e6bacda1dbfe33213d5ed97b8cb1ea
BLAKE2b-256 a688ecfd24e91d2dda2e457fc8cd2126bb8b4b0ef91ad84f2b5c5f885d6cf603

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 783.6 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.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 609fb3a1ea6d6f2456fc10782b06c38aaa0986ec52a7d29e6f4b08b56350ed7d
MD5 054d34674994db46125c74a98dcf3f98
BLAKE2b-256 cdaabc8e1a5b35c358177d3c651df35cbfda976460f67ca5a0470c46ab939bb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 692.5 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.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 229c1417b424a3996c30786e36512965b5b365d2ea606b46ce2dcf9d47cca75d
MD5 abef70c74089a2b3466bc320d223c789
BLAKE2b-256 5d447d565ac517e77402e096123d32065e176f6c690b80f954116146f9fb494f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 540.7 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.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f7df665757ca1261b0e70b904d6746f738bc28ef439fc58c4b42a9733977143
MD5 b26a3ece36e7cf3aae13a638656b12b2
BLAKE2b-256 f8b57794ac9691c566232b1eab8d796c69758d0a09f45e071597d50b2715867c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 631.0 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.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5466cc2ba34192f709d658088087a26bd79107f7a9671a823564a1d574af3dc3
MD5 0a7b749dcbfe2f953229e9b0ecd79e95
BLAKE2b-256 5e360162c179049c5b1d4820f8acb18507a3a37892b0a2f5d20c7eadbd3d03ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 507.2 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.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 99eca3288fe64a7fe15e4fae4daec57d59a2be5761ff4122d570503797243a13
MD5 85e69651bda982aad3eefe4488217fea
BLAKE2b-256 167120e4d4a9e483350f03f452fda27598d8868ed5260e83327b30615eb526c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 516.2 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.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cea4131926785e33098e9e24f721316df1e5557535436a4f4899d206442595e4
MD5 5dc196752f808da7ffc68bd8c41ec560
BLAKE2b-256 36261d672af54dfa9acb8410f79fee53074bf01a8ff461e45c323b79bf1f154b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 293.3 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.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4a007e22a14d8443f52c2c1847fb34b1ab087da96f4d8d9b0e3725370cf314cf
MD5 48cbcdb1761c095a6a121f2556bf138c
BLAKE2b-256 2d939f546c7fbf395b2159ca25442c452ff8ee3559003c0cca93e020b8ea1709

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 312.5 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b91517cc3fafdae2efe6484dd6940bbd824746208c155227f0d10574634067c2
MD5 904d4c789a9b3fecc69ec7ce41205082
BLAKE2b-256 fd22585e138e4a2f6e52eca10443a446ea8d73439b32b0a065b15ed71a697a5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 720.6 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.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1111f1dfd775c4eb512206ae95325d3dce80a518d26cf203ef300cda99983077
MD5 8b350ae7b31af5ab70d61495ddbd2387
BLAKE2b-256 28e3377936d90f0d8638e4dd85849b633518907fa71f4226211614ff227b4cdd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 747.0 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.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e4e6de53333ae9ec18b04cf3f656b1af7d226ca93cd45ea4e3d98684b1ab943
MD5 2e87154d4587526892e4d0b182eeffde
BLAKE2b-256 06afc68499f386208f601ba6a16d61cfc14fd66dbb3a466ebefba04bc06a771a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 784.8 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.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 58ee04a1898e8d9e36e588785b51b82965cbf25e864295eb83cf41a97eefc7dd
MD5 2fd62269fb807de57d2f24be2cd71a77
BLAKE2b-256 dce35f6106d7b7d9e3331e3bea911d3ab1d16695be086195f2fa546763c28e17

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 694.3 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.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6dff75c93373dd0bb5a0dddf79e5f75f94f547db47c69840dbd6aee59b326381
MD5 a4f917341e8f105be33705d2607ce7a2
BLAKE2b-256 c4511b5e032742ff124d6eab9d05952e872493d8160e0a02f4b05a95d0a88c0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 501.8 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.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b49fbe2e4bab1f0a1d4aa61f3134c7cc7c6d91a1e0aa5491610ea3117b1edae
MD5 31a375d7df07ca19f341d78ca62fce2d
BLAKE2b-256 91eda90df05eb5c522b4a0c6e75eda4dc8fdb487cb3a8ca868fdc1d60be1bfe4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-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.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1040081b24db017e77ba7f5b76de4b996177c70815d046f9552618ab00760528
MD5 df7897ba9647ef6b5c0ad8bb4d606dc0
BLAKE2b-256 358b6b1c00f0c5229ed5d76bde0a73d747d4b0e04b045492ba8115360618606d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 628.1 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.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53915c716c0453cd370af2350a47fea819660ec484605ff572384042aee8f3b1
MD5 b222da0d58664773692fb9e271ff0878
BLAKE2b-256 34461a5fa20c381b48f815730506d9d501c58ff9851d68d90a6c4905a4e860ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 509.0 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.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bcd90f216b59b918e3541f09369da2a8ad1aa79379542f0e6bab6848dadd897b
MD5 7790fd5b085f890759309fb5cb2c8a62
BLAKE2b-256 26b3a38b914d24e3460eb5e2760a4bac7988b6b666fb62bc136bcc4884d212e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-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.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e3dbd1bd9542f2b828973c5334a66100ad74880f045840a6d98ce253478d80c
MD5 cd9d465d4c9a5160c2c1c0e5db0006fe
BLAKE2b-256 75cebd175b02cf4f357c56f7c01e8eb0a275f002e485e7bded2a6cba52c96d1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 537.1 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.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5f7c1102baf67bb0cb7696b534aff8fdbca3312d6ee5ce326003023a1b0bb710
MD5 d5900859f9f7c445dc763724e8da90ad
BLAKE2b-256 7a14a0a757d03e15ab6f3556571c2b4cbda050a6168c25409a873a3041bb9254

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 468.3 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.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31885b5202296729a6d84719f04ff69f4f66bf2772f219cbeab7696542e64e34
MD5 00306a9a8b234d3006be78f64bc12e16
BLAKE2b-256 9af387eab2a16057684114066497ef42d0571764a7a6e6b37f22570945c2217c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 467.9 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.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0351ec339edba51c29c067000b492f4a6b07e2f4afda8ec0b511ccfdb746e43c
MD5 aaf7e4abe7c58e7adcf95e658e387df0
BLAKE2b-256 44dd44484e217e548c11444adc461fc574b2edbe4dbb2f9afbd30c0574c0bc8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 730.0 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.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 565c0a2b231ec05345e69a613a07f192a0d6863b9ab2686e475a1a95c963796b
MD5 b0e045dfcf4a257f32ce5d3162c23e8f
BLAKE2b-256 8d1adc547c9f744b6feba1f3b51f3cf2df31ae02c11124b4272ddf994d3b0796

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 749.1 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.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec4d31e0f696be6630bde2dc1890207a38d6d5f8cdd846bd14de1507d2121f20
MD5 6a8858e4903d6f7c76c8bb828e55a1e5
BLAKE2b-256 f6e2b47b30714b32f89c00ab827ded7522315e5b4e2da8017bcfd047d955a11f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 790.5 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.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 24f3a6020f236c98b04bae1405bf3da8981635cd8bbd25f36c8a317133b4bb5f
MD5 c844e4091a8821e6bb6e92aef182f32d
BLAKE2b-256 a9de0c257866d68828bd43edc19fc4a78a4be506cd0812d280bc27637eaa849f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 695.1 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.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eeb535f0917c6e8728e62a10422ad6ed66eb015827681e0de5e20774f6c207bc
MD5 ac6414bb596984adc5d123beb653edae
BLAKE2b-256 48d13642f866d659b9ad8abe6518072302818c0537a19024c9cf5f7dc0fc3bc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-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.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63dd253b63697dee0cb2e9f07dd0c409b90b41fbc5759364dc43bd139a545fc1
MD5 8afd62df408f36bc76b5a949bcea0216
BLAKE2b-256 8d9a7dc7db31a78d10cbd2f1b0e3a80b9defc274bc3148546ae54fb138325521

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 633.2 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.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 395befbbd2272c8f42ec26fe9e026686357c0582c4b66df6909a811f44c56614
MD5 d85298ed294facb1643a179ed240ae5c
BLAKE2b-256 fc4898e4b83a85de6b2d89ae4ee4baf62c79e259596aacf729aaf8b9dac7f9ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 516.7 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.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e7065329dd5a0b8846e61a103b6cb48929512ee46a464d3ab969447035f455fb
MD5 761d2a62b6fb29107c8bf1140dbef472
BLAKE2b-256 8aa305feb9d432ef19b305a1e02a8f7434aa36369657659fa92828a62abee25f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-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.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 185677078705d1a929c85d67f4f01dabbbaaa21a338538118c21ba29b2ca4bca
MD5 3fa99cfc1ccd2bff9bfa8b36eb5f7620
BLAKE2b-256 cd988a3bb9ceacd851a1d3fd0b85a554c8cce84c67824923119e568dc44ad4d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 300.5 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.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4e04334ef469152ebe797e67f4d863039d9ad9a196a4eca5cae249cad7fef4fd
MD5 27c1116b04bac4edef3b4f5dae8d6daa
BLAKE2b-256 709c9be629e11db3caf2cf744e97c3c66fa7b961ec7a47c652d905df076fc254

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 322.8 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 02feeb86de1360672c149b64b9a3b389b0ead5b35df49c801d4e18376a58acd0
MD5 3424a09e7bb3fd839fcabfd5a4b4a0d1
BLAKE2b-256 a8de1e229805769725c336eda0a872f77b5f8df99e6126f2bc0d0e69f56cb0b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 289.5 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 610f10199e2394b13649b4c6f5ac99a88fd0e1d71e25789b609945f98672b468
MD5 0308ed5f1fd091d24b67d708bb82bdbf
BLAKE2b-256 b9f2e8d24831e069a790af49a48b83d0be2bfa31a6a3e1788bf442dbb1e7f2b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 730.1 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.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c2c461ee25792958a7573f5e13f5ad5734828813cfaa41066180082b19ad613
MD5 283faf02c009154e74bda44f8eff4da1
BLAKE2b-256 097cc3a198a2e9ecefb1851862c1c3c3bf795fa1914a60f82ce1656bf9622eb6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 748.3 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.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 01eaa1adde1ee106ea06dafd526c065e71e9e48235a8e3d8c4f739a534472067
MD5 f1429afb0756449caa6ddff296feae01
BLAKE2b-256 4ef97db918ce394d1acc36ce7f63ffe3dd34e575ce23ca7dffb20be263132317

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 791.3 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.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 49c07430a9164c9583eb5e5729861ca6b7636d0645d2b92dd9134052532ff91f
MD5 2f4e796eb3deee1c3708e784413759c5
BLAKE2b-256 e793c0b346c6fb3b89e1d67f0d188ea01a78c549b134dcd8a22f6911a8a07e5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 697.3 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.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54ad39ce30b5529c0dedcb20ee4474094f3cf6106e21afdeb4caf5cd69fcf87a
MD5 4ff25a38bbf959a8afb8e3608b57065d
BLAKE2b-256 e25e6dc2253792fae0113d9f344d8cb52b77781f03f9283f324b8594ed56019d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 510.6 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.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 605e44f508b33ec3c152937cf64221dfa4628214556ede4193fe5b64683505e8
MD5 e4789f12848feac09c1747d0f5575afe
BLAKE2b-256 eb3165874774be7202439f5ffdc44fb6cde36ac800c8de6791afaabd3933d3be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 549.9 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.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 807f2fd052298eb444b6faaa50adac9a4d89a38a41e8dea9bdf8e7ecdd291f20
MD5 f842732d9d8fa75dad608eddcf90549d
BLAKE2b-256 d3ae6fae766ed509979acf7c30bdcb50831f870418909f4fdb795a3ff1b05c25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 634.0 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.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d2ad39e00938139a1e1bc24918618874c79e3b88d9f033682b7e6fda340c718
MD5 b7b116da483679cab5109d5549f1c9a9
BLAKE2b-256 7a722ce54075a74a010112260438297676a2d3b6ed769e76ea9e72e2bd304bf7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 517.4 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.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 633c6adbd1f3abd349ee0c411010d00193b5da9403a476db0d7eea4f3048bfb8
MD5 a4ef49517348f203a9acd635fa9519cb
BLAKE2b-256 20c0ff68268a9b3dfbc8420b55c602570f91d64e7cdb3d72c37f14f72b976699

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 521.2 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.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1b0288afc970451e0d5093a4a6a3e4d88490e84b329fd5fe132512752081969
MD5 69187b2c2345ba2fde33f80419e4b1e5
BLAKE2b-256 11886b018570abd20cb3f82bb3504e4e6d6d6ecd3d892efecb3f3264fd67ebea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 539.7 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.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 34fdc2e3e1777cddf13f7adc764a513696f7c5ee748fdb600c6182d755fac94c
MD5 53f5cefed3a128c53468cdeca6e0d05e
BLAKE2b-256 eb1e7cf0e05578bf75b35015dd8db37ccde122666aef127328ce416eb9509e0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 470.7 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.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dab18a2095abf77f818c3651cbc945e5d824910579292de08f593e1b46555c77
MD5 90dd48f197bab7584199bb4b707ad2b7
BLAKE2b-256 b4a3a07d2f4e32cc4aefea283caf909be692a8612c156a913d8f5db4abe7517c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 477.2 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.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f659bd1c2c4ee6fa0c822ae58f00cc4e69a907afb17d3f257a3a3dabb1c6b80c
MD5 39583b2a8a91ced39ce114ca114fe9cc
BLAKE2b-256 9ddcb55d2e8dcb9de1601a7ba918c81c198a836a8f36ed0bfafed5b8a3900100

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 301.0 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.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e3986ede8ba90aa31dae6d681ef018259a02ddd2b9fc7b5c1b4da47330765eb1
MD5 df328c7a0a1e8554ea221cf76e9ba2e1
BLAKE2b-256 700fd2ebab8d71830f124fc52b8b2caff147745d0d01acb3292acaa95a90a633

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 322.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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eb1b7c0012228ad380267f3de2ec378516dbe7886a22ed5231a3aeb54a62fe05
MD5 a529900ac51f1ea00ab067f73511ed64
BLAKE2b-256 668d1bb6bc578c36525b46fd062b2d3052f3b4c37fa2a111accd7ad65c18bc69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 730.9 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.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 434896c605b0af5e6a1ca3bcab58be6c9fc9ed96a1721cdf4769f6a68a1d5d1f
MD5 b80349a85a9caecc71ca1bf0c837e988
BLAKE2b-256 93fb01b747562766f999cb8dc05ba421668c30407e718425bc0f5cc13af2f251

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 748.8 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.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c49d294a249185791714d2021d413e79074e622374b8d78930edb08fb4e53454
MD5 19a6a518b2d972492278853e00b6a6a2
BLAKE2b-256 fb4fab72846d34b7c7dd9143a6c82c1039a94478dcc8470d1450a7265d1594eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 792.1 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.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3c1ced3bf9aa999bedb0a07fc5c91c99a6c833b5ec03dd6245a8c1e44dab553f
MD5 2f8dcd9a86e33d1bd78f74630f32c2e8
BLAKE2b-256 5782e5551ec952465a2d98b64c92947bbf5329e09b21966ebba2bc84cc5b0120

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 697.1 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.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a11d72564fd0144eccab4f875f8230f16a18088528e35d965524e10fd42edabd
MD5 8fecbb5ba2f9a3dcbf3ae08a7f571526
BLAKE2b-256 c25fcdba12e89f48ec47d8e914dcadcb5b6eff228f0dec1647a3e1e2b0865c06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 512.1 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.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dd580836089338e42f2dc88a081cf37da14fe525479b157d1bd105de9939dfb
MD5 76a15cdaee7b23650a58b0ec9c418d16
BLAKE2b-256 c8a61c097675eb398a6e3dee12cbda0fdedc586ed8ee744ba95a97b4a1231dca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 549.4 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.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9387965ef6595b0258e5374cc4e52bbbeadb582b165b91e2bd1eaa4da80676ed
MD5 de75cac540a3d1e577c5ea2128f3734e
BLAKE2b-256 01e06addc688fac1e974335ebe4f163e583e91a96068af58ba1d4ee34d5f3eed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 631.8 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.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91f5613099c10fbb18b9734ea7d7c2ab761e7879a137f537e8d7fa42e2f69b42
MD5 5132ab68e0d1765f829595058d744cd0
BLAKE2b-256 d58c25c7cfc026094565a9352550535f114f5ddc8d6be4cb744e3f5f0c95d5a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-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.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bb18531891938c8150b5af5ad1c52e28886bfe0b65ec75f6f6396273871f70a
MD5 7349c05de8d9c7ac9a3f1738fc73e04f
BLAKE2b-256 559ab9a885b9c7b2944138a062b4e4f13e75aa1680176e37425c71383ce55fb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 521.0 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.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e5f78cfb6c03ad01c0950295d5f47d3bb8a806c8902ceafa415dab598a05c8d
MD5 7c2c17f728262533376f64948a0882c0
BLAKE2b-256 4c3a1c3d5ad48ec870ca5340e636afb1cedbfc697eeadea986e635aaa6e6b07d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 540.4 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.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1ba0393a124899b95e8d0d7a2e54306ed1f2ca4f9e35e887cbafcef10b5c50d0
MD5 da9a764a5f85f6c34e28822c568eea68
BLAKE2b-256 9d8c009fdfd29f1c0e0e4389b35066d9a57c063c9e6fedc6c8e5c227d5c10c14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 471.3 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.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 665ff2d36501afcd8e408670c2aa1ffe9e7a31500abb8ef0213087724f90e20c
MD5 34b3d0fae0d879bfa3afdcc137431f22
BLAKE2b-256 84efee7f4b4b0fa81b0b822c55070107d2b9b7856225ff686b4e2b5f31330c01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 477.6 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.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 87a2d9ee201a5c826e720c232396ca166bdafe9b5f36b9347c223cd21ce6a2c8
MD5 2d8debfb5e3eaa279ab4b9450f77c7a4
BLAKE2b-256 ac7eff4c041a803f62d95e486cc74a35fc533426ccb11a2211363684e8d10f7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 325.0 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3d9c14f6153a9ed7abc367b420cff20e7aa7553965934869217eb91a9a57d45a
MD5 c60fba865bf9f77d5373cb7f3dbcb1d5
BLAKE2b-256 b50e2875295952c72f70f070725ea08f0edb43f258a6d636b5c522d159b1759a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 731.9 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.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e195a880d83f7cb731df2405f6079f5ce51de86bdd499ec49f3b6a7d93c5950b
MD5 2d1cf23a97fe7b092532194abc3be486
BLAKE2b-256 b46c81d4baf579497d470cda171407a46b84e8de65206a72551a35fbbb08e1b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 751.4 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.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb9533dfe89c99df0c2385b880041b18246f7aa1e004ab663f7abd1912c4e650
MD5 963cd415d99ef2f38fc6a4a681c9b7f1
BLAKE2b-256 5744f194c000ec8f509a3bf67c5383c05214967d432595fee5c9e5523d29716c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 796.3 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.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a6131ee1f62ac610685004107bd01169240f0bf5f7342c93a67fee6dbc27d79
MD5 5774eabd74d323b087ce293756035c2e
BLAKE2b-256 6d517d89f1086ebc14a732403b6409c663b0cc0baaa6efeb17baf234443c390d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 700.4 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.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c878aa61d80ba97f0479835c01f6a33b0bfb9f7751ed23410cbf777751497d7
MD5 ea12b583373a5346efa2484b2bc660f5
BLAKE2b-256 ccf3fed3f94facec39713440ee7823f89e5946297940a480a2d0d956566d7280

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 513.3 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.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5767bd3477f0f74a278018c9985e0b9178f3b4a4d0f11a8f5fff3ed860c94d47
MD5 19e901cf9f133ace874674565b8f6363
BLAKE2b-256 3d561920ab0ce604e1613573e9ca5fc84b6b45a73a7cb5993fc903d3c192187a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 551.3 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.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 99a9163a33fdd155c58275d4a7196e1b2e3019b237ec367c1dd344e4d8d8ace3
MD5 eb0465d8bb20cea0065adb62085da86c
BLAKE2b-256 07e3c541081224ebd0e7842e6f7e632b2312115fbf5f43fce1418d948ef257f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 638.3 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.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a4ac01f7af5b3f83f00ebe45980decf8f41b3ce730fefb6fbbd05513616ff810
MD5 b5722840d28a93fc9f0276818bac0ad2
BLAKE2b-256 d89c56a5dc40454af8185a28c2b914c96c3f39d4ff09304666e6b70c5fe1162f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 521.8 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.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 38db046a595e3ed9fcc7a823c5f2eb306645fad0184e4b215b3cad390d2e3766
MD5 153b69f5442fb4a15d1774c71d381cc3
BLAKE2b-256 9fa319a26e97223ba86ca85ec2731580d9cd96425eac616e036b792de5a834a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-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.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34208c76eba6e19a05555bfaedbd2a07f4fd36af87ae5affaf8426f1cf8dc090
MD5 8865e70a89cd188f15baec649d771d18
BLAKE2b-256 9bc8d551f6224329e99ae333ad728078df8c642b94d23ccdc5069795f13dc6b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 543.1 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.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 78e5b6bffb9f73a7479ccaa2f8420a64f86efed92e21b23925fb3581fc51d579
MD5 a8c6c6d1f1cffba9f80abdf1441e2976
BLAKE2b-256 31e821cb25a1978ce94999919a6ebcf569452a69c9cd032d5680ccb1e1fbb72f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 472.9 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.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6ee82681d2de3a7b7f8bd306a846b903c586f73cd026f7cbc1864cf5750bd50
MD5 6300d84ae07f9d6877ce55327abaa622
BLAKE2b-256 0af851dc0af28dee00fdee24b322ab8c3cd74ffbef079165a29a3ed61415dc61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 479.1 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.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 98c9266cf85f3793bf8b1d603c5b259b6fbcb3b065ef0085d84d33441c54c5a0
MD5 e751ff15217381c7ac8efc4645a1ea1f
BLAKE2b-256 a04de6c8b840a5528cfde4d7da8362f83f3243684a51a29b564b15103c6f11b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 325.0 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 57b2b610f2e6d70a10bdebb37c9054beb84d42d02ac8278e0cf22bccb32e1fdc
MD5 a0ff3b4e1646fc16ca456a71ef533de3
BLAKE2b-256 1023b08839dc6e3dc8b880ce51c3f44cccb5789e7bd7b6931e5e9783d8c6f4e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 732.2 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.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06b2ee91a1716fe5cd1348c883a7267bffd8e95fe3467f42e0987aaf8bb9d769
MD5 329dcf56f66b134ac01ccebaf93fd7eb
BLAKE2b-256 195b5c38646b4428e53d2d7cd0753685fca09fe0160494f6cacbce27a64e9ccb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 752.1 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.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 281d7c3ffd7cf7736d1d79f896d49b00e299518685c67ba49e6716a1660439b8
MD5 7b168d02a8ecdd71aec98e9d57959dcf
BLAKE2b-256 b3d419ea71db420e46f02e9f3cfc4a81e6d658fbf8402fedb6498b8e7ebaacd1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 794.8 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.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dde41b1038da100e8fea749bc722a52ed83a485fb9ed9f1f52633c59e6b29382
MD5 3b958504ca79059beb7e2cc5e00b1bf9
BLAKE2b-256 748d1ff4677c1a6e07054563d883306e0e04f6421d64ef09c18ed398e703ea61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 217a1b7668a959099a51e8f031de2e5080b09ac4f70b3014d44930c59893bbed
MD5 957722aa572957cc2eda4e679cbc472c
BLAKE2b-256 f367639ed195dbeba9ba28113a1459826e6fd0cde03e2424a42c8a85bfc7c323

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 513.6 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.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8704a3376de0752b056ec02d0e01f29f68063c983ee7d8e027d4c812b679916
MD5 a3ef3868130007ed7a0bea505353645c
BLAKE2b-256 02860b06513aeb9cd0d6f7d492138daaa70af9954fd02f3fa6d85d179a875287

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 552.1 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.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4905230d8337a777a5f547e85c5983e5bb77c2d25f02a03a0642546291ad208
MD5 c725cf8b31160b1f66dd8c71c36860ff
BLAKE2b-256 487f2d561fe51929751d35fe964313ceb0a56d78ecb63840d9a35074bc97f8da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 637.7 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.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8ed55823786c4bcad48b604ae483135bcadae95836f02609b6f283bd765d7473
MD5 7764f8def204508b2b4db654492642f9
BLAKE2b-256 9192a90c5c93e958e24dc49c65b12fd807bc0ac75cd6ed2c6618d1be870d4f53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 520.2 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.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 efe923180db44095ed391b94f9aaedbdf8d17a561b855daa35eda8f4e8039581
MD5 a82d16d42d1a8675bdc0ec759de6bdf6
BLAKE2b-256 cfa491e7f35e9e2f46caa79f41e37dd019194cfe6673d6b4d78b534ea3b3e904

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 524.7 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.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbc854463b3e43c87331f80578c4c6e21db0b21ae3f10c0fa7c50b4a8c7bf6e1
MD5 5d4f7559b4fa1ec91811d58c29c6a829
BLAKE2b-256 6350633c37aa3243a02dea1944c8578a7b0b5f97614a23066a480f95976d2d5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 544.1 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.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 37b0ef045884653c5f2fa688b3c866072da60cddd80745bde280f448ab76b262
MD5 4d035a39279953cf08ca13e8d218eebf
BLAKE2b-256 7675c5ccb5ee1b730582c9a17d5972ff67cf7b83dea8dc3c24d54c9dddad33fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 735.9 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.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7db32151bada69e4e1e35c5bb65b33c44f90abac00bfcfd36360220ec6241c20
MD5 90806507ac91471079498f4969a37e22
BLAKE2b-256 c55e18dea88b75b79debf4b44d793769d7741e69d8ac620c7de9777580a14565

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 755.4 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.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2a8e495b46ddc6b9034691c4a60e837f8ef01e93c2ddb1df93c4f959d084585c
MD5 4ae537df2b8befd7e36a16635e27a4a0
BLAKE2b-256 e0d20ddd7e056e5bd4bea1849979c44189e1d7a5885d6182ae4ae77a336e6e21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 799.3 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.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 655e7675d87b367dd6c69ebc1c9c90c3140f4651dbc72a2695bacd1d4a334470
MD5 0f7cfa96448a46defc3955fae7ec38bb
BLAKE2b-256 a44ca6239e94f297f573886ac7c8401ed9bc6759be376189869b6a48bd3981af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-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.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4eef89530f87e7c161e09a5f3c8773a73070caba410bb5e4c93d9a08057af96f
MD5 cfb666346a65c2e9a0bdad1e3e45fec0
BLAKE2b-256 4e0a1ff9441ffe01aae4e0ee8ec0f1aed2f70b873c345978b70cc87c50472c62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 516.7 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.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67ebb1def4bf889edb3936b76121f0d0e9193c11e1e8f5b433cb6deaeee5d2ea
MD5 bdc5192326cef0158f2ca1c54c1535ae
BLAKE2b-256 7f0e7f6bd69c534d852f326165f4f4fa96401f27bfe74bda82234d948908126f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 555.0 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.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 35cd5aea7c5e566f6718a345326a043788369ca32b0e373cf31793536ca96652
MD5 5b5c52e4554600da20498b106c356a58
BLAKE2b-256 603b7c1fe1d6140d284491cdd69514373ef0637275355c8836fa99fdb285a86e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 639.5 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.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c556e2e665aa5b883e715acdf63f46e574113c99a5f1602f45d4b631fdf5f09
MD5 2bdf5eeb614ff2f9b32355bdb26e6ebe
BLAKE2b-256 3e744d8c2e23b8ab55f2b3ca7e8e07b181fbeb6f2357ffc30679f7d8d2dcf56a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 523.8 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.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4fa44d02b1c4dace3fbe80858dc02da76b800fb88586bcc159d6f5faa73428b0
MD5 a137732bbec5380e5a3471e3a752f86b
BLAKE2b-256 d5c73c68c980fb1b85e5e1d9a9753f3c8038b6b4d5f676e2953253f92b5db0ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 527.9 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.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8bf9f78acd078c91368dbfa147203fe23cd0c8bdf564e738607dc4be0aec4d99
MD5 b8aa726b2365afeea70884800021c206
BLAKE2b-256 d39b707082bb8d6b1f634e71e05f92d618049894861ec50ed8c8f8c13b535fb8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 548.3 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.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0f4c994cec4b538b0e5890950442a9d96bec6a1805ef356dd9a4b2acf1ebaa09
MD5 cd62ca97e07f817c68e05deea713b034
BLAKE2b-256 45547b92dcbb498596cd464aff810b2f1b3a38cd5e7698232beeb4dc83c92fdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 735.9 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.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2bfbe705df302397e2a9092b69dcfe7ed3972c2b30ba1df1b1782f8d0209a04c
MD5 bdc69e5527d62dfa6fa5a7c82b0f8a94
BLAKE2b-256 6dd67e30000f6edf0c639c51e099d1044b918cec499efdbd4e6263f580dd33e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 755.3 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.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a4a467577f6c4bb370bbaa86592cd46a74248ed7ca50040de73974b7b92b615
MD5 b435f3b88a5f614bb42b1db07cd6a373
BLAKE2b-256 c0fdfef4fe62c853014bb894b49f4c1d576ae0ee558567a8744c1f77c6db94a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 798.4 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.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 64fbcc7081ebe9c7f70d687facf4ae6cacdc5d8e17e2315bca6f78f5dc38e465
MD5 c20e9c55d5592fa85678e136d9dd9ced
BLAKE2b-256 62d81da05a9acf0ee14cad9f999d29747d093b7db50fe1a611982f314ef52ed1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 702.5 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.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea283eb4eea4b67a3f25e5c9192ad218450b8a6ccb15984599b5b46d1e609a15
MD5 8719ebfae54e6eb71f6d58f9f7e48f31
BLAKE2b-256 2e1f901b3b738e59b1845fda824204cde983f3cf445bc376e495e720f42378d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 516.5 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.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 448071214ebc4255b4dd5c22785ef814fc1865df3e2122c70bf3e0255afa165a
MD5 125b1d1a7435e7895b0ca70d49728537
BLAKE2b-256 d20337fa4c3d9a997eacf7740b41b0c0392d792ed336e610475f428ce9dd5ee6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 554.3 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.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 75a3d000e791b5fd1461f2bab8a4161529ca23846c0dd0ed8be4e357eeed07bf
MD5 2280be4c8c3481e7dfeda3dfbb39fb9e
BLAKE2b-256 43da5719999b6ba36b77e3dde932fd76cf287519227f28ef679ddce28bc36e28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 639.6 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.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d20709f13fa997d01bc74805254ac9930b26888533177e119a392bead318f159
MD5 bdb841af4b3811ec8120fe6bad4586d6
BLAKE2b-256 9a11bbea0527305d0ca9aeadfc7fea0dfe297b741b145cd828507a93ae026afa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 523.1 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.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dae2d1a547915b2eb61f7f2c1ae68410ae969f895b75e8ec0bededa9787f75af
MD5 78a12417acb80da662501e96eb0a4f8a
BLAKE2b-256 11ce36cd6cb5077299e995af36b243bc2d2e0ffaf9cc791c9307ba9b18bd135e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-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.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7497412d68e9638d7cd4724778f25927b8b8ede4eeeeab5be9d94b7c1b97d388
MD5 90433b68b13dbf18ed70e0002fbe7014
BLAKE2b-256 c7047ca6c86f67e8aa926554a9a45c185885221d61016eb84a5b6d5976a554da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyavt-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 548.2 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.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b2838e59aafafab96cba21ee270ffdf59ae279977039ef1e03e241376143072b
MD5 b31976774e32bec8db95fb4ce53821c1
BLAKE2b-256 33141d4ab750433097a8252cd2e0a98d67ea75febf675ceb93fb2a74ef0344b5

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