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.

Documentations: https://apngasm-python.readthedocs.io/en/latest/

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.8.tar.gz (654.7 kB view details)

Uploaded Source

Built Distributions

apngasm_python-1.0.8-pp310-pypy310_pp73-win_amd64.whl (347.2 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.0.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (455.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (477.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.0.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (409.2 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.0.8-pp39-pypy39_pp73-win_amd64.whl (347.2 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.0.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (455.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.8-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (477.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.0.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.8-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (409.1 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.0.8-pp38-pypy38_pp73-win_amd64.whl (347.5 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.0.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.8-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (477.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.0.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.8-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (409.0 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.0.8-cp312-cp312-win_arm64.whl (319.4 kB view details)

Uploaded CPython 3.12 Windows ARM64

apngasm_python-1.0.8-cp312-cp312-win_amd64.whl (347.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

apngasm_python-1.0.8-cp312-cp312-win32.whl (310.0 kB view details)

Uploaded CPython 3.12 Windows x86

apngasm_python-1.0.8-cp312-cp312-musllinux_1_1_x86_64.whl (587.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.8-cp312-cp312-musllinux_1_1_s390x.whl (572.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ s390x

apngasm_python-1.0.8-cp312-cp312-musllinux_1_1_ppc64le.whl (689.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.8-cp312-cp312-musllinux_1_1_i686.whl (597.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

apngasm_python-1.0.8-cp312-cp312-musllinux_1_1_aarch64.whl (578.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (423.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (534.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (476.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

apngasm_python-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (434.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.8-cp312-cp312-macosx_11_0_universal2.whl (755.0 kB view details)

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

apngasm_python-1.0.8-cp312-cp312-macosx_11_0_arm64.whl (367.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

apngasm_python-1.0.8-cp312-cp312-macosx_10_15_x86_64.whl (407.6 kB view details)

Uploaded CPython 3.12 macOS 10.15+ x86-64

apngasm_python-1.0.8-cp311-cp311-win_arm64.whl (321.6 kB view details)

Uploaded CPython 3.11 Windows ARM64

apngasm_python-1.0.8-cp311-cp311-win_amd64.whl (349.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

apngasm_python-1.0.8-cp311-cp311-win32.whl (311.6 kB view details)

Uploaded CPython 3.11 Windows x86

apngasm_python-1.0.8-cp311-cp311-musllinux_1_1_x86_64.whl (591.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.8-cp311-cp311-musllinux_1_1_s390x.whl (576.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

apngasm_python-1.0.8-cp311-cp311-musllinux_1_1_ppc64le.whl (694.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.8-cp311-cp311-musllinux_1_1_i686.whl (601.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

apngasm_python-1.0.8-cp311-cp311-musllinux_1_1_aarch64.whl (581.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (457.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (426.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (539.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (480.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

apngasm_python-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.8-cp311-cp311-macosx_11_0_universal2.whl (761.3 kB view details)

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

apngasm_python-1.0.8-cp311-cp311-macosx_11_0_arm64.whl (369.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

apngasm_python-1.0.8-cp311-cp311-macosx_10_15_x86_64.whl (411.3 kB view details)

Uploaded CPython 3.11 macOS 10.15+ x86-64

apngasm_python-1.0.8-cp310-cp310-win_arm64.whl (322.1 kB view details)

Uploaded CPython 3.10 Windows ARM64

apngasm_python-1.0.8-cp310-cp310-win_amd64.whl (350.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

apngasm_python-1.0.8-cp310-cp310-win32.whl (312.0 kB view details)

Uploaded CPython 3.10 Windows x86

apngasm_python-1.0.8-cp310-cp310-musllinux_1_1_x86_64.whl (591.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.8-cp310-cp310-musllinux_1_1_s390x.whl (576.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

apngasm_python-1.0.8-cp310-cp310-musllinux_1_1_ppc64le.whl (695.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.8-cp310-cp310-musllinux_1_1_i686.whl (601.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

apngasm_python-1.0.8-cp310-cp310-musllinux_1_1_aarch64.whl (581.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (458.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (426.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (539.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (480.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

apngasm_python-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.8-cp310-cp310-macosx_11_0_universal2.whl (761.7 kB view details)

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

apngasm_python-1.0.8-cp310-cp310-macosx_11_0_arm64.whl (370.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

apngasm_python-1.0.8-cp310-cp310-macosx_10_15_x86_64.whl (411.6 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

apngasm_python-1.0.8-cp39-cp39-win_arm64.whl (322.4 kB view details)

Uploaded CPython 3.9 Windows ARM64

apngasm_python-1.0.8-cp39-cp39-win_amd64.whl (350.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

apngasm_python-1.0.8-cp39-cp39-win32.whl (312.5 kB view details)

Uploaded CPython 3.9 Windows x86

apngasm_python-1.0.8-cp39-cp39-musllinux_1_1_x86_64.whl (591.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.8-cp39-cp39-musllinux_1_1_s390x.whl (576.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

apngasm_python-1.0.8-cp39-cp39-musllinux_1_1_ppc64le.whl (695.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.8-cp39-cp39-musllinux_1_1_i686.whl (601.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

apngasm_python-1.0.8-cp39-cp39-musllinux_1_1_aarch64.whl (582.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (458.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (426.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (539.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (480.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

apngasm_python-1.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.8-cp39-cp39-macosx_11_0_universal2.whl (762.0 kB view details)

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

apngasm_python-1.0.8-cp39-cp39-macosx_11_0_arm64.whl (370.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

apngasm_python-1.0.8-cp39-cp39-macosx_10_15_x86_64.whl (411.7 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

apngasm_python-1.0.8-cp38-cp38-win_amd64.whl (350.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

apngasm_python-1.0.8-cp38-cp38-win32.whl (312.4 kB view details)

Uploaded CPython 3.8 Windows x86

apngasm_python-1.0.8-cp38-cp38-musllinux_1_1_x86_64.whl (591.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.8-cp38-cp38-musllinux_1_1_s390x.whl (576.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

apngasm_python-1.0.8-cp38-cp38-musllinux_1_1_ppc64le.whl (695.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.8-cp38-cp38-musllinux_1_1_i686.whl (601.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

apngasm_python-1.0.8-cp38-cp38-musllinux_1_1_aarch64.whl (581.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (458.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (426.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (539.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (480.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

apngasm_python-1.0.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.8-cp38-cp38-macosx_11_0_universal2.whl (761.4 kB view details)

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

apngasm_python-1.0.8-cp38-cp38-macosx_11_0_arm64.whl (370.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

apngasm_python-1.0.8-cp38-cp38-macosx_10_15_x86_64.whl (411.4 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: apngasm_python-1.0.8.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.8.tar.gz
Algorithm Hash digest
SHA256 70f85aa2559f356376fc1a7d61f1e3f5c65b7a5a9cded6b5ba55c5b7d673e320
MD5 d8840b2cf9e5c2798329e6dcdba628e4
BLAKE2b-256 f24e7768e6c6b257b7646dd80fd9c4882ac0ec4e30e5aaefff287938354ef5a7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3812a7e01fb5b88e6d07fbed2079b82a901fab1b3278db2e058f6bfbe278a8d4
MD5 51d2abc964e5386c1652856e9732e4d0
BLAKE2b-256 7e16147760762e34eca3ab1d69059d6fcaf77282c8692c46d7034fae98ecde30

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fd8e225a6060f7475a1f4d48712402cb4236f38cd799f3a393333eed0c1c3a0
MD5 06ef37ca97bc3d23c089e7c6897ab55d
BLAKE2b-256 de39d550ccd4760dfa2f3b155562fbfe286e49234c7f4e594b199377b3693dc9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1375eef9d2f29204e62ff80eba01a62b658c7f8b7da56bae6c11319d1eaa9ee9
MD5 6a42f3627dbd4ce76a4eb331f6bea87f
BLAKE2b-256 a483b9e43818f0ad90bb4274a5a5e4a98040d1cf06dea9ef320d4c7a3ec4cc9b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc38bf049a052890522bb89e9a815ac601231de3953dc595914d5d328ac44937
MD5 d9211ca55b4ba86c4441c7fed1865c07
BLAKE2b-256 ba3b627c7a5f12a31e083c179dd80c3e3b3db7ff41f310362cd9ae1f0a9409c0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 13b84ade8e042f179b7451111343b37ce71689923b226e0c5038983f3c7cbf0b
MD5 d619dc2aa3e33c8a8265cdbb83fc1008
BLAKE2b-256 b04bd9202ec4e0585f87e5cffc127eb6c81a20d4562226d665df7ce419b38336

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3c0e3acc8f1a85d7913a2f34400df8e22edc3c643f0a22e41267f9e8c01b540b
MD5 39d2ea7c866c4396bbce5aef8f7841d2
BLAKE2b-256 c2485bb78eea4e05781865e6f1dcf9ccd42d5f68d20166962ddfa6b11647eba0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdb37b91f0ce322fad4cb22e3d3f4377f87fb2badb814639bbe7d6744afa74ea
MD5 939e1d67060ad670b578fef5c05b2b46
BLAKE2b-256 af743ea6d880aaf132a8677d509e3f5329432e6dbfdcf4999abe699a389ff45b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 96bb719a25f5575495e914c75b75f3fb0c79ecefcd5e359bf886bac7e4ba2564
MD5 13e5df14fea038ce58fcc98a0608c280
BLAKE2b-256 16b8149361f459d5be42d9e9789f131f03c71884f2e9e3a0e6da29736ba465db

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c88779b8fb6c62a5f69e23b756fed5d9d6cd8e27c5e92c0893464d5fab47cf0
MD5 a766870be9f9b3768703f57ff7dadd1d
BLAKE2b-256 01d62d87b06dc00fa0d7b2e60c1a2a68ba6a550ff8fe7d03b54ff8c822603174

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c42fd63cd744445664539e9191dad5edceb38b7a4ccad059c48ef8d92624fd4b
MD5 e251e4a8972a021849ac6434a4f8d6d1
BLAKE2b-256 90631e15c4b56718a15ded8f7de436b8e44cd3e7aca4ecaa4053b98c465efb69

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 76d22d5631c14823b8ca01f584f2dbfb64b3a965b17cba60a43eeaf49015877d
MD5 0e0d3051f23cfb4df3c168ebc6cad535
BLAKE2b-256 40aa80e46b7163d7ec2dfbbf3cb99ab54bbdbb055b917a8241ab28b6f925da30

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2fac670a3f7569be0baa9730deb803396873cd55e7bd273773a4ab812a3fb17
MD5 ad0a51bfaaeb0a7631dc02d031e67032
BLAKE2b-256 8b00488d5267b50a1f9b7c7c6f1f7788f48e95284e16042674b57aecac086c46

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cde71dede35c5a6c1a069a62beddf5689b53a7e7f92b3f4dff63f81f5eb6ab32
MD5 4c8fba5ee0a47827fbbffd211a1ff3d0
BLAKE2b-256 ef414662aab808ecc4d26cec3d7ef5f990045263bdf1ed86a20691159f174fe1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 777ff9360434ce198f10bd692e1691e9bba425bdcb951892752b5b537ac67b9b
MD5 94d0576757ceadfa5a42f4b6a00b34ec
BLAKE2b-256 84f5affcdee2db3bd665d49ed8606d08e641b9da1f1c13f51c6c98690d9144b6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c1bb57f448517a3fc3790ac27bec584fa5c83a924813dae0cec629c497985267
MD5 846256f57d3b9406000b4550a4bdbae9
BLAKE2b-256 9775b19156664782a926dbe4a6791a4cd8736a4713928d9a0c613e3ec67c94a3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e796186c5dfb4de651da29c40fe96158f42c98ad3a7aaf3e9182fbefd75963e0
MD5 9dafe2a86e74f6fbb1206301d764dbc4
BLAKE2b-256 d725cbab184fd7e676464a19965d9de4ae2e79bafabcfb59c9c330ac0b592c1d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 29516a23015f45322d1d02ae8029f37906fb42870274f97634772baeeeea8e45
MD5 c259a94882176b5dd7d020642ab0e6fa
BLAKE2b-256 fb2d0786a4b7529edd8fef91dbca8b583f15adb8e667353deb34210f0401ddd3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 30d6b3d3a08db1902fe82ecb521f2f2b348d1ba4a10c0265b0955d1e7b15c5fb
MD5 2724c3e2eb85fa3a0d4f038768f52d75
BLAKE2b-256 3bd8a7e5c6719f39beabab17a3c5960bc763571095d4b40a1f4b447649d90d11

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9acadbc2a4ac2a14fa9e059143b5709138cb8375405ff431a3aac29ca1df8bae
MD5 da29034f0684e0b27de8f3ed7faafad6
BLAKE2b-256 a9c0c4bc7661e59f2d9cca24f6eb85aad6c9732e6267e70372dff597def305b8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 3c432926276323b7800471cf2889b3df19c4323241c327122a5d2478fceb674c
MD5 40943a31c9b4a52c65390248c838f2d7
BLAKE2b-256 7b8db832c260df4e5beb8c9049cf03c252f119c175d9694ffc4216b6f55508e8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 fc761227ad8be8cbd09f907645d01978920b0107dc09204b01cb5f440728a84c
MD5 e635a97bb17955e6ec5471d091733305
BLAKE2b-256 6f95eb398ddc1b6e0bf833386455aed4e1cff4c77b3e04a628d2fe79fe4823f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6034a5893188bbb89f92751e5eb6c62c65cfe8adc714d679043b28b745eea1c3
MD5 fe2f0aecff566db386d2c279a896a5b5
BLAKE2b-256 9daf315d120c0567e3709328413cfbf08453d9bda2debc14465463e35a818b0e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dba8f17611c034ec4260524733cd983a347ff6fb0928addd4b14ea8586fca3c9
MD5 792b2e3f04ceff11985f8b62523b7bc5
BLAKE2b-256 74f976fac74acd38668f2c8dfea4640b9444a4a398560557549178b85469c197

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b02352c486ac91bf18beb6cc5de3c3a77ffc9ad44858e96fde79811b68746d2
MD5 8f71ee1aa9a1b0084482e6432a502101
BLAKE2b-256 ef3978bd317a758a73a36d818c6ee5438d78d6367f9fb8754db1d7af469caf2f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 945e616d8ab7f773ab4a11e5123ead75e129283c928cc3d084409cf469588c4f
MD5 62f7dd76cd04e77029a4ce03c7600e92
BLAKE2b-256 3649f2e272b5d31618d0b8e3071d98577ea74d68a37b57d0a9a8a0eb29642168

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 295cae2a6fc2636dd41516fbbf7fa3b5f4a2774c8ead35f3cc411e797fc3cc46
MD5 88b9fb9012dbcc3a85c744d2dbd3166b
BLAKE2b-256 46d612493dd7d72b15796c35bf01e0c6afe87914bad5a535a55aa3b2446e3b19

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf403de2823c5056733fb04291843f9ef87bb3801ed078733bbe6b2cfc0da9f2
MD5 682b87f9b37c11dd99784b644c151bd8
BLAKE2b-256 e2b5921602590585710316f12aedecfb8e6680a66e8c1810e0f7513e83f277cc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cce7aaff0ec33f3c8e7ed4346b3405fb32d4d6b025ccb0b852682a7083dd0501
MD5 eaa6d2af149fd5c014e7b34e820ba6b4
BLAKE2b-256 742c918b7e1b51b0a11011c2229d9bcbf6c4825962e5ec0bcffe6389fbce6dfa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 b1432636d9b9ca5bedb3f05b0f27a1f1ac576b2cc1e1dfdb8825336e80b05ab4
MD5 184383090b9b1e606e4f9e2ba7bd093d
BLAKE2b-256 e8963c8b0e71c62bba0199b14365a7f7baa8af0e695d13967e971ede77953d73

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c167a2bc0c1f135533a0975e4dfa3ee0b000e9f96fe2e3199f7616592b38ea2
MD5 3560d0fcffc2d2f11c045e93933f4081
BLAKE2b-256 b63c16cdf90a61719b07a406c981a79766b9c921199ef673bb8405c7434a0944

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3fc732f685b64a790a5072ae69743f8ff1b177941f098dc3cd8b38cbeddd7377
MD5 55d2521d9bf37977ffbf0cd2d4989493
BLAKE2b-256 204e36b5f86307af874efdd14a3bdf7803a3c9270b3a256d1bb96e7a571654b3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8f7b471f5451a6f0d66ffc7306b1afca524a51df6dcd9f35d60e855eb82b8822
MD5 ae6d12e5bd4528f12bd8d43558685fac
BLAKE2b-256 07d2e538b79499712439ddcde542360eea2363289e2e2d2d69c2c4e20abc2298

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 293878046bab9fdfb035ca68e208ce00a2d95d9a3a990536fd50395b35b16821
MD5 2d6fbca78e25493210b86506c5afbe24
BLAKE2b-256 c89883abe6c94508381fa77231f0a02482a12257ddecfd9349848e78526a4a60

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 75b452483a120b4bfac34daeb8981390e8c9ba0f01b0ce2ee69b52c0bae54cd6
MD5 68bf360480aa685f394edbe7ee6a4c85
BLAKE2b-256 6914a6b459a17a1de18d76410a41261e060e9d18c2da8667d24aaa91101c2cd4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 57b2ff490ee051dc7c2644e87bf80f06c49a8c7d4d63e25bd8a02c98700b4ec0
MD5 b1b86e1332a5de6250f313c5a5caff79
BLAKE2b-256 d43779dd31475346e80b1cf225a2be6422a1d76ed1b5aaa14c756837e1d3f4c7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 6f0d4418d467df238414173c64e09e69a5f8c6cc3e920d12dbd3574a0661f919
MD5 3577d9d1e49ae7ed00fd16e16ef74009
BLAKE2b-256 bdb3a8b068eb4af76e99d319ca9cf2018494de54143b48a576642a69bf9346d4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 6eb730e498c41b655c00e080288f30ff4468002ea817e25b9a40e068d69b0be9
MD5 a80761f9d402d81117310776c74784bc
BLAKE2b-256 a0b21118b77f1c4a7cb22a2e64516ad144cb96b39d94a61f31f35846ae7117af

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 19a6e9e3bee3e4a02dfeaa5b8b1c2d02e9129aadce17c9fa4dcb44f8f002a8e5
MD5 0ba0d3e00ee302cb3c94d20240379fe6
BLAKE2b-256 2ec94cdf3d7b4ea78ebb092e5bf42d89d7da4469f156b0b8ab979524cf7aa53f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 59117bd1d00adbf3fa023dc7598a7c0b94f943b83bab444f61ed744d304cdbba
MD5 eea4c8e8a188c1ad51e7ee9b6d0fce9e
BLAKE2b-256 bf80cd9e56e96e1d25e3f8abd18b537cc8e02e533021198fef6fa3dc97610474

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1078c6e8e2a80fd5524fdc4d70b93f46d370c8e08ee9a84a5f0e3cac2bfdf802
MD5 468bca0e2f1dda903a04da5942ee2b92
BLAKE2b-256 b0373b8da6fcf70eac25890a64839b93dc4bdfbc56409e409cec752fe930a436

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 22bdf0e7b5a218ab6dc2fe81201b36f75c89ee8b2d1e6e15db4e2577d9aead07
MD5 39b2315968270e975a2bbd1a4439d7f3
BLAKE2b-256 05ac607db4241d8e3928351af46e2b14c7d5e40ccee8ebc862a2e4d9c56db38e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a19671bbfa40f9963f2ab9b631e388265ad09a9927a364c833382a614e196b14
MD5 27400f40f07f40d10e419c56f21da5af
BLAKE2b-256 66355de084f2f30e33214502d23b3f23510394db5f5fd6d068d6904574325097

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 787aa702d814b477a3e768b01121182eb0dfc8fe2ac40058e5d40477a7205998
MD5 36f8261964d39b1a1c4f0004cf387405
BLAKE2b-256 4e25b4d1185944332123882081fbbb257ea03b615eb889bcea4624c376acca96

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f5b12b82998a8f0e0f6767df1cf09b6b1f82087b04b991c46ceebe7fe5efe21
MD5 2dd39ba69e1ae658661e156d839c5b7d
BLAKE2b-256 a27cee9d44f959d07c85d1796dee26db7b675081db755bc6cd81a51e94b5184d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 5974f2744fa076addbda4a3ffc89c665dc72a06fe876f49f2c16f08ee802244d
MD5 beb4f7e10fac91b5b7b3ccc48f81e9a3
BLAKE2b-256 34be9b0da2b74ddca74ff7a6eefbdb323f7f5ade5ed1f3cf10f6e8f98aed5267

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b544f93fd3ed0b2df46ca802c1f4f968018cdf2ac106dc6f5f4e9efc6f2f03f
MD5 1992c72fdb9b8bbd5b6e7240c7ea58e4
BLAKE2b-256 1544770828a5dcc8300791f4c5cfba4603334c1cb1f40b9bf05c0c91e23233b2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6d2598260736acd888b506a9e6319ab82fb4e32d624554c8e5026614fde908ae
MD5 e62a0fa113ee33aca880aa59bae45a0c
BLAKE2b-256 15291b9ade676aa1ee53ff999f59ec3aa4a8b0634b4ff3a114438a0c322b3025

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4fb2cdd63f14ca445b5d9657b7b7f779ed2f03d4507e219176e2b8da23acbce9
MD5 564f3fb39c503872650ba8f1c15a9157
BLAKE2b-256 66b39539aa21698dbdd3ed3f9cdf1c90380f35891f00e3698d098ef082d27e5d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0d3fa2ea78b5ae0361198fdca2bda6c7a150b3951ec1004688f88c1cb716e8b8
MD5 826d4b73431519bccc1235c519e4b10f
BLAKE2b-256 cb36ebc2cf3e231eba3c73da2f77b4491ffce2b1db2d4b7d1335c0c825e94522

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6822fc102a121b5b74fd95db7e94f5702341edac9279186c40b23037a051b8e4
MD5 151bd0e95ab405133b24e89947ad3616
BLAKE2b-256 a3efbbd0d1f56140ac1e916da633da99a6f254ec8235271658dc7484db6b88c8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 de0e46a4292025f3f1357579ccc1ac4f4841ecaecc213c49c1c325fc565169e2
MD5 6005df76ff82b1bea55ccc2bce1a52e0
BLAKE2b-256 0ea5e38a5be264b8196e839dbafb2316441cdb8122c69fb37bd0e46ac22b771f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 73d7756418ade32febebebe2bd7ecc0fd1ea491da0d1002ddc8c0ca3562fc26d
MD5 d4d232237ec0d33c94b4c61a518d5e42
BLAKE2b-256 63e732490567b372cc1d6fd81c790ba70de313820c260f6dd477f6bf1aeb6526

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 d75cb02ba64c80a31828a02955ac5d4ec1efa0e35d9b759484fe9b4d51cafca0
MD5 2c6def19e2ca13aae82d81d4669b458b
BLAKE2b-256 ae43743512bec6b12ab87f3aa0a68423cbb5418e38f7de07378b616d60c07878

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 21d306ceb2cd7d37a5961b01c0b63b52e502fed7d5b26da081569db167f50441
MD5 6bcd120c7e2a35c732731c855cae6fb5
BLAKE2b-256 1dd7ea96e9fe35fb8a45547e4127c3c848df88006acb464ee8ca8a6334d8df8f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c646f88bd2f0f2779b2b70dc0d5f6ed6a885aae28f68cf35eb09ac85eb0509c7
MD5 16e3c03323e18bc70b058fa4b1b3b517
BLAKE2b-256 394f430f1bf167b06cc11ca25dc0423fe5856157fbd162d3525d933298e501f3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8456758c6f7979466450cdb2a277cb10b8e07e4fc6184d00fd800fb664d9e562
MD5 7340f16e8e80c88370d493a3cd10d595
BLAKE2b-256 ed5d673f949bcc879f57e84ddc2a1226143c689761ef1510d7c060c536f41581

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 47cafc66a3416282f437fb95258517eb2f2b42a99ee1a5282ba39f78c8d766e4
MD5 3af0abe412d37efcec248dd038b8fc76
BLAKE2b-256 780d9d9b1661d9a88f5903cc1026554407950011e23bc463df4690bf3a7c869e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c9a9ccd5f5ecc7673dbb4a2d39015383e2bd351517d1feef0c07a33e12349c0b
MD5 fc0c6d3cb55f3001b151f7bc02f6517d
BLAKE2b-256 10173189bd75066fb142bdf80404a5efb1b8f6bdd83ab4fab72687f654d58860

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 160c7ab0f206c9c12f9470ae501a7ae2ef4da72d0b71c5dacf6db700c9cc0a5f
MD5 95fd819a9992a2240e4faec10ef4d769
BLAKE2b-256 3192c07c5fcfa8f3c40e9ed2df631878bb7a4cadae154db14f795581e7870587

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54eb63e75c53e899dc5ba518b27ff39dd970b3893edbd4715b2f6d29a2d32908
MD5 82fc6ad916f6a1bbe9c828ce339baae1
BLAKE2b-256 c8dc06a14b69713674e11c41ea235e6a5498f8f5c9972b4f7340be2b51790b78

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 968848973300ce89fcb2f5698117f179580f27ef98110cdfb4af5f8eb31bcbe0
MD5 4aea99ba0bc04e254cef462e42e5378f
BLAKE2b-256 ff9cfebf785fb31471b8c9a4b4945ea36402c09a6bb5617be618510b5595914b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6517db049fed1d01c26b29e919844ebbe1774cba5c257eb303d6c89b216a1a28
MD5 ebc7d2eee0b694cf8d6bca66a186b003
BLAKE2b-256 96aab30cf8e10c896c5b7bd1c4a820230038211171af45d75795719b6250e812

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5342e4944671ea9f2a9b7bc63cd1a8bf574c52f6e9773b5afbf6c2a48f6f4da1
MD5 d8f5d9f9644c7b0581bb8cb5c57bb4e2
BLAKE2b-256 16191cfd395a844eb2810e7ca56245902b396518856ec128973d396213e46b35

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 82409d4d7bd97d022ee2e2ffc59004b5124017a77f543dc36b20c881eca6a95a
MD5 c19365260baaedc008998befa8ec7ab8
BLAKE2b-256 cbc659e5bf813598e21baba7d8cafd0919c835e131bf41ac25336611d1d6b13f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 53f58b6ff8e2c9c3b89cd8994adf339e478ff60961d1aba90369d3b6525b4818
MD5 ce4a1d429912396c5c54823fd91d6514
BLAKE2b-256 8280c8296534ba5afc01289fe7aa41366da9252f77323d40b0786c658896bef5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c91767a11d67ee1ea4a2270f192aed635c35f0f0d49cb51b0ca08f9285ff29fe
MD5 cfe2edef00e872cfb4cd22ac5d86b6ad
BLAKE2b-256 b63b2501ab8a6cde8b86a39e77b67d9ebb565ea10dd151b5863de65d19e86f86

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 30ee5808d59788db5f55cadfa541235b83f5ee9e860030c0ca06416392c7507c
MD5 26ea06c1929e3bf535a5e3cbdd658bf3
BLAKE2b-256 2fccd1f42c365520e79c7eabd177dc40d44e62a718c258ecbcd91c72155e41f2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 20a45c83a198047c840cc7d69d47ddd066c68590cb568c7ee74fc0d3b7283660
MD5 a5ecd4300035d0ad7e02d7c6504c1ce4
BLAKE2b-256 29e58f2f7fa648b4338b1aa16d0e923c9c1a1c56a009eabcf35cfde7e8e3b153

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 5bf9de9d92de0bd7a8191a5cf289bcc962e3118fa553da6fbcdb7c775efcad86
MD5 5cb622fbf95739cad901d08ce55f5c38
BLAKE2b-256 4f76fc609338ca07ec2a7d87bc772d88c5374f7c245706b2128a312fcd1fe9be

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 597bef055eb630f88afccb59ab118bc667115181b9366118c274adbfa3574f3e
MD5 438e4a725b11899346dffc79afeef070
BLAKE2b-256 5a234823302c0fe846ce35021e10981bc7b63e05ecb08c63671feb12bd13ec6a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9675d788b2e96f181ac1aef76b51577d6eba98a44573aa034799cab596d50b12
MD5 27e2d9224bd9ffde269ba59478234f02
BLAKE2b-256 afcf5ba5b881a6ad6e5b2d07ac3ba2f0956324d7b1fd1302f7cc0b2124ed08e5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ecb51b2944621c69bd4492fe082600887193cd30e9469610f46b49a21cec288
MD5 5724c15e0b934cc76b2aa3dfffbe855e
BLAKE2b-256 a4ec4a495a7b173cf86e4bf729a927597c9060ebabe69b68988b7344fa370dfc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9fa6417cdd5d508db95c93854c0c00d4d5be6709accc81b11c7e3ef0fd1fe41a
MD5 b453b21a26a810271f504ffe004cf62b
BLAKE2b-256 e59ba818d344c894a89677686aefba280765ef49ff5bcb7c703e90ed25d23683

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 38598a2b6b7c1a6c16d2fe1f11669ac9f04317f42d66991d424551e433535440
MD5 d5aea296d6aa5e52c147a08008a35e91
BLAKE2b-256 8c6af9dbd9cf34459a8ad7a56339267a36bdf02521ab8a8142c195d503207d1f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0304a2544a7d3d6856b818ce7dd981e392b9b5a3b3f55bda42f603dd96191dcf
MD5 cfe50b045d6df3d105b80cf86aab4471
BLAKE2b-256 631faaecf41316ca4fb0b5685eaf16131d45c84ff9a5ef533e8747b34e2717b3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3657f2bbddf1b8229432e17abde9c1adc4eee0333376b360e0b14202a4342803
MD5 f3d504329bc71a75e55d07598263ed25
BLAKE2b-256 25fc82e7b1e984189aa93b1a795cd9279116a6ad929663302a095d971e5b5fb3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 25947244b237c467ed43d9e09b082f73e2017df9b75b1c968fc81091791cb5a9
MD5 cea7506dcbad91e5aaa613382bcfe92d
BLAKE2b-256 25731a2e44de8c5595cb22c8520eda472dac2a6bc408f9edceb13fa5b1efe6b2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 332241d5cd4b01f1e7e47d74b13b22cd4f62a1dbf3dbdc9a7d331bf5018de0b9
MD5 212a88dad1a17dd61958dd4fbec9788e
BLAKE2b-256 57152993e619472f1d9fa0f876f01131b9aa4ffe4fd29b039252be941bfe0746

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 415d258e94e91b4303aefa82134cc98392aee8cbd6b82ad6ce557c4eff28c064
MD5 e90e1dc2d23a782b0f5abac123bdf466
BLAKE2b-256 1f562e60e0923047df0ad4c1d697efe1ef5d3ef42bb9c398b04e27876de17ee6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 97090da9f1b0dfd6694efe9437628cf288881cfd5d4cdd78c404ce6888756b52
MD5 c22c9bd415b8a4190559db4e4302d12c
BLAKE2b-256 533c1c6d946dfe13f345f1ab478b0ce189e45771c83ae333a9a80cd98fe9f4f8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 85e1beb15668f65514a2e443a281712945fde7f4c5ae520353c6bcaa554cb60e
MD5 8389044a7037ec012364cbd61f96542a
BLAKE2b-256 c3763c0019cdb94e64d55ab790fda7fe300cf661abdb77cd8b8d23ecdcb8fa00

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b12ec284c944ce6d37b1cb606665c3f22038b9925f304e34001db98bf10cea96
MD5 43b3345b923dd483162b1bfafaf185bc
BLAKE2b-256 59be0cf4e175b71d5f2f881d0dbf13bf4131b36faa5e8977d4569c6319b0928c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e8d60bdc123af3c36568472b119b52521c0369e7865f59a61dd48f2153ce6cb0
MD5 fef7d8f3a11e09aada24139d40bb4e30
BLAKE2b-256 79d314f3131566fb39246ac416e6944a794010d6b0ec7f2169ae1687009ade9f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 18f5c53d96c166c67b9c1c9c6bdb39190b097ea0fba3f281431ad4b6bcdd847a
MD5 44bc160f3ada453572cb5f50d1c2c7c7
BLAKE2b-256 d113222017bd0fe0b7b2311bd1afd7cb9c9d2700fea0240dec580c568ade67db

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 228bcfc15f5d610701a2c2351a9476e4104f6f2e0af66837e2eedd0aca988094
MD5 5d327e5b829a66410a38199eed9613e3
BLAKE2b-256 6189eb01334b6ad97b172210898938aee07c05bb195ee9f12e0d059f9a1132dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c486f81d28cd0287c4072d424db562c29777be533f8c0b9e4ad1d35e9a624608
MD5 3115b9f7b68662ef5076592fcbc19d81
BLAKE2b-256 2b85dc4199dea157d8ac0ea21448b9813c2c8b1830a906250470cc6ad31e9875

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3db384f05aa936a3d092783d5b6fcbe519b4f5773a6582414cf464d30e60208
MD5 06a1095dee8ef0876e7f435f418b4cde
BLAKE2b-256 420e948145706a80960c4655e42724c1419530074c7c29f94021a704333f4c90

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 583b49844752f9ade1b91bd1b679383b21de865b58dad3050eaad9b98106bd17
MD5 0211abba149a20c7d24a07948552ccca
BLAKE2b-256 2f8637a46f97d6b8f391d634cf95252198dbb16b8b009a30f246560a42410ca1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 063f1a153ead0fe13df29a87b874461ad04806edb0e41c803e18cbba1e098ff3
MD5 ab576ef8909bfaea08be879c49718b79
BLAKE2b-256 d5e1ad5ee4f478991682cc6cb67e64653789edb4d9bbfc9d71488c2790ebb60e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a328eaab0c072982619e883e7da3de2bf7d600a3c6139418a219bd6b57afe13
MD5 b8ad5127b31002c6b7db462f4f7e93e9
BLAKE2b-256 4ff384b224bb1784b3dcd26adb9ced97e630e447b1e92cf62cab368f2eeddbd8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8fd21d3a1761a4f10e63130cc223ecac78a90ec6d57e98cc0cb00d7a1f707afc
MD5 e9e1ec8cd3ee38678ac45800015b03c8
BLAKE2b-256 cbbbfdcc028844139c0a28347b89c7ffaa2ee262b8ddf752e1015a26287997f2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 4bb4ab430824e4549620f71e749406862937e71643e6ff246f4772db56f0e0dc
MD5 fb3e01bec644a553265b5e2e11a483b6
BLAKE2b-256 335d8c085f32ec8694ea4818787733cdea39ba5f51a16739e8b652bc19533191

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61b1f42d48cbf4a820c03a61234fb8934776d680f3c205d4c2a45239d9d94fac
MD5 983352f2afe4aa3ac6a4a0c12d2641f5
BLAKE2b-256 06a95fac83a8644ed91a5a90c33989e1a7c3dba6301af46bf3a05f1c097d7b33

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.8-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 43c1262a739eca849f126cda374a1b4823095a5d43fa00c8f566bd13a7ffd9b7
MD5 d89509f4453d8322ee7ce1b7ac8dce0e
BLAKE2b-256 8eeba6597688df0c4146cace87699d4f06701dd27db6cd244e3a431fad2f4726

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