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

Uploaded Source

Built Distributions

apngasm_python-1.2.3-pp310-pypy310_pp73-win_amd64.whl (535.0 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (468.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (490.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.2.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (422.7 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.2.3-pp39-pypy39_pp73-win_amd64.whl (535.0 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (468.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (490.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (422.6 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.2.3-pp38-pypy38_pp73-win_amd64.whl (534.5 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.2.3-pp38-pypy38_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.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (489.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (447.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.3-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (421.8 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.2.3-cp312-abi3-win_arm64.whl (481.6 kB view details)

Uploaded CPython 3.12+ Windows ARM64

apngasm_python-1.2.3-cp312-abi3-win_amd64.whl (535.3 kB view details)

Uploaded CPython 3.12+ Windows x86-64

apngasm_python-1.2.3-cp312-abi3-win32.whl (470.3 kB view details)

Uploaded CPython 3.12+ Windows x86

apngasm_python-1.2.3-cp312-abi3-musllinux_1_1_x86_64.whl (600.7 kB view details)

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

apngasm_python-1.2.3-cp312-abi3-musllinux_1_1_s390x.whl (585.8 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ s390x

apngasm_python-1.2.3-cp312-abi3-musllinux_1_1_ppc64le.whl (702.9 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.3-cp312-abi3-musllinux_1_1_i686.whl (610.9 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ i686

apngasm_python-1.2.3-cp312-abi3-musllinux_1_1_aarch64.whl (591.0 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ ARM64

apngasm_python-1.2.3-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (467.4 kB view details)

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

apngasm_python-1.2.3-cp312-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (436.1 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ s390x

apngasm_python-1.2.3-cp312-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (546.9 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ ppc64le

apngasm_python-1.2.3-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (489.0 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ i686

apngasm_python-1.2.3-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (447.2 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.3-cp312-abi3-macosx_11_0_universal2.whl (771.2 kB view details)

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

apngasm_python-1.2.3-cp312-abi3-macosx_11_0_arm64.whl (380.0 kB view details)

Uploaded CPython 3.12+ macOS 11.0+ ARM64

apngasm_python-1.2.3-cp312-abi3-macosx_10_15_x86_64.whl (421.4 kB view details)

Uploaded CPython 3.12+ macOS 10.15+ x86-64

apngasm_python-1.2.3-cp311-cp311-win_arm64.whl (483.9 kB view details)

Uploaded CPython 3.11 Windows ARM64

apngasm_python-1.2.3-cp311-cp311-win_amd64.whl (537.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

apngasm_python-1.2.3-cp311-cp311-win32.whl (472.1 kB view details)

Uploaded CPython 3.11 Windows x86

apngasm_python-1.2.3-cp311-cp311-musllinux_1_1_x86_64.whl (604.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

apngasm_python-1.2.3-cp311-cp311-musllinux_1_1_s390x.whl (588.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

apngasm_python-1.2.3-cp311-cp311-musllinux_1_1_ppc64le.whl (708.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.3-cp311-cp311-musllinux_1_1_i686.whl (614.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

apngasm_python-1.2.3-cp311-cp311-musllinux_1_1_aarch64.whl (593.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

apngasm_python-1.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (470.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (439.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

apngasm_python-1.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (551.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (493.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

apngasm_python-1.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (450.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.3-cp311-cp311-macosx_11_0_universal2.whl (777.0 kB view details)

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

apngasm_python-1.2.3-cp311-cp311-macosx_11_0_arm64.whl (382.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

apngasm_python-1.2.3-cp311-cp311-macosx_10_15_x86_64.whl (424.9 kB view details)

Uploaded CPython 3.11 macOS 10.15+ x86-64

apngasm_python-1.2.3-cp310-cp310-win_arm64.whl (484.4 kB view details)

Uploaded CPython 3.10 Windows ARM64

apngasm_python-1.2.3-cp310-cp310-win_amd64.whl (537.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

apngasm_python-1.2.3-cp310-cp310-win32.whl (472.9 kB view details)

Uploaded CPython 3.10 Windows x86

apngasm_python-1.2.3-cp310-cp310-musllinux_1_1_x86_64.whl (604.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

apngasm_python-1.2.3-cp310-cp310-musllinux_1_1_s390x.whl (588.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

apngasm_python-1.2.3-cp310-cp310-musllinux_1_1_ppc64le.whl (708.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.3-cp310-cp310-musllinux_1_1_i686.whl (614.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

apngasm_python-1.2.3-cp310-cp310-musllinux_1_1_aarch64.whl (594.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

apngasm_python-1.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (470.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (439.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

apngasm_python-1.2.3-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.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (493.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

apngasm_python-1.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (450.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.3-cp310-cp310-macosx_11_0_universal2.whl (777.4 kB view details)

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

apngasm_python-1.2.3-cp310-cp310-macosx_11_0_arm64.whl (382.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

apngasm_python-1.2.3-cp310-cp310-macosx_10_15_x86_64.whl (425.1 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

apngasm_python-1.2.3-cp39-cp39-win_arm64.whl (484.6 kB view details)

Uploaded CPython 3.9 Windows ARM64

apngasm_python-1.2.3-cp39-cp39-win_amd64.whl (538.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

apngasm_python-1.2.3-cp39-cp39-win32.whl (473.1 kB view details)

Uploaded CPython 3.9 Windows x86

apngasm_python-1.2.3-cp39-cp39-musllinux_1_1_x86_64.whl (604.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

apngasm_python-1.2.3-cp39-cp39-musllinux_1_1_s390x.whl (588.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

apngasm_python-1.2.3-cp39-cp39-musllinux_1_1_ppc64le.whl (708.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.3-cp39-cp39-musllinux_1_1_i686.whl (614.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

apngasm_python-1.2.3-cp39-cp39-musllinux_1_1_aarch64.whl (594.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

apngasm_python-1.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (470.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (439.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

apngasm_python-1.2.3-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.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (493.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

apngasm_python-1.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (450.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.3-cp39-cp39-macosx_11_0_universal2.whl (777.7 kB view details)

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

apngasm_python-1.2.3-cp39-cp39-macosx_11_0_arm64.whl (382.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

apngasm_python-1.2.3-cp39-cp39-macosx_10_15_x86_64.whl (425.3 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

apngasm_python-1.2.3-cp38-cp38-win_amd64.whl (538.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

apngasm_python-1.2.3-cp38-cp38-win32.whl (473.0 kB view details)

Uploaded CPython 3.8 Windows x86

apngasm_python-1.2.3-cp38-cp38-musllinux_1_1_x86_64.whl (604.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

apngasm_python-1.2.3-cp38-cp38-musllinux_1_1_s390x.whl (588.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

apngasm_python-1.2.3-cp38-cp38-musllinux_1_1_ppc64le.whl (708.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.3-cp38-cp38-musllinux_1_1_i686.whl (614.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

apngasm_python-1.2.3-cp38-cp38-musllinux_1_1_aarch64.whl (594.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

apngasm_python-1.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (470.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (439.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

apngasm_python-1.2.3-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.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (493.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

apngasm_python-1.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (450.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.3-cp38-cp38-macosx_11_0_universal2.whl (777.1 kB view details)

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

apngasm_python-1.2.3-cp38-cp38-macosx_11_0_arm64.whl (382.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

apngasm_python-1.2.3-cp38-cp38-macosx_10_15_x86_64.whl (424.9 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: apngasm_python-1.2.3.tar.gz
  • Upload date:
  • Size: 663.8 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.3.tar.gz
Algorithm Hash digest
SHA256 7b523cc74bfad6c9477e35ea6f0e6c0551d6346a75c6b329f957aeececd62ddd
MD5 43e4f61f104f9d6b1df897edec24a781
BLAKE2b-256 2eb515f584de6d3a8477b46648aa99511e00c6d7823b6615394d4179455aebe6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 67a337b59e69e47ba62e7634ce47484602f232b5a85c20cb002d83a434a0fcb8
MD5 c619c8a871263a4e08885fe08096a86e
BLAKE2b-256 bd56ef4ef048e0e2287c5272e5d0c1fc7b6160acbb6b0ea08f0e23f8ba716daa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 664f96d88edf2f045b3ba2dd2eb96b4f0aafadf7542a756151aece53080c4fac
MD5 48c15fc9a3ab0188480fc90e8562af65
BLAKE2b-256 c4fcbccc547850779b1896b9fc875a8fd77cc057aa0d4666b978b666c8fbb782

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 67bc4883c4e663226bdfb7cc56e0fe493b79b076d3d2f714db344aeb565a1535
MD5 c7f09767d16edccaf65ed7c7fa34d04a
BLAKE2b-256 5e480ccd8c018bf0c473bac2467668e503b76398b4d229e44bffe8ba706105cd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 647d4596b686768d7095cd0f8cf8c6ebf121cda0f289c13c0b877f0dcf30e682
MD5 7d871a4ffe7c74ba63cdaa2d3b2e95e2
BLAKE2b-256 754270e93b52ef68f6b714b32f588f6573c5947e13ef40d3c943583b108b7f80

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dc9c69da972aba2ea579ae545b6b017984d46d95e2313007f649364d979bf5d2
MD5 5579d7bc460570f9924e95d22e961462
BLAKE2b-256 d91cb53ab23251fde8f9c04d567a7e97b4fec2bf710f69ab0b31e0bbae3a4a75

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8053cc0677343e4451c4f0d5fb778bb3e93bcbab9187fe49129bfabf81937288
MD5 3eeaf74e143aa9630e74ad29d2627bc7
BLAKE2b-256 3f950ae52daabf8dad810a268a0205a6a43483851abf660047d5102df831f290

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b143fe531e4a6e58c0e193a6a356bd4d06f7b78e45f9368ef384025bc64311b
MD5 c1b398a3c399cf2e435502e1418c3a86
BLAKE2b-256 ff49421e681fc1beb48014baa60ffb62398596bd8468676013846df743ea4904

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91fd9203729667b48ec558e29ca8a7e992f3ac2b88b1e3ec27a9dc1a814219fc
MD5 2c6d38f5d91f69104ac571aadde986be
BLAKE2b-256 6eb5a53cb7cadc7deda24140840a7c0e40e3b667eaf0a5fb1c80983af16a06c7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9711ec9527294b3c343730c1f9c1583f1b5f7e0df95a371119d841292f32a6c6
MD5 34bb0056770840941dcc81e0bd686cf9
BLAKE2b-256 5ef476dfc7cca8d0201c42bbb361b061cf66915f47b301ed7a621005d6fee4ca

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f6d21f35149b313b7d976d5e43f1376aa20fbef2cbfc772440ed414e56ad7bbd
MD5 28ca881b20ba571ed055da59171d9720
BLAKE2b-256 8723a5d7232c86edaf7a6a6dff70f2e08c6bb0e656328484d1dd8c046d8e3e36

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b5913edd81a297970cf282c5a26269602e00cf5a36044fa7e2b5d0635174c82d
MD5 2b2ee7a1946f68d698768990c39d473a
BLAKE2b-256 f491279881b76b85f86054bec847ac221a6bfe3b90aca1221d9312df0d376a2f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be9fab59fc3a5afe2e0a515335bd35b95ede15c4f80b3b6df9e45202df498967
MD5 afe6ee2af5901e7f8c86f0d26842eb5a
BLAKE2b-256 9d2baebb23d48d705477d2a1861c46bd005319aa7b8b1fb025abf38f9bcc4960

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a0faf1e8c4ec4e6ad7d378b7b029d3972a9dd14094a870e427c6b9730457d51d
MD5 c0bdbc430c7d7bff4d3fae876c769c6c
BLAKE2b-256 79e5c6fab76ff816086fc529a8f2814f49e2ff9d03254970bce881705a061c4e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c5827a57474db332c6d03fd084949c0666344f20fe54b1eeef064b46dd6f323
MD5 55ab31650d44869b02710f9d634dfd30
BLAKE2b-256 19e7f48440fdcb6bd89174947e05efa7e767d15ba7df5822061faa69ccb90b27

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 27f83cd8a28caee8b8d815709b7149b081e87fbdab32fdfc6414c987d611897a
MD5 a4861b78663d75c5c5f07b8f579e24af
BLAKE2b-256 fda684b8ac57a8fc524e9ea366ff3fbedcc7fc66c12db36d9bd987107359db2c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp312-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 8df03aa236ec5a86496acc8ec0f0bf7dd95155816980d31eed03968db0b87b39
MD5 93a727503af2cf19c754c8e4d34f929f
BLAKE2b-256 b817ab431ca2c15a436da1e1c76bc0fa5a5bda0d724f5fec8ed613b15443cc28

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 e7d41c2991a444fc9f4844c33e44d2b76f5c8e32425df56c07fd75dbd03d54e0
MD5 4175326318f8eb02c2959e467960e405
BLAKE2b-256 c08591d0eadb1e05cc2f70b3d1da0c381a20126eb6cda8e1fc59ab0322620d68

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp312-abi3-win32.whl
Algorithm Hash digest
SHA256 4a43d2f1faefd816ab28c9e24ad4a748e0606fb94e6c1b291eecf9962bd59fe1
MD5 141adda6d4c047bc07b146cb539e89e1
BLAKE2b-256 50ffd54616a2bda36b7dd08d1c946bb7c3675bfed6e249c2fc0a059c7c13d91a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp312-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 19ffd6e9a469e11a5d815f8d194d0efe4636b6d441a46172de4c32cab08ca04b
MD5 d064dd384712d73c465744627828dbc8
BLAKE2b-256 eacb19606a11286fed4d3e67672879e73762c75ebf1b536f76ea2b4b7927b730

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp312-abi3-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 c5f6f4f046aea1d4cb00ec487f3df925bb442babd3f4c203e7474c8f91a77397
MD5 abbcea9111e0b99b961fb736bae12259
BLAKE2b-256 1c7746aac717e051e1841c534329ceab02e51c3e10c77447703b0db4f69eabf1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp312-abi3-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 da06c66249f031841600168ebfb5194839761b955b3ff88b87a78c58bbbfb186
MD5 106ac80316612f74a45348442e82801a
BLAKE2b-256 9cbe28e9926739d753aa8011828c24370e63cda515d638ceb84d7f78a7c7240d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp312-abi3-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7673cadce6c25844b8dd79e20d4819cd821235390a47aa96630db1e1f9936d30
MD5 1edb171c3255e63c4af504e21cd67b31
BLAKE2b-256 1af9ce75cf62177c28f4e3e1eef61a8f41d9fa845fe72b9ffa5dfd5e7c4a4d42

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp312-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 71b3ebccbe11961f97023a40981ad5ac07db7582dfc27a5da196574acadd8285
MD5 3acd4437f2972a5605dccaccbed6d81b
BLAKE2b-256 c403c23b375cff0e111a53d5c7e06e078a4e796f6f8f2714ff7dba1faeb8f632

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4c953ecd68cc10deab1fb4ba97f2a5d8255a2cf3b353be52f900cf0853d7b5b
MD5 fd3c82e11dbaf01f0b0ae9c4325a9c6b
BLAKE2b-256 4b943978685648b5ffbd91c8999776796f8f1e062ac4161a7f887d196d89ae05

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp312-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ecce4de9590c04a198b1bd30ca0b7b171a6f9b4ccbdf159dcaf6d56dc7924d16
MD5 97f074a75bb8eef411d2c2367d8a1427
BLAKE2b-256 5afe6bcf6c4650b1e52f3d1c9d69be57e55f255ee75fda4c2420cff110ee75d3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp312-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec7041e2943486056087a9b7278995713551f66588282e97c70c889566aac41a
MD5 3f3da113e9b33a47ba26e87708cef666
BLAKE2b-256 b628def8a72d25fafec088ba69d7ec5f221a38ba96e22c9165d601db1f5e33e2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ee612acc9271f793a82064211d25bdf7f3541644d4449f944f7a1aab6dc6ca4f
MD5 9b28cc6156acdb813db60944b6a521c3
BLAKE2b-256 39a073e75a014bfd09caeeb4378796e963fd5264df533ec46e445f31dd88bd5d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f739e368c81515d10b51270e1ad9ececa12839284e29a6c5cd6d29460a41d860
MD5 96c9e8f1108fe68662f9eb0652d47de3
BLAKE2b-256 83163478231fa18dfe1362d3a53c2ab90a4394576cfd2c7a88ced9d55e22c93c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp312-abi3-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 4aca86caa5476f79ebd43b3665420d5f17c4c4743dead6d0e0407bbc5deb7044
MD5 d8d4b93aa56f240b61a51b037b274a93
BLAKE2b-256 8f6f54b20f218f31be3194e6c885619b28e91237cdc27f57b423bee34f9a4d92

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56178755327e9ba0bfc668e20a6999ec0f2dced3163b1db40b96a92eb2551f59
MD5 eb46286f84a57a114faea031ad327eaa
BLAKE2b-256 6b283c3a143129618faaf9fe620e97ee0ef9144776407e5020f53029f5195537

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp312-abi3-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eaaa18bde9981011aaf49be1c3432cff2ba9fd5a400ffe57d6efb2cc21102ac5
MD5 92480250eda6a045d042e8eff397bfbc
BLAKE2b-256 8a44f39675dbf9c2f4581087eca0932386a415f1f19dae95565593e6c0f6da0a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 98d3d717adbb2e89d799a2de6aaee2b678e53eabd526ddfe42f174d15f0c0bc8
MD5 e158bd40435e21757efec497285587a1
BLAKE2b-256 8c6004316a38924705056b0af37ac92c3089c25413e0d6c8a236a1c0f75f4307

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7116e979c19c70d826333c8c15dff04add61765834976bb53607ff6cbfe2e2bc
MD5 d4198c9f877b51ff6b84bbd55bb0fcaf
BLAKE2b-256 0a21a4f8066cd99a149dc56c7b84786d10d27d7a439f4f699370c83a9e29734c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 190b999da59c02db646ed685a607a83d8b7f1962d39e0f84b3613007c26c93c4
MD5 8fcf01149a5315f8bed20d1cc8e09309
BLAKE2b-256 6dce7c7f6082a077b0cc71ccec0f68812ccb9bb8437c7ef624539a81c4ac0c95

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b6357be83fb2db24a58dcfac90e31ef52938b1fc610048cd7e401e8b98564946
MD5 a737532e45d0e154297ba8649f9271a5
BLAKE2b-256 aa5ced019376bbd9eb2009e1ee3749daff7c0f7eb0b224e93a0b88f6cac1d8c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 9171300b9839fbf8ce839529f65ae059ba138558119838d6e741e8fa260471b9
MD5 38e32872bcdadc243ea9f334cf27c4ac
BLAKE2b-256 caae0aa1906f38c91e3cb346c3d35c41a28237dceca09c9744284743855b4238

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 3d3a9f7ac3802cc171d99624ce7f1c2cf9d9c9ccdd5a01c742fe1a4ee07de797
MD5 5cc9982add6cb12d130ac1118148a95e
BLAKE2b-256 a81e85bd57b1e023250923488c320b48aa06f6ede7146796d838f9efd6cf1514

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b9c312d111f3cb6dab64eb9408dd387af3dea752f9772e3ea09c16b1abe87cc6
MD5 b4939b02f3a5ff347e78415ecb5e9b70
BLAKE2b-256 00bf7a6105ff5f529e3caec6fc3a4082cb29f036a5ff16b3ce466e4e3900907d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 de3701b9519c8096c857dd126b2cb14eed1383a3d9456dcf1eaea9c0ccfa1ec8
MD5 656dc283ce1adb44b8cad9b36b3ad0c9
BLAKE2b-256 7a8c56788e72898a11f888afbb9146f7800d2de8e5cb6f922e285347572d5010

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad96bc5f8ff925118833d65b1e204050b80a63300ff3efa26fc12a85551196a0
MD5 40e4b082505bfb9d011b7f1c3571ecf5
BLAKE2b-256 bd1bdc2b777b40daa8d619ecb5bad7233b6b03ccbc7249f6cc8ec30b27a1a2ff

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e61827d1531fafa949212fd3833340f58451471c094780d57b808c298bc859ed
MD5 b640484ca74a05a0a32325e8ea53eb68
BLAKE2b-256 57d483e80d4247cb2846f481dc89bee2e24b7efb5aa5129c61f9e6b34837fbda

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b03c73d09cc7232d956e34c9bafdf7d8e40c3590982c3cd5348d3b038dea497c
MD5 a75600bda2a97925ccff3f9ab3269022
BLAKE2b-256 3ff8ebc01e281de8f059b36fd8fc9a1102046d666d596694a1e173975906f3b6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4571813ec4b22bc816ad52020689ea601680fb38ba92acf1fa82c8ae10bfd8ea
MD5 c953a2720896ae31002243eb8d0c104b
BLAKE2b-256 fc0f681b3ac65691cbffd143f0a9cac9d15c946ff5f1a3cd7e7bbf29c5d945f9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2532b42a022eeb9337de278642ddb2e9164d7538636c3096d39bdeb9bccb00aa
MD5 1e611761a9a645a937d7cbd29b891034
BLAKE2b-256 543a1c005cf3368d81888a5697b005af197a2ce9213ae98e07a43bc5d47e3909

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 f5ef99f2d0b5e0cda371a70c0cea322303973cce1d62af17e5270dac01da262f
MD5 17df4a23d66d79fe6988921778560797
BLAKE2b-256 ba0f01c75be63804c47ceb46d986cc7aba49aaf7fe41dc553cfdd9e449161a8b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9959cac91f20f6a4e042f658c9de761f80f3d1f435d7bfbf87c696a564ac2550
MD5 693bfbaf1ee7d6096fb27b2c24bc5dd4
BLAKE2b-256 e0a40f57f318d6398b303ddbb78eb7630514f3f9e5e40f6503eb3504d086f1de

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 82b643d8f65e401d9456d4fb1db23246dd38dbbe3b2bbf30bd842d3867efef14
MD5 061fc39206a2b666ce40227e3645653a
BLAKE2b-256 0ff9d40ea27745eec8bbcba6091d1eafa0abc5e84a93ac65158a5ae56295addd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ba75d0f70f73c4c1272c89edcedac94ea941bfac3ada6e2d05d9c342c72b4291
MD5 c61322935344c44d2678da1f08ea1f5f
BLAKE2b-256 42fe2c0aa9f986d7c74046967d1ba6a295057027edc2ae1db7e5f7a1d980cdab

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9ae353d7f23acf256f0c75bfeb127ab5722befbed13106ee226b55ab6befddaf
MD5 5f331ea7299d10e20f67565c5e6e4f7b
BLAKE2b-256 be652c1714528d90dfd4da0cd97b0e6502cfc8ce43d7fada6ed2c8a6c3c31dd0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 67f7f10590873fffcaca161f8a4708406778cae21e7310e7e5f591fea8d58a59
MD5 ad93600e6837f31724b1a091e79521ae
BLAKE2b-256 643221971b6cfc62339aeddc2c0384f14cf1b8cbe52bbd6c84d0cdb325f0ed32

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ed3255fa0121ab5cd20968b9ea8ab4a7d2b816d43fdbcd8eb3bddef2bf34bc8b
MD5 7b1c60fb58b2bde2a2dac197487a1942
BLAKE2b-256 7770709ea9da0538a86cc470f06a3ad258fa03082ca70f082f29013c0ebe76a9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 d456de48a219c07d0de74054fae543ccc7c5a2223a3b0285f62f1ff4cacaf1a5
MD5 927fa5c6d6de241cfc641e179fe3eda0
BLAKE2b-256 ea5558f7499a4408812ac01018fadb002ab62ded2f02434f90b07c0a88c519dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 242a7174271ee914a26c6c9719a1d1a448bc7d52b39006d1f595e7fe2d22619c
MD5 434e1083d5c605b0f0f171f7b2c81f90
BLAKE2b-256 d447553da338fa18495a9827a2bac5f7878794b71f43b808c17eecb2d5e0cdff

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f8e84451bac2fa9253db2784a2b3a97407e6536ddfced66b93e5a9d2c92bd905
MD5 3dcb669200b17f1ba4e5d1089060e7d7
BLAKE2b-256 651812fa176c412c145cdcad57e90ef4d84f9a89c6a6caec6eb75e50e223103a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ffc584258f600ed5c9276621baf74c58066b1aa16cd82af670e210c9037e917d
MD5 a2d0b0b62842ef208589e65aecbb14d6
BLAKE2b-256 735cb85d9c2857f4ef42cc1818b799c7139677b9c796d0c85183a0690b8329cd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04a9d019546ac1e92ae7efe3730e7fe6da29626333ef736a676f6460f7bc5442
MD5 034336c01bde843f501daff36f2d81f2
BLAKE2b-256 c483bf44bfea961511aec388469b95066043f3e8867659de9d69a6dc09299bd8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f905a88e22ba776497914de032891884b1d72b00f4114c372555d143a1903556
MD5 44b710f9bad96206d8a14257e8fadde4
BLAKE2b-256 e723171db8e264cb9da5858231caf7705765150f0bb97b7003527811b0db12b7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 809d7c15651dc7d85e4d99847ae94874dde0ab993b3c1667c6a1c9539e173e9b
MD5 54487277bd65af0885ae2d6d5ce1ca68
BLAKE2b-256 2a898a0432200f7092b00d195947c7247ebb985e9c522534702168faf8848fa9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aae511f4feaf7bac90fe5aa92a4b761022e134ece27b048087717f8a1b204af5
MD5 46499e48ad6ecfdcac29a059fccad50a
BLAKE2b-256 dbc0b1f6101b61f62aa4fd2e93172fcf322918d262e24145320a5d881ebabd19

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5aef4b871c422f2117d78f3f8716d603a1018fbad4aa374f6ab640d67ed62e2
MD5 327dbdb243350efb03b666a414eb7123
BLAKE2b-256 550ec59bda49b516b54dd032040ed5dfc6fab4fc77d81e7fdda3a050ea684158

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 0009d78aa88fe449af1daddcdb71b97a368cb7443d20d56a7b5b9bc21fed12e8
MD5 ba37916a61ac81f8594373aa59386215
BLAKE2b-256 5e7b79c58abcb38bf1c44d0da2c325b43788a18c52126983ca44544a52f8d68b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af0b51368a6b9e7155bc102c65d15b1704822e1ace0a461a92d8833208865c12
MD5 04facbf1fce65c90aa19a953f3465947
BLAKE2b-256 20aa1ca61c256d0df7d1567996126f03a35463710cb6116461f01f3262c60cca

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4ff8eb2a53cac53221c85bd58873dd1580bf21a29ffd7a4638fc9678eeae51f5
MD5 7369d6547396d3445c73393703457f88
BLAKE2b-256 e900724b977b5c76ab3f1f06c2633e03e53400fc31835015ea26f32edcacfc8a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 f9bcbacc2554b6358ff9909b87819d835b09e04a9af32d8fbbb3f94d4c40f989
MD5 932f871b4b24a09babc170dd9d93519b
BLAKE2b-256 4db2e113a41f1d2656a1221eea87667c21236b1993df9930907dd5ba580739e5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d9a172b9238e54b72e5ebca10364db13a7f90b086088783a0c300735fe424f87
MD5 1a22623c90b8249c868b617c78bc9fce
BLAKE2b-256 5a32b59d3593c63321224805c362bc6e5e1e048a24a98524723d26338898ad9a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ca34ed781640d1c3a3732129739ca9f2e793604a78c9358f89a998896c078932
MD5 6aaa64d82ddd8f6f1c0ed6d40be6fbce
BLAKE2b-256 ff788fe78efd6adec9ce24e0c0cc228a95faf4d4a9ed341df5fd5c40b9acf275

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8cc7b3916f1a91e41f03da5ea761f72f5f06135ba1a35bba6d285be85778b5c7
MD5 9b73750323af4c3461522b2a9794ed86
BLAKE2b-256 f2c43d9af14af0cb9ca7ab8a1f7a079ea1dc6c41a3256615772cdb53b651c4c6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 6eacc0fd6a6406da0efa650d28681642a3741b5d08470f8583cd11514940a544
MD5 afbcc4b53969e429581c1895bb6420f0
BLAKE2b-256 337c97ca7c61cf2a7d45001f286eb192a714a2d4223c26f655632e0c8be1a1fb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e9973ae054bccb3032d234826020c6e03fbe15dfeffff836972e97e9732149ff
MD5 2abed403867c711e8b128cd2ca9daed2
BLAKE2b-256 b79c093b693bc115ddf018880a0d63937c4a6004490d009390ab74f72e5a9d41

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3366969395313e280d26f2b7f4f2eba3b5a877e1ee3a1f84e3238cb3be726c47
MD5 1f9fd3163daa58927b23aab31028500d
BLAKE2b-256 8cc757e69d1bed00a31440606bf38240e232bdde78c9df36221eecf1526f52dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2a86386013d425ffbe5b50026e9297393362c4a1530104c7be445dd49b8405cc
MD5 fba02e89f79951dab32b1696d14f9ae9
BLAKE2b-256 5e22b1f979975c0a7b3a928388e4d0c357ee2d06c2bd0aba21440170f77760d7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a9eca0b653a0de8ce9ac5e13aaa2e5cc32bdebe54a920875d674bfae9571f05
MD5 96d3020d2468714ece0597951c8f2a67
BLAKE2b-256 e8ccf722a7dec301a57a0e4901b231f94d809abc93ee487abcfb3546dc4bd93d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37233384937bea4c737f3494d7e5f383bad8733dc919ac54cb0e63bd798b8045
MD5 16c95f37fdcec500dfe54314ea0d7a73
BLAKE2b-256 81f5a6f3bb3fae8a527e892224dc1d49b7c90962b909880cd6de1da3a488cf6a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 133d6623559bce1e46dab38eaadb8fd70cf231a78e7d125a21c641666ca6b580
MD5 3388c5f58c8181460ca3d4116526a4f2
BLAKE2b-256 82176572119300159b2f437d39fd76c57672aa227d5345a567d0850d54458b80

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b5923e0602110ad41c86c622ed1db48d094a954eb100b001773ba5f01e9a24f6
MD5 7cd4eb52acd83842743445b2aefd33d1
BLAKE2b-256 04384de3995cb5f6bf08b212de8dc2850a2610e3cbd54b17ee9d4957d1fe9776

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cfb636992882851ce1be34fabedfd7476fe7f00ed833e13b7d49ea66133a18ac
MD5 a721d204dd67a8087dace94bcf606a23
BLAKE2b-256 7063be945a4a4504c9297c38f5da80e877c95974e6f1140895b466fb84d2c700

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 c21ab9a03136d7564df9d191d303b97fa689a8a76ea16c8d1fd0ba327ceeefc3
MD5 ca5e0612199f815dfc8195ca6698e9cb
BLAKE2b-256 7e9109e32c94df2ea0020835ea84e59b75e356a4f6d090f83aefdb96904373a9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 145346a73dec32bc6f04b7e661d21d5ff1fca8d439613a7d2f3e94beeeff92b3
MD5 26a47130a04c0fd2b00fd360aad8ebf6
BLAKE2b-256 9dca35410db6e2b80f024bc859db424e74246c5a222ba5a872cafd26f92df65a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 efb672c137d8c4bb52ad6070b33e3fb78b872c4c0ff4b719d175ddecf9301ee0
MD5 15a3196b974703207b2e6628d336fee1
BLAKE2b-256 3aa7c9862e9c2462bdd5f6cdd44495e4e1d841fb4373d3d2d036ea783843fb1d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0dda233661da9280e8b6e757fec80595ed540fe4f8bb735633d2b1cf54c253b7
MD5 44a5e194aeb90ca4b0e4e878c948d3e1
BLAKE2b-256 3b71c0599952abadd247d6135c1945c4469daf38f54be701bcb4c484f10e88d5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 38f5d18b4ce290e9dadd9ef1a2356ec3b4c6ce652f6af8016e7d5b720e0853c7
MD5 2c005e42319c75799cb5e346f6ad6d5f
BLAKE2b-256 dacc44637dc38ccad92595020c27b87f58968d7ca425fe4c85d72aa26326845a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ad2d085590021df83133a00579c33aedc9eb19ff1926592a84d34dd5a1c5c2a2
MD5 5ceb5d317417eb730144cbe42eeb5273
BLAKE2b-256 998cc314b7c9a02e107b6d9fc81bca68a29a23d54bca39c8f79defe86febdbcf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 bc87bd0d0a7b5cb3ce2dffa163b1a829a537a878aba50c6fef2e6199e954fa7a
MD5 c7736a8ece4a184e2f1976f343f7eb9e
BLAKE2b-256 2e64afede953dfea81c7e945731ac9c693d2c7bc45f7dff1cbdc5e8ef86dd3c7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 0a3fd0d6bd79aa9637bbad19b76cd6ab20ab044221bea992a86433eee093513b
MD5 7d6001366de20df82ec70af8f76e7ed5
BLAKE2b-256 9f070f150013e1fbafecbc318ccb2efadc82b4d71bb16fedb1a4a79fbf44c6a2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 aaef0d3021e0539feb4c2cb4fafaaee5c95e90929586aca7546029c2c07a466c
MD5 6c4bcd59dc0fbc50fe07d8fa7d375d52
BLAKE2b-256 301b707751071effedc16f64e05a97a1689178c7eda1a762b6ed1de38f7cf6cb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bc6d3b78ee80c4458cd31486b7dcdcbeb2bda09bdaca41292007ecaa068f3bca
MD5 43a6633325d4596a984c3d536cba6d9e
BLAKE2b-256 d28d0ced4d2f3e9a4295e404fd1881a7a4cf398d5aaf0e65aeae11771c899a31

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcef2143273ac7483fd52c8e1b43aef5f00cf1b0ad58d20009d1e0a0ec714fcf
MD5 f1ebf4a227d0e70ac4fd7f0e552db988
BLAKE2b-256 f34681ffff033be85ecacdeecd7b277aa6de96dea677bfcf22ee39c2e1d7609a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1b3eddd784b53849960067c8866967d01adeee24180852f8d89dde89903bf361
MD5 18261b6848158cdd593a845b82cf5c78
BLAKE2b-256 549aca676cfc25727eefa7bc02a0e896f9098435afe3322b9d7e8d4141caa6c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fbeec56ef5c1969e76afe71348b8a001e2c313a60ded59aad15ce127bcd14f3c
MD5 ded4c43d1c4377de276c0bdc01040b3a
BLAKE2b-256 fdef051eade20f67fd7793399bd6bea2662d4c431d4bf1881bfb3ac724816100

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4bcd576d3a93586643a32863a945eec2968bc0edb06a4a9bff234b546733306e
MD5 9d10c7cb7f8c2ac45e61bc5ba0f47432
BLAKE2b-256 feda496e4d954106286a9bc2d50bf1fc00e89ad05c53468a3e7a5446c080a16e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac6d72a2f1bed9aecbdf3d871f24aa343a7aceaf5ea6cee0dfc10350488e995c
MD5 c28d655a1949c4645673c4f46b3b3eab
BLAKE2b-256 e1b7e653a188440f71bb28893b21faabe0fce3ad1e27335c801609c55c48cfec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 6560ec18cd919678fb3c970031b69c7d125a2c2f45570d6ca633ccb09e6860ae
MD5 ebc6e281e7c9b3a0113ff4c9d5fc9169
BLAKE2b-256 09f252a01d8544faaf5661a26b399a98dab83c1f436e15645368e0e26cad407f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f9cbb2773797465dde042297f8cd292abfa799d2d108af80fbccf173138638f
MD5 62564bc7562e0d543782598eda80cc1d
BLAKE2b-256 a83e9b1c2a87e7513c08ada50a2636c9a23f1b98920d707d1bd8b7df0345caea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.3-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d20f1bd1baa866b4f6507a36b57ae28cf8147e725a9092240ee5a384ebb9877a
MD5 2dbb719ecdb14dc5e1832f429eeb1f71
BLAKE2b-256 1c7aae028e16c556e563e89b40d21b18f281f074b3f642570015ecc8af658528

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