Skip to main content

A nanobind API for apngasm, a tool/library for APNG assembly/disassembly.

Project description

apngasm-python

A nanobind API for apngasm, a tool/library for APNG assembly/disassembly.

apngasm is originally a CLI program for quickly assembling PNG images into animated PNG (APNG). It also supports creating compressed APNG.

apngasm-python is a binding for apngasm using nanobind, allowing you to use apngasm without calling it using commands.

With this module, you can even create APNG using images inside memory (No need to write them out as file and call apngasm! This is about 2 times faster from testing.)

A similar python module is https://github.com/eight04/pyAPNG , which handles APNG files with python natively and does not support compression.

For convenience, prebuilt library is packaged with this module, so you need not download apngasm.

Install

pip install apngasm-python

Example usage

The recommended usage is to from apngasm_python import APNGAsmBinder, see example/example_binder.py

from apngasm_python import APNGAsmBinder
import numpy as np
from PIL import Image
import os

apngasm = APNGAsmBinder()

# From file
for file_name in sorted(os.listdir('frames')):
    # To adjust frame duration, set delay_num and delay_den
    # The frame duration will be (delay_num / delay_den) seconds
    apngasm.add_frame_from_file(file_path=os.path.join('frames', file_name), delay_num=100, delay_den=1000)
    
# Default value of loops is 0, which is infinite looping of APNG animation
# This sets the APNG animation to loop for 3 times before stopping
apngasm.set_loops(3)
apng.assemble('result-from-file.apng')
apngasm.reset()

# From Pillow
for file_name in sorted(os.listdir('frames')):
    image = Image.open(os.path.join('frames', file_name)).convert('RGBA')
    frame = apngasm.add_frame_from_pillow(image, delay_num=50, delay_den=1000)
apngasm.assemble('result-from-pillow.apng')
apngasm.reset()

# Disassemble and get pillow image of one frame
# You can use with statement to avoid calling reset()
with APNGAsmBinder() as apng:
    frames = apng.disassemble_as_pillow('input/ball.apng')
    frame = frames[0]
    frame.save('output/ball0.png')

# Disassemble all APNG into PNGs
apngasm.save_pngs('output')

Alternatively, you can reduce overhead and do advanced tasks by calling methods directly, see example/example_direct.py

from apngasm_python.apngasm import APNGAsm, APNGFrame, create_frame_from_rgb, create_frame_from_rgba
import numpy as np
from PIL import Image
import os

apngasm = APNGAsm()

# From file
for file_name in sorted(os.listdir('frames')):
    # To adjust frame duration, set delay_num and delay_den
    # The frame duration will be (delay_num / delay_den) seconds
    apngasm.add_frame_from_file(file_path=os.path.join('frames', file_name), delay_num=100, delay_den=1000)
    
# Default value of loops is 0, which is infinite looping of APNG animation
# This sets the APNG animation to loop for 3 times before stopping
apngasm.set_loops(3)
apng.assemble('result-from-file.apng')

# From Pillow
apngasm.reset()
for file_name in sorted(os.listdir('frames')):
    image = Image.open(os.path.join('frames', file_name)).convert('RGBA')
    frame = create_frame_from_rgba(np.array(image).flatten(), image.width, image.height)
    frame.delay_num = 50
    frame.delay_den = 1000
    apngasm.add_frame(frame)
apngasm.assemble('result-from-pillow.apng')

# Disassemble and get pillow image of one frame
apngasm.reset()
frames = apngasm.disassemble('input/ball.apng')
frame = frames[0]
im = Image.frombytes(mode, (frame.width, frame.height), frame.pixels)
im.save('output/ball0.png')

# Disassemble all APNG into PNGs
apngasm.save_pngs('output')

The methods are based on apngasm.h and apngframe.h

You can get more info about the binding from src/apngasm_python.cpp, or by...

from apngasm_python import _apngasm_python
help(_apngasm_python)

Building from source

Method 1: Without vcpkg

Simply run:

git clone https://github.com/laggykiller/apngasm-python.git
cd apngasm-python
git submodule update --init --recursive

# To build wheel
python3 -m build .

# To install directly
pip3 install .
  • Note that you will need CMake.
  • If on Windows, you will need Visual Studio installed
  • Cross-compilation not supported using this method

Method 2: With vcpkg

  1. Install vcpkg: https://github.com/microsoft/vcpkg
  2. Set environment variable that points to the path of vcpkg root
# On Windows (cmd, not PowerShell)
set VCPKG_INSTALLATION_ROOT=C:/path/to/vcpkg

# On *nix
export VCPKG_INSTALLATION_ROOT=/path/to/vcpkg
  1. Building
git clone https://github.com/laggykiller/apngasm-python.git
cd apngasm-python
# --recursive flag not necessary here
git submodule update --init

# To build wheel
python3 -m build .

# To install directly
pip3 install .

Note that this method also support cross-compilation, to do so you will need to set environment variables beforehand:

# Choose only one

# On Windows (cmd, not PowerShell)
set APNGASM_COMPILE_TARGET=x64
set APNGASM_COMPILE_TARGET=x86
set APNGASM_COMPILE_TARGET=arm64
set APNGASM_COMPILE_TARGET=arm

