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

Optionally, you can also install Pillow and numpy

pip install Pillow numpy

Example usage

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

from apngasm_python.apngasm 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_python 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), 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

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 .

To cross-compile, please set environment variables:

# Choose only one

# On Windows (cmd, not PowerShell)
set APNGASM_COMPILE_TARGET=x86_64
set APNGASM_COMPILE_TARGET=x86
set APNGASM_COMPILE_TARGET=armv8

# On *nix
export APNGASM_COMPILE_TARGET=x64
export APNGASM_COMPILE_TARGET=x86
export APNGASM_COMPILE_TARGET=armv8
export APNGASM_COMPILE_TARGET=ppc64le
export APNGASM_COMPILE_TARGET=s390x

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

Uploaded Source

Built Distributions

apngasm_python-1.2.2-pp310-pypy310_pp73-win_amd64.whl (534.2 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (467.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (489.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (447.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (420.4 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.2.2-pp39-pypy39_pp73-win_amd64.whl (534.3 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (467.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (489.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (447.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (420.3 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.2.2-pp38-pypy38_pp73-win_amd64.whl (532.9 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (487.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (418.7 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.2.2-cp312-abi3-win_arm64.whl (479.8 kB view details)

Uploaded CPython 3.12+ Windows ARM64

apngasm_python-1.2.2-cp312-abi3-win_amd64.whl (534.8 kB view details)

Uploaded CPython 3.12+ Windows x86-64

apngasm_python-1.2.2-cp312-abi3-win32.whl (468.9 kB view details)

Uploaded CPython 3.12+ Windows x86

apngasm_python-1.2.2-cp312-abi3-musllinux_1_1_x86_64.whl (599.6 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ x86-64

apngasm_python-1.2.2-cp312-abi3-musllinux_1_1_s390x.whl (584.8 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ s390x

apngasm_python-1.2.2-cp312-abi3-musllinux_1_1_ppc64le.whl (701.7 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.2-cp312-abi3-musllinux_1_1_i686.whl (609.9 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ i686

apngasm_python-1.2.2-cp312-abi3-musllinux_1_1_aarch64.whl (590.0 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ ARM64

apngasm_python-1.2.2-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466.6 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.2-cp312-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (435.1 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ s390x

apngasm_python-1.2.2-cp312-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (546.8 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ ppc64le

apngasm_python-1.2.2-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (488.4 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ i686

apngasm_python-1.2.2-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (446.4 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.2-cp312-abi3-macosx_11_0_universal2.whl (766.9 kB view details)

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

apngasm_python-1.2.2-cp312-abi3-macosx_11_0_arm64.whl (377.7 kB view details)

Uploaded CPython 3.12+ macOS 11.0+ ARM64

apngasm_python-1.2.2-cp312-abi3-macosx_10_15_x86_64.whl (419.0 kB view details)

Uploaded CPython 3.12+ macOS 10.15+ x86-64

apngasm_python-1.2.2-cp311-cp311-win_arm64.whl (482.3 kB view details)

Uploaded CPython 3.11 Windows ARM64

apngasm_python-1.2.2-cp311-cp311-win_amd64.whl (536.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

apngasm_python-1.2.2-cp311-cp311-win32.whl (470.4 kB view details)

Uploaded CPython 3.11 Windows x86

apngasm_python-1.2.2-cp311-cp311-musllinux_1_1_x86_64.whl (603.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

apngasm_python-1.2.2-cp311-cp311-musllinux_1_1_s390x.whl (587.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

apngasm_python-1.2.2-cp311-cp311-musllinux_1_1_ppc64le.whl (706.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.2-cp311-cp311-musllinux_1_1_i686.whl (613.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

apngasm_python-1.2.2-cp311-cp311-musllinux_1_1_aarch64.whl (593.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

apngasm_python-1.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (470.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (438.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

apngasm_python-1.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (551.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (492.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

apngasm_python-1.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (449.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.2-cp311-cp311-macosx_11_0_universal2.whl (772.9 kB view details)

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

apngasm_python-1.2.2-cp311-cp311-macosx_11_0_arm64.whl (380.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

apngasm_python-1.2.2-cp311-cp311-macosx_10_15_x86_64.whl (422.5 kB view details)

Uploaded CPython 3.11 macOS 10.15+ x86-64

apngasm_python-1.2.2-cp310-cp310-win_arm64.whl (482.7 kB view details)

Uploaded CPython 3.10 Windows ARM64

apngasm_python-1.2.2-cp310-cp310-win_amd64.whl (537.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

apngasm_python-1.2.2-cp310-cp310-win32.whl (470.9 kB view details)

Uploaded CPython 3.10 Windows x86

apngasm_python-1.2.2-cp310-cp310-musllinux_1_1_x86_64.whl (603.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

apngasm_python-1.2.2-cp310-cp310-musllinux_1_1_s390x.whl (588.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

apngasm_python-1.2.2-cp310-cp310-musllinux_1_1_ppc64le.whl (707.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.2-cp310-cp310-musllinux_1_1_i686.whl (613.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

apngasm_python-1.2.2-cp310-cp310-musllinux_1_1_aarch64.whl (593.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

apngasm_python-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (470.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (438.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

apngasm_python-1.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (551.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (492.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

apngasm_python-1.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (449.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.2-cp310-cp310-macosx_11_0_universal2.whl (773.3 kB view details)

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

apngasm_python-1.2.2-cp310-cp310-macosx_11_0_arm64.whl (380.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

apngasm_python-1.2.2-cp310-cp310-macosx_10_15_x86_64.whl (422.7 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

apngasm_python-1.2.2-cp39-cp39-win_arm64.whl (483.0 kB view details)

Uploaded CPython 3.9 Windows ARM64

apngasm_python-1.2.2-cp39-cp39-win_amd64.whl (537.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

apngasm_python-1.2.2-cp39-cp39-win32.whl (471.3 kB view details)

Uploaded CPython 3.9 Windows x86

apngasm_python-1.2.2-cp39-cp39-musllinux_1_1_x86_64.whl (603.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

apngasm_python-1.2.2-cp39-cp39-musllinux_1_1_s390x.whl (588.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

apngasm_python-1.2.2-cp39-cp39-musllinux_1_1_ppc64le.whl (707.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.2-cp39-cp39-musllinux_1_1_i686.whl (613.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

apngasm_python-1.2.2-cp39-cp39-musllinux_1_1_aarch64.whl (593.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

apngasm_python-1.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (470.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (438.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

apngasm_python-1.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (551.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (492.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

apngasm_python-1.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (449.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.2-cp39-cp39-macosx_11_0_universal2.whl (773.5 kB view details)

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

apngasm_python-1.2.2-cp39-cp39-macosx_11_0_arm64.whl (380.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

apngasm_python-1.2.2-cp39-cp39-macosx_10_15_x86_64.whl (422.8 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

apngasm_python-1.2.2-cp38-cp38-win_amd64.whl (537.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

apngasm_python-1.2.2-cp38-cp38-win32.whl (471.2 kB view details)

Uploaded CPython 3.8 Windows x86

apngasm_python-1.2.2-cp38-cp38-musllinux_1_1_x86_64.whl (603.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

apngasm_python-1.2.2-cp38-cp38-musllinux_1_1_s390x.whl (588.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

apngasm_python-1.2.2-cp38-cp38-musllinux_1_1_ppc64le.whl (707.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.2-cp38-cp38-musllinux_1_1_i686.whl (613.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

apngasm_python-1.2.2-cp38-cp38-musllinux_1_1_aarch64.whl (593.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

apngasm_python-1.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (470.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (438.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

apngasm_python-1.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (551.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (492.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

apngasm_python-1.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (449.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.2-cp38-cp38-macosx_11_0_universal2.whl (773.0 kB view details)

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

apngasm_python-1.2.2-cp38-cp38-macosx_11_0_arm64.whl (380.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

apngasm_python-1.2.2-cp38-cp38-macosx_10_15_x86_64.whl (422.6 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: apngasm_python-1.2.2.tar.gz
  • Upload date:
  • Size: 663.6 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.2.2.tar.gz
Algorithm Hash digest
SHA256 ae7c1e9f6cd184c9a34be9b1716ab8ecce93944b076da3fd8738dbe6262ca4ed
MD5 7eaee8332d60e476a1f453698251d8a8
BLAKE2b-256 998646f479cad1e3a75179a4f794268a08f2cbc5e58bd28aaaec0cbf69255227

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3aca6b73c4b1bb55973dc6956bb9143e3058fcd132cd8d8c6c60789e63e2c9f4
MD5 96431522a8379b0e15dfe98ef3d4b436
BLAKE2b-256 301333441b7ef87b986a105264e092e2145a3fdfc269758b5a2a711de073b659

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63bc3930e1664169314a0742a4685927db451f181d325781ed3df952d3a358cb
MD5 3a844e315e60c8824a8f44d394095148
BLAKE2b-256 b32e7070afe3a2b87a00abe6c59c3905895ebcbdfe195f3c8c5e869d2d3181e3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 be497abdca1cf7ba40603cb9408769e414dceefa27e00687994f1c6217f5210d
MD5 6463891f7f5daaf10665c7a06bda9f67
BLAKE2b-256 0f468ef877cc48006bd4570fe13df56c84fc6d71aec9143281fecdf764208836

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8db40a94b7279643ef0ce9b9f460ed04545e4dbd99f37f13b7fcff88adb9ed08
MD5 996e46716dea766fd18bdbe06660501d
BLAKE2b-256 f9dd0e1ee1f16356f71f647e755e7801925b019dd6df6d712358c4af0eb89aa8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2fb1b01d0682d1c6282a48d7763ad87845c5eba7544853222ca8da09ba19b494
MD5 d4da2375d521f55ed215bb1136daeda5
BLAKE2b-256 8314abb0d19e765009fbd353a8d56ad84713a084745eda23ef1185c5f5f72f28

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 47412bfed7adc4d2c0b09bb28dd76369bbadcd785ae54204db8f3780863e29b8
MD5 01b381befec6b7be293bb4b2f40b08ea
BLAKE2b-256 35ae7f7e9ba1df68ea268a8508d356ed7cb7f449bba9bb8b7fbe03b2d86e5df0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26a71b195c62a6007ae66621ade660f040329174a58e6b1aa799afe62f67aad4
MD5 4e47dec6e96dbe1572c67e275a6418f1
BLAKE2b-256 481753d618e2ac4042646119d63da6cc4c9a89ab9aa5bbe31c6504d003b302dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a7c0154de3b455b2efdee8446c140065fcd5118f1404c42e335a8b710c7cffa3
MD5 8a834288c35c6cbc8f20fb8467a51a09
BLAKE2b-256 6aaf76a899fad383b6ce413e82072ac0e027abb4aa3dfbaaf47686f5464228d5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efd641c958cd62e769dc341df044eef3e7fe5bc0aa9ec38b0b3aea400f12d252
MD5 c9adb7542dd2f1013e7b24b8694b9c4b
BLAKE2b-256 918e38988f0cdd7651a65d3cc053d22f1b876b9a864ed7c4436ce3a73d46da48

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ee99b2d65c645fd5bb925c7039f48d3731f909ab7ebb9160df8d4ce633edaf0c
MD5 40afedd14debca951c68d870411b9c78
BLAKE2b-256 cf7d00fd804d91dcdad2ffcf34b1690210aa31e2c93fdeeac6ba14b2cb38d378

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b5c99eb4f4a798b33fbdb8fca5bb68fe082f8e06479471796e5af9bc8c1eba14
MD5 28d2fd6cd1136f9bae0b7ab27f2c04ce
BLAKE2b-256 df38c252e23d48232ccc639e8272a1411abac58b8e0dcf8f3cf7c436c85bb605

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78ac316f2553f3cb28adcf3e575be62a5f396325772290394baa965aa1c52344
MD5 9408953f2fa8f588cad39e513c518e07
BLAKE2b-256 5086ae30521ca2f40c888e46680b3c0a8d4794d4fd15926e22775c0e4683d48b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 71514d6fc21f4d441093b26fad9a6a93dbe7cb6412e7c29469aee7a655aad417
MD5 bf3085b0ba4869f92b14e46a6d4aca1e
BLAKE2b-256 09b7cdf0e71dbe8f588275633385bb01b58eeec195d6d11a98dbe5d7e7c2b284

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24fcf328bfd93fd565f6317a240119bbba5e83cee590d9cdb8f646509772f953
MD5 9cd45165552e80fa6addb63b3de5b1aa
BLAKE2b-256 0bef4adade4e252c7ca6b0dcc06e52ff1c44c7268cdab086582e8f1acc2d38ab

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 615c47720e7ede38da988d9d675d0eab0c088fcd3bf3650120690980a4105e6f
MD5 5db02918ad78825d2c98debf47e43c18
BLAKE2b-256 5ef1e01bfc038dbe5cc6f485163c8f04070837b5b19dc45a21fd819652ca76c5

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.2-cp312-abi3-win_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp312-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 4a8b36fa747521c2819ee18cc7f56c375ebc54e92ce646af5ab2b64ccbc43b68
MD5 2d31caea7022eed0b636e3fcc4f2911f
BLAKE2b-256 9b282771d7c2161efaf3172998ee9621d8276fe53e2a1948551820a287fcf70d

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.2-cp312-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 ebdda091d84b282eb2a5f3bb91c7cc5c94d7d682288895d08621cc54ce859ceb
MD5 3c3592335ef44e5e249f11f2d6832131
BLAKE2b-256 5bec423a4ab433d76ab05b655e7fbf0c174505384d6c4f3f9310824731bf5018

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.2-cp312-abi3-win32.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp312-abi3-win32.whl
Algorithm Hash digest
SHA256 2dc9578af95f88182b9f1ccc3a4357a869e3021005b701f3188688fd5805b301
MD5 14f68de3de8e0bf404d553b56d5bdc0e
BLAKE2b-256 39ed364f833976533e792c88cc364200a8200060cce7279e74cb70919e565b4d

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.2-cp312-abi3-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp312-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 54076e44d6890f5c275c1a9e95853dd94762108fa4bced0bb8899f4f2e00c0fb
MD5 80b6a9e69c9472c459beb1c73d068278
BLAKE2b-256 c389083bf7b9555a6e06b353d398ca4aefacb09b7091fc3400184d7953779ebb

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.2-cp312-abi3-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp312-abi3-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 dce7d1227599df14548c7e6d5db3bc2cfe2550944f5ed63d235cef918ca09fe5
MD5 089befa8ee4a9d151446f826171b3bfc
BLAKE2b-256 9cc995135008c9aeacf8a0b03096dde757ae80ea00f6ac8dc6581da636fafe63

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.2-cp312-abi3-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp312-abi3-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 92c0c16c74c399b482923682e91d14e5edd7ccb38830d179af27ce7890b1fca5
MD5 dff47c35968c792427e992c3cb8e207f
BLAKE2b-256 d54b52568a756ca1b1b0390026bcc5fa4b65636bb1f7fcebd2cca0c8075bf15f

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.2-cp312-abi3-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp312-abi3-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8160427229ec81c123bebf43fef2c3b0df7a190a9e93c3b7c5a8fbb26461993d
MD5 077bdeaee7f26e15d9566392e17808c0
BLAKE2b-256 cf7641a6314466266465191323f5790a01e2cefd41be844dfceb81b68062e81b

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.2-cp312-abi3-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp312-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1e34992c41aff63c34a159019b16c331844dc71395f4482b420780770326f947
MD5 08175db658e4a3bedd796053bcee4977
BLAKE2b-256 dadc519cd9470a7c625399581a87727b721c32789e90776988054ad0c0ca4522

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.2-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8e72db387a4b05076952fe461b9e8809b123d2620d27cce0707bdfa11d079f1
MD5 953ca9d86f3f860e8f57162b48d7257d
BLAKE2b-256 afdc32dccd7369af53499534a6b98e7cef3fc0a46aec1d878beb597fc4445e21

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.2-cp312-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp312-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e5f6d83434b1678bcea26662bd651081d347cdf6f7c053a93ebf0e9ebaebb8f
MD5 5e225ba83fdbaa38f8dbc1c95e43dcf4
BLAKE2b-256 263457babc3f31f004da081b8fd14eea8031eca49c44b98b83e364cc09e6ab3e

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.2-cp312-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp312-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 99a67a1393d1c904c954113ef141246f9caaff2351f533cda1c055f8dc93edef
MD5 bcdb1ff9bdbd2bc2b4a637097e817a50
BLAKE2b-256 6fb1ab783e0e069b16bec3acde7007464004e563cee0704b72861fd292c9baf1

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.2-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c90320e2edb5cf5eeb7bded924b864080e5763010b28e072d3eda00b312441a
MD5 9999ea3452cbf107c1cb85b73ea48b9e
BLAKE2b-256 e891060ba0bd8d76879aaf293b6f5b6992183cc5bad8a00be33d45873e701d37

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.2-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43812b7794a2ee76e6294dd0d94ec1baafc9057e6b9fc0bf04dd8318c6ec1713
MD5 37a01a732b82e45544527dcca9e02853
BLAKE2b-256 3f6ae34df7474c20684baf6b43cc4104aadeefbd75d7219d0cedb2599e307e27

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.2-cp312-abi3-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp312-abi3-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 78abb7719eb7eebbb8e15067eb6ad6baed30d569cc99f1435766676a90db2c74
MD5 01bd7a66f71d5757ef14064111f255c4
BLAKE2b-256 ed48212918a5a0167ec194419da8eb24e7f3bca555b45d279ec1bad53d9068bc

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.2-cp312-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f47f36486cd29a8584ca6a350ebf89233ba75a9665c27abb611ea99b9e6fb7e9
MD5 bdeaa6d7bcff86859b5ae68706c768fd
BLAKE2b-256 be79dae556ec36fc43adb3bb0261b73bff170d1763be55a0bc75c797d30b7c72

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.2-cp312-abi3-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp312-abi3-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fe821dd2d7af2e5e9374defc07a7216524ad511ce92b78de1c79590e6f076a6a
MD5 933fbf2fb222328cd4fdea89ef580081
BLAKE2b-256 ef02bfe1998cf791ecb54723d5fac9c30f6b272c7b3f2b3348ac5c7f2fa655cc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8176aafcf2d9cb9b090d1e67f4ad45110d827059514fa4c939c2d36a72cbdc65
MD5 4095744ef6f98715f0604c6d5c5a9211
BLAKE2b-256 76947904840c9df1a4d96cca0980994a4b9de7b49d869ee218ae987d614fb7c2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7b8ae04afc37a469b6393fff518376fe60d6a1733f11813650d4f90bdfb5f85c
MD5 2a95b8a03c2a3d7a7b4ce1bd992b487a
BLAKE2b-256 f13ae336645e23324911f8675a14d1de159fe3ca3976011d35ce9dc5265de23d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7d5f4835e0b3de1af9960b5db2be88816f72dc1abff0a4ac7a660d62c0f69920
MD5 1c9c0e87d21a664609e27513ad62776c
BLAKE2b-256 d403113227748003d49d768b7da07095734c2d310850bac1a92b08a0c8f6ae4e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 56514fd4e50359daa92c2f3083cf3b68de2faa83e6b22541b37e73364b52b12e
MD5 06c6d7d9cb33a88a0dbed5ed3b95d3ae
BLAKE2b-256 5a3be83f7787dd0e923e913da84a32af318da1ad830970116e6db95b70416331

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 2bf6ada14c5466fa65d22135097ecb26ce03cd9ed94d21c091be4cfc8dce3ad9
MD5 067c544fb099b33d8945bc0a0bba4413
BLAKE2b-256 a2d97cb4cdca08019ce92d7b47c42504dc31386147eed67e7ed505d64a11ce1f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 103a726bb596ca47ac98bb665b2fbce375be196ff46abe0bc53962c1b1068dc9
MD5 829bc1e946dcb569a326d889d27a867f
BLAKE2b-256 838259b1ff9691968280590273cd5a642e35dcd8859b70005ce787e7561c122d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d82aa21541bba7f1bd5ffdc8c6eef767cfd96e89ce92bc8c1a38a55c25eb1e2a
MD5 aa1617b1fed726acf16049e53235cf06
BLAKE2b-256 c724bc4928cdd87c2cd0651ecde7e37487f987c94a9c193782fd4769a71cf764

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5a8867cb9c020408d1a63f91d8dbfa42103793c010ff8fdd2cacdee02f4c0c15
MD5 39ae11ca4012cd53c4bc92e251cef55d
BLAKE2b-256 1fe058406c11e9c3509aaaf644419aba9219f4a7484e0659280aa8dc8c1504bb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ed87dc592a15f6db9551399fca7997fbacd7a5649e5338db59519b46a8c8cd5
MD5 8cd7587f3308cd510e11e42bc2df01b6
BLAKE2b-256 62a0067999be933d3f45629640abb5e3122df99cc004a22547f933f49c792226

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 81ac1e01078987dd918d545bfc326d24f39ccf0b227ffd0b3b875bb432f3150b
MD5 d327e907d6d5c6b9c3d41bba96dc6af1
BLAKE2b-256 921ab07db4ef3dcc243fd723a2a93188b14a848cc3e3a3771d602d3c3ef2ede8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eea186c25a131331201d8968cd9212253901908902f5b4879d161e1196943bc0
MD5 60d2be034f4840182b3cfe68a30ac134
BLAKE2b-256 1ed0494b89c5cae0827a1b898187b0f360f50746ba4ad14f5f853e0afede33a6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 714ab43d7b7f51172f7f3a1d6c766226132658af4be1218ed71bbbb626fab8d4
MD5 d05d2caca68b3fe27ae10d255ddbfeb8
BLAKE2b-256 a99c525b99dcb6d25f666775d8db6ecb1aabee269c22805c33e4895d6e553218

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a45545d414c5f245f1fd7ca6e03f21a28b9383cb25a7d59076df1025c757731b
MD5 9f357f36e62df0dbb68e05d61186d6b5
BLAKE2b-256 c49fbbaaf7e8f0b24dcd894d0885045349581539a361b694fe110820a9b288fe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 8b5e1363d77c1f6ac030e84da500f131de4ca1660c0bdba2aa4e8b1c2f3abb9e
MD5 9c7e67e5a9e2ac5741e4b198f2786482
BLAKE2b-256 a9e9de4b4cb574a27b4689edcf47b070b91aa7356d88e91c49f8b8e35e18598f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1884f61aebdf63c76cdd14a7f415316430061225d3b573a0ec54c0242e3c562
MD5 2396f9864a8e7f25576cadf7a5ecafdd
BLAKE2b-256 657f82bdfb5bdcb34781bab4aa512af617921f07efa627119a53c7f7aa410602

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6fc925cd62d11385ffca432abd25c3eb7ecc543edd57c0879174ed05fb3312e7
MD5 2142c1f62289d75e109f875acb49e16e
BLAKE2b-256 994858bc9899f6d03c0f54a16391d3cfccf358cd574b50e3c1835f5b6fbc1e4c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 8a4e7989540624acd07290b952dac0ccb4c6fabd7823172b01d27b20beea73b6
MD5 3cc9bec6adbec3995d7d1a101ea3f975
BLAKE2b-256 113abe348801c5cc209c51dc7cddb48cad02e1313465af11178716d195d408ac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7049ce2fc886e05b828f22b9b643179dac8ac78b6efb02bbd897b7a6a54a33a5
MD5 9965c487cc188a72ad82b9c8b4ba70e7
BLAKE2b-256 d0a0de9449d8f49f0e673f49ec28d834448e347ff1d5f43e93306ea42e3f356d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 61d622d6323e41576c94c5982168b3acc9f1d77e5f7f73c4caffcf7901264c95
MD5 b715eedc4b9910aa9bcaa420abb51a49
BLAKE2b-256 75a7d91c3819b6d59cde9440bcbc1ab8c8d0aabd0a386d2c08c2efedb46b409e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bec785f10b2ec730c14a46150e9dd5eb7189e6f68329f67ff1e29da491454484
MD5 7a340d5a2284d89dd5a3ac0fd9241071
BLAKE2b-256 cb3ae81ba79897cd7b31f22e5b55d7f4bc4ba488b0a0f72a44ff6edd81875467

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 ce39edb55469b3a743c219943b3cfeb66371eb38ca26849247cdbb2cf07e5e01
MD5 a1234a1d248128498f58c1f7539735e0
BLAKE2b-256 de69910e6cb5663ef9fee47fbd3c91e89ee1c581dcdffa3f440a01e9db331cd3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 bdeec3cce4bac14456b876af1c026ad4abf4dc5ba65c12b9fe31f243e0efa1bc
MD5 b92b9ff623323ccc6229e29fdd4287ad
BLAKE2b-256 b1734160964d770f9f5510b2df3bca3e6146098356ff48efd1bcf39868cb4962

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e8c8b5eaf526d3069dab490aaa967dffca3183684dd491074fac5b48b618f5b3
MD5 312fba5b6b704f5161e8f0a3da530d02
BLAKE2b-256 eec561b77e915eb389f96d2f4f85cbb32f347f6f1f41712b1be15901e4f74369

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2b7436a44bd438c72e990ed2758d902e6b2bee3ecfe3bf20d757d001f697b8ce
MD5 5b6973821f723c10b8f39c51aaf30282
BLAKE2b-256 feb35327b6510f5c2b38dcb09a174b2f58182811d27e2baea3276d27ec624ac2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ca0f698c4f7db59f36e0717ee210b69db9fab85116a2138b667456cce9c4eb8
MD5 82c92f64ecb19ccb74d553ec0e2d51a8
BLAKE2b-256 9acc3fb794845a4eced16212971783b288147a9d650458009e09a46c471dfd19

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1205d441f87be0db6dfc42d73b04eae26198ef0a5b34ff94abf142b2f1d094c5
MD5 87c8c50f1d85d6522dc1df7a9ec05f23
BLAKE2b-256 53a8d63984829d0fa9d620cd9dbc7ccd109bdde0afd2ed562b79223f64b8f274

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b16425a7610f8cd48d46456e39c6fed17683671716dfab9abc0afd08fcd171eb
MD5 5f5df7cf7c966ebd57e97c3c2c00fd2d
BLAKE2b-256 7e9c78e2c30224dc45d5a0b50e8f8a28634403d5c976611f29b5e6443cd43e75

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a4de0aa9e451cedc02e081c172816714514bc2b38d5df2a3f0f2b59ecaa8845
MD5 ab4c47adc5fc2265c1fca8bfa08e2544
BLAKE2b-256 4182848dc0cfece00037df45b1a2960cf9ad76fd5395bae93bfecf261eabf954

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2e9fb42542e20623f448077d9e96d85f8fbfc01a183b6eb8a21af0a72f7335b
MD5 829a9d83d34d63b4786ad43b2cea9fda
BLAKE2b-256 36dd0e981d6df27263cf7b91a5ebe2e382f1bc7361fd19d472ad2aed29aceebe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 98f1f7daed35cf2e02371dd472a384209990466c85308b6f55270e12a0b2ce22
MD5 f14f0256756a463ba0da03036ab97a55
BLAKE2b-256 bacfd541df47d90272b06c5961b2b9bf03b3ea51c00bb713059513c3e028c7b8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63cb0f3b02fb29dada372d5a8ecc51cf90db9f2ec24bdb9fd06c17bd3eea8e1f
MD5 8afd376468679b15c201afb8f22910a9
BLAKE2b-256 8ebc2605e541ba909e426eb46d1f72ee3a03aeb46d045653e2195cfbf94bacdd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c95a205f45d993c9d7ef98840fa68f26ef70590abb33b8aa89cd197614ae9382
MD5 84a60b07164dfc7f3426157299c709e7
BLAKE2b-256 800a8f41d52016fa172d0a5580481b3f3f9688ed85ab8a814c1765ee65a87957

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 702775141264b12fc1c85d1ebb410c522304dec1be543879a15a88d1355d81f6
MD5 30fdd69b1cc0f82612280aa702b42e65
BLAKE2b-256 f941e7d46726a3829e35578102ecca52e7702628cf7fbc3970beb82697e570a2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 09430939e4e3f2365cbd3de232793fe01dd9782fa4febab1d72639ee4f69ed01
MD5 f3aefeef770bf0388dfe80a15eed9c88
BLAKE2b-256 f7e3dd4b961b017f03b1b4cbad897ea3281b2fb378d95194e6f1ef71e7319bfd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3dc25836e16d558d0f30ee71f201b0b83882fa54f7e0f8eb3b9f160177085c61
MD5 8720960c232925ccc7e8b5b114f0cce8
BLAKE2b-256 a410a4bdc5646dea843ba11fd2a224972e762c12fa900f00ee8e94d9fc119508

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3941a054f2622323a746e7fc0fac42f10a8593673e31fd916a85a81b6d31b604
MD5 5f0aefe39d0e9ee7b693b6bad55ceab1
BLAKE2b-256 017705251d705bca2c59b427ebf55b5034cb60e217970e65e4f712899f2087a4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 bc3a746742ec84c673a9c1e8d31460fcae38f95d29babd825f03d92fda01cff0
MD5 551e83d145ca58f1b5e6ef075a6af364
BLAKE2b-256 2eb1d992d3ac3771bfb8b2786ce12023e87f261beb4e47e077d3aa9a7f2bac4b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 6cc407b981a66258cd8f93042dd080277f09de6b5ff66fb0e81db58548f36eb3
MD5 b0142d1d1d5e70025ba94d5c05d098ba
BLAKE2b-256 1941ecb6fa2cd320e528ce26dc8d26e60157ef5efb973a46bf806b992a3f4215

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 62d1e903720acc4e41b1e8fdfe4e5af75afd4fb92a312e557b174cc579270fa6
MD5 a2ee956fefb56368d3404ff2b27c1f18
BLAKE2b-256 00b610565b1f4d8c6d5560458d42a6254f08a3e4a3c99b1eb1a04072dd8eacdb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 61f3104b11ff31eb3320b316fd0db9de7d4dc0ceb08b15e3533243bdf276bcf8
MD5 d673b40c3cf74915c8a7bdcf22e77adf
BLAKE2b-256 1748183fd5755eea06a7a42d3126207071bc5ba15bd41866464d12c069371b6f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd976e7d716699d7a64c098f7ac6659644d6ded75672ed77175b0d4b175ab04b
MD5 46efcf424c5881fe6e1434b7ecf99307
BLAKE2b-256 1e5b2a942ff55143d5d7212edeeb83b04134f75602dbe0e95542bd8896909963

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 350e9c60fbddda377b31ebc891a9fffb5057155421318f78615648a780300183
MD5 112ef9f89028eb88108e7ac55d7f7de6
BLAKE2b-256 38c3a6785338a500b94d27750b51fe005bdd3539c0f88d54b5386f10a1db99a1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 697d2ce3879ffe15bfcf3ad38ef793562b497f247edff6992075f029182a9559
MD5 f17770c051657fd7a5d8a38d460a28f6
BLAKE2b-256 9927e7fffc59b9942ce5cd9aa972012d0d4cc15fd7286809c916a3a804458c26

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e4b3e6d70362399820971a04edb964eaf28969714043c992ceef0c7745c2c507
MD5 343e6f42f9d1f70863200a29db83dc0d
BLAKE2b-256 cd0336a8b2bc75c12b40048d940a42cda4a4a3a4ddb961412cb909773978df3d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7050be1b4907e30624fb2decaf327c8506f32b52c1ad5640ee93206bb6927b1c
MD5 d81524e7d951235b9b0c43d071d01db1
BLAKE2b-256 bfce8d5eea20b3d7693f8434c71c0bb9bbb909263438dffa4a61cb785d0a8ff7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 dbf318e37d20754bb393d6f45abd5745107d7cc04605aa9f6b1ad0e888f39b6a
MD5 a71e7ebbe8995062392609c7733212ac
BLAKE2b-256 cc642370161362160ac5b5bb91e9d6a167f3b144f6cbcd13f2f109b779f0502d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70b5056a6a254b80d6c3a9e4edde49203edd9cb619e7b955451a673fa7f84ba2
MD5 24c6218b07d91f8301e479c229fd588e
BLAKE2b-256 50bfa38882d7abab45071e1272d1963d05ade118e1714d39fea87c0dbcbfb29b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ca5ac39082216b5747dcdc67357e48e2430c654222236438f39ed2eebb0ca27b
MD5 d0292ea29ed3f7ef87a227608f93f61c
BLAKE2b-256 7fe394b4367f481fe89b11da1e404c1fb6349e67fddb4d1286f7f9d10a07edf3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 950277c48266269bcd1901ea7c93a91d4aaf6674dfc154a2311cb9c693814911
MD5 307c9b6fa4ef79ef4efe79abe52e7a1b
BLAKE2b-256 f403df7bd3cc712ef6f2a30f639a7554b4e6ad8e580a5682db1a2e3b7e680076

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 56da1bfa65d235984b922be245c2fb6c59e2832b0d4535d899fadba1263f8257
MD5 7552d302bc09a837cc510e74c69c707e
BLAKE2b-256 88a59068b7e4d4ceae74d9a9aca36cb71ba03d379885daf3040f2cad17fcdfc6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 41d2b0330f81642ce9a510e31be0491685a0e1d8e71b62e8ad6289fa4da1f847
MD5 05cad290304d81b01aeac3004de1eb3d
BLAKE2b-256 fbf82a64749ec08bc2f92f6ddbc8d420febe0a1628b740edd855355ffc2db98b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 ec24e8fa45ec83e4e0fdf5fd2c4d489d30db6580a0b173a0549f8f28c5a5b9a6
MD5 cb584398030ab39f41ca3491bf5d4af4
BLAKE2b-256 8591fe0515ec38d973b7668a614951bf9d4adc22ab40ac9cf0ce36af118982d6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 c53d3195bedb5d45ebbfbd65090c11e8113b8c9bd1c6ba1a7db33eee60067c86
MD5 d7285c0ffeba92133fa3933717ced707
BLAKE2b-256 98e699203c8963aca381f0cab7d1d56e29ac3e410a6002a87960a59d25d6ef88

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0b21570dc498a704488f861c293324d18d093c62ad7cf7604052233a98fcad08
MD5 54f0abb7d650cb34aa78c1bf5c06afe3
BLAKE2b-256 66a428a3a4d16881f26e785cbd8af451bccef375f11d98fb07b44d188626870b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b15330ed64cc3dab28798691fae8186e78be803c268138d5947bcf5495897776
MD5 16858f732c636f52618baa930fff9d20
BLAKE2b-256 bdbc2fcbe3052045f9d7adcddb82abe7f19f186a903ebccc8f54ffcb532f3fa7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d81a9097efa00155306e1cbc8f694d0f6078288f9ee164ebb5f920b9070e5d6
MD5 b2487982408af75fa4106f7eeabe8414
BLAKE2b-256 8d61107342cf4ba98dc22042df0bd6899a716b9cf67dacb789b7b03ed513bcba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd347fe55dc2207bd6a31a91804e2a2a0c6e6674d4356aecc8e1766d530b2201
MD5 66fe7467b551866e523314b092dec3ef
BLAKE2b-256 388d9c206a3ddd0b76fc045ce50366b288858e3c47e7dbd893a2c3cdc2bf0300

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1827d47b399305a56d6e16ea34d3b6938e9d63ef3d3cea4342e96e923859e14a
MD5 fe93044b3706344ac81bb33a5796d2cd
BLAKE2b-256 4b6a1616acd316fcecb7bf1b8fa44dafebec0664219326663f1ce2f74c1a87f8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ef865bfbdffd2a9101ae0a96b915c58e90e7191d414fd22cb8326012c813c0b
MD5 881272c2abe187d124328a4af5479bdc
BLAKE2b-256 57b763cfd04f3d63297e7cbc0b6f82cdc7bc5a751242c188a35bc051082cae7e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18a38f8d2bfb29f8bb7d21f3e55a127734f3ed0740de8aae783ffc885f684ce3
MD5 7eaed88074f70cad65524b43210efadb
BLAKE2b-256 62f29588f859facbd27796dc6ba3481665cfaa085c756f2ce1b2e8dc58d8a6d7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 913c73e1e410727d0ea6a5ee7b5ec1b36f4a4f084ca903d73d016870ab52bd74
MD5 9036efaf96faadb26eb660f08aa8c5c3
BLAKE2b-256 2c91c5998de79628a4aaa49397a07214d33a1977c92eeed93dab9ea81e96286b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e3662bac3b5ca00885c46a3aeb66d9d2a0bdc658eaffcd4643a770962d8431a
MD5 adab6daea18f42814505a19a096ffb0f
BLAKE2b-256 7d4d27891b8dd9623b3fc414e76311ee00132238c87287cbfe1092cd60ce0ce4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.2-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eac8b137102640dd4824cf87c47faadb10ed101bdc364225d9a3988bc195cdd9
MD5 eb9cfb13dabffd0ee4d8e64841829096
BLAKE2b-256 5f3f90fcf6bce4bb6361271305d00864389f38f9d77ff393f58d0ce0c7308b17

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