# On MacOS
export APNGASM_COMPILE_TARGET=x64
export APNGASM_COMPILE_TARGET=x86
export APNGASM_COMPILE_TARGET=arm64

# On *nix
export APNGASM_COMPILE_TARGET=x64
export APNGASM_COMPILE_TARGET=x86
export APNGASM_COMPILE_TARGET=arm64

Credits

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

apngasm_python-1.0.5.tar.gz (654.7 kB view details)

Uploaded Source

Built Distributions

apngasm_python-1.0.5-pp310-pypy310_pp73-win_amd64.whl (521.4 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.0.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (451.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (473.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.0.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (411.9 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.0.5-pp39-pypy39_pp73-win_amd64.whl (521.3 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.0.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (451.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (473.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.0.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (433.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (411.8 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.0.5-pp38-pypy38_pp73-win_amd64.whl (521.5 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.0.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (450.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.5-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (473.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.0.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (433.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.5-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (411.7 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.0.5-cp312-cp312-win_arm64.whl (470.0 kB view details)

Uploaded CPython 3.12 Windows ARM64

apngasm_python-1.0.5-cp312-cp312-win_amd64.whl (521.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

apngasm_python-1.0.5-cp312-cp312-win32.whl (457.0 kB view details)

Uploaded CPython 3.12 Windows x86

apngasm_python-1.0.5-cp312-cp312-musllinux_1_1_x86_64.whl (581.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.5-cp312-cp312-musllinux_1_1_s390x.whl (565.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ s390x

apngasm_python-1.0.5-cp312-cp312-musllinux_1_1_ppc64le.whl (660.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.5-cp312-cp312-musllinux_1_1_i686.whl (591.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

apngasm_python-1.0.5-cp312-cp312-musllinux_1_1_aarch64.whl (567.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (450.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (421.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (515.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (472.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

apngasm_python-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.5-cp312-cp312-macosx_11_0_universal2.whl (758.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ universal2 (ARM64, x86-64)

apngasm_python-1.0.5-cp312-cp312-macosx_11_0_arm64.whl (367.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

apngasm_python-1.0.5-cp312-cp312-macosx_10_15_x86_64.whl (410.6 kB view details)

Uploaded CPython 3.12 macOS 10.15+ x86-64

apngasm_python-1.0.5-cp311-cp311-win_arm64.whl (472.4 kB view details)

Uploaded CPython 3.11 Windows ARM64

apngasm_python-1.0.5-cp311-cp311-win_amd64.whl (523.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

apngasm_python-1.0.5-cp311-cp311-win32.whl (458.8 kB view details)

Uploaded CPython 3.11 Windows x86

apngasm_python-1.0.5-cp311-cp311-musllinux_1_1_x86_64.whl (585.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.5-cp311-cp311-musllinux_1_1_s390x.whl (568.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

apngasm_python-1.0.5-cp311-cp311-musllinux_1_1_ppc64le.whl (665.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.5-cp311-cp311-musllinux_1_1_i686.whl (594.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

apngasm_python-1.0.5-cp311-cp311-musllinux_1_1_aarch64.whl (571.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (519.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (476.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

apngasm_python-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.5-cp311-cp311-macosx_11_0_universal2.whl (764.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ universal2 (ARM64, x86-64)

apngasm_python-1.0.5-cp311-cp311-macosx_11_0_arm64.whl (369.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

apngasm_python-1.0.5-cp311-cp311-macosx_10_15_x86_64.whl (413.9 kB view details)

Uploaded CPython 3.11 macOS 10.15+ x86-64

apngasm_python-1.0.5-cp310-cp310-win_arm64.whl (472.8 kB view details)

Uploaded CPython 3.10 Windows ARM64

apngasm_python-1.0.5-cp310-cp310-win_amd64.whl (524.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

apngasm_python-1.0.5-cp310-cp310-win32.whl (459.4 kB view details)

Uploaded CPython 3.10 Windows x86

apngasm_python-1.0.5-cp310-cp310-musllinux_1_1_x86_64.whl (585.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.5-cp310-cp310-musllinux_1_1_s390x.whl (568.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

apngasm_python-1.0.5-cp310-cp310-musllinux_1_1_ppc64le.whl (665.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.5-cp310-cp310-musllinux_1_1_i686.whl (594.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

apngasm_python-1.0.5-cp310-cp310-musllinux_1_1_aarch64.whl (571.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (519.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (477.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

apngasm_python-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.5-cp310-cp310-macosx_11_0_universal2.whl (764.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ universal2 (ARM64, x86-64)

apngasm_python-1.0.5-cp310-cp310-macosx_11_0_arm64.whl (369.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

apngasm_python-1.0.5-cp310-cp310-macosx_10_15_x86_64.whl (414.2 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

apngasm_python-1.0.5-cp39-cp39-win_arm64.whl (472.9 kB view details)

Uploaded CPython 3.9 Windows ARM64

apngasm_python-1.0.5-cp39-cp39-win_amd64.whl (524.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

apngasm_python-1.0.5-cp39-cp39-win32.whl (459.7 kB view details)

Uploaded CPython 3.9 Windows x86

apngasm_python-1.0.5-cp39-cp39-musllinux_1_1_x86_64.whl (585.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.5-cp39-cp39-musllinux_1_1_s390x.whl (569.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

apngasm_python-1.0.5-cp39-cp39-musllinux_1_1_ppc64le.whl (665.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.5-cp39-cp39-musllinux_1_1_i686.whl (594.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

apngasm_python-1.0.5-cp39-cp39-musllinux_1_1_aarch64.whl (571.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (520.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (477.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

apngasm_python-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.5-cp39-cp39-macosx_11_0_universal2.whl (764.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ universal2 (ARM64, x86-64)

apngasm_python-1.0.5-cp39-cp39-macosx_11_0_arm64.whl (370.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

apngasm_python-1.0.5-cp39-cp39-macosx_10_15_x86_64.whl (414.4 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

apngasm_python-1.0.5-cp38-cp38-win_amd64.whl (524.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

apngasm_python-1.0.5-cp38-cp38-win32.whl (459.6 kB view details)

Uploaded CPython 3.8 Windows x86

apngasm_python-1.0.5-cp38-cp38-musllinux_1_1_x86_64.whl (585.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.5-cp38-cp38-musllinux_1_1_s390x.whl (568.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

apngasm_python-1.0.5-cp38-cp38-musllinux_1_1_ppc64le.whl (665.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.5-cp38-cp38-musllinux_1_1_i686.whl (594.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

apngasm_python-1.0.5-cp38-cp38-musllinux_1_1_aarch64.whl (571.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (519.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (476.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

apngasm_python-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.5-cp38-cp38-macosx_11_0_universal2.whl (764.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ universal2 (ARM64, x86-64)

apngasm_python-1.0.5-cp38-cp38-macosx_11_0_arm64.whl (369.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

apngasm_python-1.0.5-cp38-cp38-macosx_10_15_x86_64.whl (414.1 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

File details

Details for the file apngasm_python-1.0.5.tar.gz.

File metadata

  • Download URL: apngasm_python-1.0.5.tar.gz
  • Upload date:
  • Size: 654.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for apngasm_python-1.0.5.tar.gz
Algorithm Hash digest
SHA256 77a9e62346feb063d3e8a539f467b3e2814b50fa52b7308c00cfff9952d3312f
MD5 ec87417f45f69631001de046dc949403
BLAKE2b-256 c4713133626c301e66845183e7fe02fc9da0c54e213ae7b05f1130bde019cf43

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d7c58c87cb32aa3dd293de6f246b071aacbc76e61b3b1bdc8d59187975f7f342
MD5 4afe259ad2ad7caad926407f6f2872ba
BLAKE2b-256 92511c14cd98dc3fc553bd94255d3fec1591db8f9c6919e930797e394fcb1260

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ec34d1c8f25273364d8533dc7e54e2b017abc74834d8adf209411d65edd6076
MD5 6df9ec1a63aafde2feb3a06b35675906
BLAKE2b-256 77e5f539faf272b17203d118221ad468890f35c94ac00c74d962157c9c8a9608

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 18ecff09a8294e80b7d49c3cfd0500253bf3f1766395b5b14d9e4e09ac56e81f
MD5 3b8767fb70fd9af7243fd387c4533e00
BLAKE2b-256 603281be734577a4f18b87187fef4b2b668d654f974a006a1c024cf6d35b4dab

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77c18420825c82b848f8acc902d994ee940d6187c3edbdd541f70fd8a78440ac
MD5 686511cf10bfbe1b486626944764cef9
BLAKE2b-256 4aef8af0c362fe0a901e7f353cbdcd387d7a1af4738f6293b418f9d966bd7bee

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d0cb2e2a5593d74adc4e655490e4bdfb4351bc8c2ba2294dd9a196af9fc8c017
MD5 2b4bd51b7445c1e9f663707e4908db44
BLAKE2b-256 c9b74ba4f8d1640298490e16966a15b2a74516a3ec476dc70c38e5598124327a

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 79760072b7a3ab5919a5f71b0424eae34713110f769614c487c79024aadf764b
MD5 2cfacb171de74d0b92527b76139a7b9d
BLAKE2b-256 c6b390691f95c53534ba05605589acf1c835d5767d8ec3ecd6872593d7f7540c

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 694d5829ba7eb5481c09f1fb99ee1312f6ee0d6dc9b21fb9cd57d7f3521af416
MD5 0c369a4633fe38cae007b37e7b9959e8
BLAKE2b-256 31436ae08719e07d0203953e0e16d360a58f0229b418ab8066e9112aca91fdb1

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7d7b2de50780dd6af864dc9a236d2be83b6cc3334ac2b192a265109c81a519fc
MD5 8eaf7b8bbb95b3517f70f47d1274b259
BLAKE2b-256 047f070d359ad8a20908e0c6f58beacbd7cbf3bf4a063155992e9cbb1e0f1ef1

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 986308cf9f536f64999657407ee72b3cb2672b116b9ba8376176770439703320
MD5 6da3cf67c5683edeffa9fa378cfaf490
BLAKE2b-256 e6a9a9f8187263a4ebe8d898a244475ea7596deff39f2b1d2cab1a9d3c708ce2

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3603432796a1de5ecf93c8a64f165f670734a52fddb7d9c8e2121b0758cedb2a
MD5 043d222d2eeff9d8cc8250ff99fc2dfd
BLAKE2b-256 bf03b6fa3d5cc91dba96597a5831e2839e28ed7bb0536c9b442975f5a06bb4dc

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6d80c894cd9ffb069b0657b09e65a193dfbbf0059cf0eb1174193c73709e91fb
MD5 c006d43114baa2bff19d9cbf2f2b1d2f
BLAKE2b-256 f7fcfcbaac3d674b078db3a55ff2d0c322fc14608bc3e530adc5fc073993c4b2

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04fc3aa05e32fdec6e1c770de3e7836064d0db2741864b4537779d09ec255f39
MD5 50d788fcb3cd1b51522b5b29f30bad8e
BLAKE2b-256 d877d341fb1b15562103e1af459b020cbc4e25987396f08cc54ae1179e680d06

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ecbb266b97ce6c76ba424b552f774c02363ced2fb983d4d8397f17826598cf7
MD5 1cd80a647fd72e30319059b097edbc2c
BLAKE2b-256 18933f1ae4d6cdf490f231afa70bc2f2cde607e64766883004ea6902c2f3fee3

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f33fcd066226ca4b4df347f1ee43f54ab7a1015586dc5252c7ba1b73a279122
MD5 095ea429f7542d0d2c842d966c4a4ee0
BLAKE2b-256 9f491893d3df06a12936d2bcd2a8d4c101eab22e07c7afa9ba5b6ac55bb7d8e1

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-pp38-pypy38_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3f16f3040f92b07dee37c4dec20f28aaa50656b9367420d18d3c7e790e72dae2
MD5 78632176efee18841721b4437df893be
BLAKE2b-256 8e9c690b22d81495bad2fa7d03550faf55e1f927e9e52d66c602d005f1aa1573

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b427e058aca131d4bf81f1c86e72d19aca43a88aa7c319fe9c13684684756400
MD5 0caf1fcb577e04ea3b95f5cb251d9a07
BLAKE2b-256 f8777732d77f0c5752250d24a1da7e68d1b2bc20985bf563e92f98b6ad7f8324

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e9e59568ff04bdd26bc97bc042aa72797d10e3707ad465bd023dae3b1e64e4d6
MD5 a714de5825c9dccf9c29e83c9c5ce4d1
BLAKE2b-256 d828b782ea895ae35f7565f75f4c48b565bc5afb48e8864d22c5b67be910267d

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 83156b1dc8fd6a3b355161ddc05d0fafc4b11861f803f95f5f4a2a4832b514a2
MD5 ee8b3278a6aa79c3cf3be6fc870427e2
BLAKE2b-256 a6871245211cf4eba13f3f49f491e37fae55b239833840e5bd6775353baec299

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e73b1d0f26f9871c2815eb283c545ee3b99d96d3530c68553520642960b8d79e
MD5 b4b873add7368093568b130a75ab2de8
BLAKE2b-256 e163a180671a5bfaa1cbbb098d70d025a605cf12aacea56282384e713c118df6

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp312-cp312-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 a137a9e73c6476cff14c0c2b988f214a25a99f0ca41ff5d974655e54d2bbedf9
MD5 735c91a16c30ca16d0f829ab9d1eee33
BLAKE2b-256 d396ff751d067f6d96e64b50116f42d3f76d0cc5c01fdc4b69026fcb6cab47c1

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp312-cp312-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a26b6c19d4fce990999ac22ff369090f938d7d38992eaaf48b58dbc7ce148405
MD5 6529165f9a96e2128dd31adb1bf25dcb
BLAKE2b-256 8771633f7a91f9a626158f306ecb77177bda78abd5c3c6c421aaba481ee2eb16

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 064544a879013acc195aaffb469ea97028f90499f31a27109c52ba5d81470634
MD5 4908fdcd3befefbdb087f98d4a5214e2
BLAKE2b-256 9331bbc5b294ceb236dc50f028ec7e104c019f32a78108db9f364730c6b4c1f1

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d8a94665c3d870ef984b097b5d9c8c0569666dadeb31eb316bd114ffd5606675
MD5 e9e0689218c9bcbf313a828b1d1ae877
BLAKE2b-256 8bad396aff1fbd366cb515f7245507c6ffb4fd59cf5ca18eb9494f68f7c16601

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ceb6d1d7eb6b1e7cc0f7b48d98d479950b7fb46336ba5381a0297c6a67f196e
MD5 80ec230a36a349d27a590db19a519e99
BLAKE2b-256 f540239b1958f7b6b4705b117453ec6f442a16e75838f7830449fc0f236783b6

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aced558b7dd64257c2937ff206865bca15005c2de9822f6cbf2b06e9a287f277
MD5 eed1046f3ad588a12f06fe4d5025b086
BLAKE2b-256 79ba8afa473c08f9f10b165872a60c306354acabd701cb25ba73c1b8321175a8

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e99b451514e2b355ad0bc857d4af45853a823de19fc65be49fe7764a51e93530
MD5 0551b07c214d46eb7fd1601d86971be9
BLAKE2b-256 81f47e9178873f668c71f643cf4902dc3aa0c9e867f7255f8678ef48218b4d44

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac486f3214e9295c7ddb0b74f7deaa944f75897e0fb574dcdf4f60ccdfef1c1c
MD5 effc163fbaa83855578611e00befe9b4
BLAKE2b-256 af97185909b92526a618fb07c8da8553fc73b150d11c8f82999f20d7dca779d1

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cab09b928b83d07471beceb2a5a70fc67e770deab7e101881d11c2a1637e7178
MD5 ee207e602ec37c698a4698a9a928effc
BLAKE2b-256 b0f22f97730f2442dbf470e6f7528190121db5dea7dae1e7aa1f4fdc846deb3e

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp312-cp312-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 801b40266e1b4f1c5dfcd9d18bac867a10179c84a4179a67a3364d92c5460675
MD5 61b2e50ca556a9e6a3ff1853abc9dea4
BLAKE2b-256 afeba1f470b08f0c1e7b7604898291a3b024f165f69092a9267c3143b868c8fc

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d30d1dca547b6ab12841ad0499e5c2355e6f89c1da69727dc80285d49e2d4c7
MD5 2b2076742aa102af003d54c6654d089e
BLAKE2b-256 bbfbb45f36e7a5eb451af6c09e40c836457eb8bd4814a470f6c85f4adc747cbe

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2386b05e0d651b328421a78fbf046aa945272cc6cc88dae1ffc7fa45b5b54f05
MD5 cfeb1cc867f1508f88f05096ae5eff48
BLAKE2b-256 83e8d34ac912d5940747b6151d0a9552bcc2c5b1ccb093cef556bb0635589f1a

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5fd23f2802f200df9251ae49d3530de8d85f8ea49726686457ee2498d60dd833
MD5 997634ac1af9fe63c92661073a50c0a4
BLAKE2b-256 a8b850d616b402dac6231c6bf2ab98943129e62f1a24ecd5d53c993aec21f97d

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 205f64eac308dcb23a2a17a5fe2af7f6dd18ffcc246ac05fe7c3e8de786b9eef
MD5 32d04b0f792e3e1127d3938b275b01c6
BLAKE2b-256 c51474938f30fc6a5d00388e758506c576398260fb63b1c9290c9b17bfaee58e

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3a815793f2b7c6635a401a1a47407ef17c5cde601831b5877a4c8af79663277c
MD5 1e8854d8959e1498fcf00face06d3942
BLAKE2b-256 137ec23ffa8e9a8975178b1be19617bb9baedc88798fc0e2fe1cc6015fb59862

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b43b03bde25fcc7e698af67a3393f96dd67e1aea55df11cdb240b7e553ef239d
MD5 104cc2cb8eb51ef26a90991a5e338068
BLAKE2b-256 e793007abec01223e8f163799f0ea85c46800b88c60fc4052e6dc26b75cba56d

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e27e31d723a8bab5fa08a2abe1c5320df3781639afd0d65df68fc5db4bc887f2
MD5 d2e4b2de8707b6ff9d106a61cb2653e9
BLAKE2b-256 4fb96916ec864d496a7ae51a9cc8e8c7487368a7796a5b166ecd04e51cb5f77b

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 5a3d0af1afec4dcb9237aa13445e7a0466c4cd0f8174e8b8d0e6b74f1b7d3713
MD5 03f17aa3c0c2c56e2bfc294d49e4c3da
BLAKE2b-256 1309a81e71ce24238009eae6785126e31aeea57dde6e52f724783f9d1d9ee583

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d9d8d9a31a14543534458401cea15fe1b56383badba770ea8bc8581359855c00
MD5 af50047f7b30bff101d30e1051cad57b
BLAKE2b-256 14db2160dcbfaef8532befd0c5b668301361de4376192460e904651b8194c19f

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 259091e19a4d8704e6d7496458fcc540ba7cb29efbfdc31fe602a0b66305b293
MD5 6adb28ef36114c86d30aed6dc629dc90
BLAKE2b-256 b8959de9273426ba8cb2fc7fe78b8f79fdb70a654ec530aa64ba5d14a7f67ea8

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 517b15077ad904a47316a7b5a427f3dc10f407a79352d2f294f7d01d9feb1c07
MD5 c5ea30523adfde49c3e7bbc2faf94762
BLAKE2b-256 c0eb1c514d3317ac24c14f6ab3bb5c50687c0772a926e0de82482305be754539

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e1a9c8f341ba9efcc8db83ed9e21da8f0a58f39de25fc39dac551d61142aaec
MD5 4b2e59cbebb06b6b93f5dea3a482f575
BLAKE2b-256 92bfc63b20ddafd7d93a5c5bfab69a2b500212f5e0bd0cf0e57654f0bfb505d6

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f7ad174719220dbb2fd2aa027c50f33e71a6f3ca693e9daf77f4e2bbba639434
MD5 ad59f13c8c777e13e3e1fc47edf56bda
BLAKE2b-256 35c202b91cadd5e6f31e0a3c998c3e057e97224a555353be1929ed6ae0c855e0

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 169b1b15f4d6062c33d15d23f7290a38202ce30438e8ef377cbf464d19ef7628
MD5 098a9089aac557b78104050b9896ab37
BLAKE2b-256 3dbfffbb931064836189b38de608f62d483ee6dcc23b6643ec41a331c208e102

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2841d79b08556965516e440a70ec8535d680b34f037eb19ade91226edebe94ab
MD5 d067b2ed96e74cfea5cedd288a715280
BLAKE2b-256 35b2f66b3747c08182e200f651e8090547b51b542c93bfaba1f01a33f86c441c

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp311-cp311-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 bdc470ffe842384cbde59aaa9543a72065d3df4b99aebd6cbb16fddad284b4db
MD5 08f0a3b59c98d269637c94120dbc803d
BLAKE2b-256 bee5c11b454ffc934d14ebe116143590991c163cbabed5bed79c830488f72857

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 701ede24ceee09500f8dd7236d601cce9fc27e0af98d29745bc194aad09e9725
MD5 4ba14d3f056440c9120788bc84486d0a
BLAKE2b-256 cd3f036d31352d8f7a50351a4a693c5f1c73bcf7e4ea81af8a971ebb946aed15

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3e76da952b829b61251b3e26c3a5554d16138c04a6d014157d7c29a687d6b67d
MD5 b27213b8dddb33704bdfb4d162b75877
BLAKE2b-256 360e5f7b72f75090ff53f41852f4c81c5743481886c40b3c1a55976c2bec69c2

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 33b860d7d454fa751c5796b28f397c26677bc671b248d6b5c8b946742b9e3282
MD5 2b44aff3e07eb2a5a9563ebdc8c07073
BLAKE2b-256 081393386cc3f87d29a0b62b007e7ab490061894bc94145761342db9cdf6fccc

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 598371d95e78069a3a00e1e152c0d27d9e44532dbc9e1e8a837bc6d17118c6ed
MD5 180a9127933dc492d0d0be32a5f5b218
BLAKE2b-256 54b85fb732c55a3fbe34e12a7975e78b8bcb68561c81fe20bdd3d9de1d81a4b8

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ea4d06d4b4ecbb11ff3af385f1a26412237f262c1cea074b8967e49fd698baab
MD5 ca071c8a749fcfe21b401992d70b6e95
BLAKE2b-256 2a8f84327383865ddb1cc2ec68e3312a76a1f8874a15a4ad5cc970b109af9823

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 88e04185e419a0e730a09286f6e1e3d5d72b517c917b9fb65ca35049d8056eb2
MD5 080fced20cb9af05a34926d48eeff948
BLAKE2b-256 a4f98fb3802c8a27d429d57e39bfdcf188eaef49c79d006fde01b1ec311afe25

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 a693a9b3e72cab9e85c8a2d1a365236eea19f5eeb84aa1f9990547dcdc47c783
MD5 be097deeeca49be604ecd44fa30f531a
BLAKE2b-256 10bedd5ccf67650d4864ee6bb4e73a335ab35054c45575014ebe2cfa668e55dc

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 297fc5476ce0cb7ba5f5b7b2b6d05277659529255896615f99979d3c66a40396
MD5 bd01e3aacc267bbd3c56f8e7d0b77604
BLAKE2b-256 f77008a22a0592c6c7973526dfbef17d9ba06666905e49025e20a5d66609827c

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 61519603bb3f87057da63c5ec26c2387050f7abcc75ed4ab1f511e774b2b6fc2
MD5 1cbc598bc5fed56583271962074a23c9
BLAKE2b-256 5df6c6b571125dbf7368d02363dcbbb3296cfc96f2cae99cd54fcf4036fb962b

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1a93dcfe2899ba50d1a866e60a746f6486aea40dd7718c2e611b57717952c16a
MD5 e8d6adae7c852bc23bd439f6c9fa07ba
BLAKE2b-256 aa1764a876854a6d71838767640a062c1921a7c93b0a5490a432f020ba65804e

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b0bba2661dfd596ea5264d0a52a1af9e62c73b1d95778a0b39f7c385169f10e
MD5 b3d9c08ca24bc8028d38f759360729c0
BLAKE2b-256 4ca09e76d8d05bec6d705c9f70ae6c843a23618761a1daf7b25f2f20f1ad0ac9

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1be2cbaed4a54f35dbd0459d04f4f24f258903cfc5b15c6c7fe075ab53652f52
MD5 0df76699ec68a4bc35848fc18e0d7d60
BLAKE2b-256 7109292e8cdc21f19496c4f92cb4b5dbdefb0ea938e70040c036479487b2380e

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69edfbf9898b098969da0202c3cb34173307a9271a87b9788b286b7a4be452f6
MD5 285acd790336c56e6a820a72ccb9f12b
BLAKE2b-256 b08b8b56d2b12f649ed845933348d12a5597987610123d1a4b82a6c16b0e6e44

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 59eb337b9ea3650a1421bd6eec6aff80320526851bb15a811176de790111ccb2
MD5 3bd0256367c80cf2f0a8dfbb01d9cad4
BLAKE2b-256 5e7e7ff2b4646f1282d680b313fdb0f82386d87f6e327e5f3567e10417c10206

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5db433049eb5b1e3d2f1c2b98e1711cd15d069a4ffa602b7de66e7714eec8e02
MD5 5d0671d072302ec7251850b1c5bbbb8c
BLAKE2b-256 b92355deb624bbd548b96facf3e8e635d8c2f654694e563eb8d2cdbcc898d149

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp310-cp310-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 8c674e0eb66925db6d3229fb3db2a9b4f45d05048633d5be06ab3fd2dd9cd7b9
MD5 0c5333b21875f63eb04ca90e6681f873
BLAKE2b-256 989b043dec9ebd44def0108f72a2684a4ca6851ad669787b71aae46ed6f7719b

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1be3bc06ca22e1d6e233ac10b80396603357e909947d4897a8cb786a10e7be82
MD5 8e7d3dc879ebf26fbf8e412009dec948
BLAKE2b-256 053acda7d43db142e751c800fd84814d38b9d95da4f2a4647d1b62e0d2c8673e

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 21be4468caa9a568e01b51b407603a25ec284fecccae547aafb139f88ffab263
MD5 615bf9488c050fa14d8b76ff9bd6da64
BLAKE2b-256 5237e3997556c363f1ef89666055f5937f528508030bccde3a6d54330c041df7

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 83699c73732c712989c00f224b134dce43b60ffbe035e2f30b806861be2efe0f
MD5 3c52201689d80371514abba5415ce87c
BLAKE2b-256 20ab4cca75d334101577840efdeb66d2d42013229dec29c4aab74d86c6d357b3

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 eaa31c6def77f51306d63386747508e7ff877f1a69a8bc16e7d40ebe0c33ca72
MD5 cb00a14863460e18d44305fe1c6339ac
BLAKE2b-256 1378451d220190f6a1d3f84a09fe8afa3d85a7c966757cece04d0ef0734df5bb

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ce6992f22cf5c1e833365b77c9d25f35a2ff423667e7c3ae216a3c0dc732050a
MD5 ce643ff79d9b2843fe287801435f6782
BLAKE2b-256 ef5a47836be4c3b297420f88e9e6ed0fb19485a035116db661e85825dda6e7a0

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 36c443b387d600917d5d056441189c735a72f2979d3737285363939eafbfb077
MD5 3490fdb971648fe54411d8d36a4340b3
BLAKE2b-256 71610fd681aedfa9c72ccca4faa44168a9482e19ebdb870e851eafbb3f45ac82

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 984c2fe3579efcd0819e792750206835d8daea30b945795e41119ffd05a98de2
MD5 51065106311576acff315de515fb5f65
BLAKE2b-256 b3842bff671ccc6a091b44188fda5abffa0335d3e67657ddc684d61a015641f6

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 0917c0700f6d7bb9370c019d9110c59874918f26e26d3c6f1bfac6dc0b65d5aa
MD5 0af68daf80bec547823e942e1ba98992
BLAKE2b-256 9acce76a6856466ab465b0771802c13813ec43f2880ba74b2c329637936d4831

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 54df488280578504c88cf5189d486326d8f736ea6ce1396d80812dfa47184764
MD5 1dab4519c3495b8519ac99988328f6de
BLAKE2b-256 5937be62a4a0d5cb98d3a8d2f91ed7c73da8382fd2c75dd7f01e73b337c4533a

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 08f150f2ed7d13e8a2a62b4843360564225d12136b6b8a407e3e3dda5532b314
MD5 5bc7737cc431845e44cf4e5f29e55323
BLAKE2b-256 df43f9a2d57317b80e282d46bc5c40da81958f8248093b6284edee937f3d2da7

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7df77e1ddf19c3c60ac7be66b0a0fc57f24368c27f86726cf3f8d8f6fe1c42cc
MD5 8d5ae6ca37488cb2c7fb318049141952
BLAKE2b-256 1b9c8d020176b63ceaf1b23d4fae4e5d13d18d2e991d2a1c10a0eebd54774dba

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 61b1dfe971a8c5ec86271bceb55a41c5a56829cff0d201bf64066324e9bba53a
MD5 5b1e52d93149e8b35109ad9966fb3108
BLAKE2b-256 c33a6bee0087768b051ae3bbe97870c4244568d53b2cbc02e51d86b3f6b49b72

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4a033ebb08ff47c056501ab92f164d13369131e2daeba6a82ebad6bb4b78d6b
MD5 2351b1d43631f1063d2b19b4b48b1e5c
BLAKE2b-256 46d8d12bd0bfeec10f08e321d3c7887a55f3398f138fd76ef0c391b8aa4dd449

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21a64de9f854bd46c1469f619ab0a3f4ae95adfeee022ba7dbb03a132b6895d7
MD5 be05f51006b86557190fc612fe9f5f85
BLAKE2b-256 7d5c2599418dbc703db63d171b6fcfe0c7fe41bef785d9b2c14faab652e598c6

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d1f92ee5282bd7f21388cdafb345298971b4ad6c4acd26f88fad5a6c64d3ae5
MD5 0d3d8f22df8ad14422048f5296442d14
BLAKE2b-256 19a8085f9168f44bc906cf8ec61e778c4c05c9081d8bbd7ddb71990c3b3a0637

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp39-cp39-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 77f4d2c2bbe43eeac12b3b8a14666a5197e1277f1a5ad1549cba2064050e346e
MD5 8e1a35dec2ad2ff0440addb1f5f9a0e2
BLAKE2b-256 c4bdb4554707c8c7c48c9ae2440178f4112c32577dada03e3322f0f74c24b8bc

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1db82975d1203e4fd4bd91f2a319b74516dcb272f15a3b1a35883a4e33d8623e
MD5 93e5fdf0e9c9c5645f61dc848a1615eb
BLAKE2b-256 d6684c9169ea17585c5b91baa595dd81c4f809ffe48dff3128a6ebe190dbada9

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0f78a4412950581bc958a93df20bdbd8a8c820c2641dc3adf7bc47b52b689fb1
MD5 efe332ed7cf0fef5f1686ca3507f1679
BLAKE2b-256 9ba8d602ce16208b0c51063d9fc2d1b71748aea7c7a2fb91cdaaafc9f0034322

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6714d8e2b7da1d331213180ece657a08c982f0b651704355fce8d87390eda526
MD5 0a77904cd1c83dea000381bf34ebde2f
BLAKE2b-256 a05b87559cb2b86cbed46d5eb50c376123c43b08608957b30c6efd9e8bc6d805

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1d2f035b358273e571a5b5574b97695e8ea7a05604d59390c74b1bd5f32d8e8a
MD5 027d6bdf87cea71764df442283d0f56d
BLAKE2b-256 ac88ea6393a449153aa022313948efd103f5cd191b5863ef9dec56ce0bf8f64a

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d0adfb8f26bf5b19d7ff9ebce4966ce12e1db764079003e048080b43269d2171
MD5 5e4cb4218929121054c803457d15c494
BLAKE2b-256 a2da97233f25ca57138b6ec4cdcd1b1dd9581954d65ebed2db205f426c22236e

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 83238ce6134d975f3666011bc4a5571cf8703de37db320bd8635409078557beb
MD5 805877bf7763f52f747ed72730b993e3
BLAKE2b-256 8728f125abd07f955d8a9c1dae17218720b159014ae9231c3fc79eceddb7f987

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 fed1414454531ade816b3b257c6296397ac7a6acd43bf3ea9ecf11e8d8b26188
MD5 35bd8d0c77ccb4f48c8fa62c80a96441
BLAKE2b-256 5694d5b15a50099467d3a4c9454bad37f02762636b8ad51ce3f8dcce9c8c6ba6

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3db99911ff9904ac5f2400c3f2e3e9c9a0e7b83f9e762bc4c16617e074702850
MD5 d279fa4ef0f15e4b2930abee91da3cbe
BLAKE2b-256 3d5abd9993491052f79cb13079e250269c38af5411cc5c0e62bca3263d1deeb8

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f1d6ec7709a8f8251b7abb0e55cdc35ee2acc928ff46dc2c73bcd80258de1267
MD5 bad3400b90a3c9fbf11a533d2d1890b9
BLAKE2b-256 559852134fe95a4453f8e1dd5d3abc3ef20443d9264de672369b43acabb939a5

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 541c5705a5c29c77cde00fa19a2d6fd4a134845fa865d0342871f07dcb47f956
MD5 ae554ad4e456c0f2335ba18eafaf9d0e
BLAKE2b-256 1129d88012f552bf23aa0ab0140398f98c3f1d96eef95632880a05e656a23441

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c8c5fc409fad744e76e14fd7ceee56e2107005ffdd98d07631d5ddfde4873dc0
MD5 5d627531be3b335a597fce9af14a8594
BLAKE2b-256 4b07570d611b2fdf19788fe435bce84e31a6f8a25120af38a893364f05ca8f05

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ceb47901ce3f8e9657c9a1886897e96e3b800e001589f8a310d5c1c8a520a0c0
MD5 bc0954507d5faf345e3842c4ec95043d
BLAKE2b-256 fd75d6586390f373a2bcdec6d3ce242c147e674d9e90c4fe0c7727f2b4bc79c0

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed664e9f94b50ce0749efc62949227f4fd3f332d3d23eefcb8eca5f848d0b0b3
MD5 7ab4dc030233efbfded005daaf79ee61
BLAKE2b-256 e6a3c5345ff51bef57569c392cb29ffeea6a5c738202f71359c80d0e6531172c

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63004561478076ae5e6f9b3137141afd252581de0c462a05da1f110f1802626a
MD5 aa1aa9b127bdd8e57918383b5698cc48
BLAKE2b-256 6b8cccbcf3c2aa1e0bea0d338954cf93ecb66e2d969d2e8f2176799ee6f79056

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp38-cp38-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 9881e8b27ec8de1f3892d9d76fbb83e34adf615e4b9362ae181b85c8de830fd9
MD5 d2b417c4ce497872e68681fcd8a0226d
BLAKE2b-256 e7a1d996a41698d52a1a2ca8c989ce4fe5a6192c07a265ab314d8b60a80acdce

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c88c0112d693c3b5001cbce13e00ac6cda83f08dfd1ee5b66e02d0a68f92a167
MD5 9ea63f8558c6db935cdb9e43e8492e65
BLAKE2b-256 5b6839c04c8aba6b88fc5ba9108a3cc41d986ad95c337afcc0240e2ca9bd4ae6

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.5-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.5-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 414f4758e96d17734fb0b3a52fc8f8ce2df05c5ad3c61c26568ae88052654abb
MD5 b790cb487e076ade5bdd0457fd67ba2b
BLAKE2b-256 136fd3e015b071bc319c9db21f7343d2c5749ffae9bada98e4ad07f95b3d5fdb

See more details on using hashes here.

Provenance

Supported by

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