Skip to main content

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

Project description

apngasm-python

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

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

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

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

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

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

Install

pip install apngasm-python

Example usage

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

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

apngasm = APNGAsmBinder()

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

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

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

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

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

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

apngasm = APNGAsm()

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

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

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

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

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

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

from apngasm_python import _apngasm_python
help(_apngasm_python)

Building from source

Method 1: Without vcpkg

Simply run:

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

# To build wheel
python3 -m build .

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

Method 2: With vcpkg

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

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

# To build wheel
python3 -m build .

# To install directly
pip3 install .

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

# Choose only one

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

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

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

Credits

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

apngasm_python-1.0.6.tar.gz (655.2 kB view details)

Uploaded Source

Built Distributions

apngasm_python-1.0.6-pp310-pypy310_pp73-win_amd64.whl (522.0 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.0.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (451.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (474.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.0.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (412.5 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.0.6-pp39-pypy39_pp73-win_amd64.whl (522.0 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (451.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (474.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.0.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (434.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (412.5 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.0.6-pp38-pypy38_pp73-win_amd64.whl (522.2 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.0.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (451.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.6-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (474.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.0.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (434.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.6-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (412.3 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.0.6-cp312-cp312-win_arm64.whl (470.6 kB view details)

Uploaded CPython 3.12 Windows ARM64

apngasm_python-1.0.6-cp312-cp312-win_amd64.whl (522.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

apngasm_python-1.0.6-cp312-cp312-win32.whl (457.6 kB view details)

Uploaded CPython 3.12 Windows x86

apngasm_python-1.0.6-cp312-cp312-musllinux_1_1_x86_64.whl (581.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.6-cp312-cp312-musllinux_1_1_s390x.whl (566.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ s390x

apngasm_python-1.0.6-cp312-cp312-musllinux_1_1_ppc64le.whl (661.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.6-cp312-cp312-musllinux_1_1_i686.whl (592.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

apngasm_python-1.0.6-cp312-cp312-musllinux_1_1_aarch64.whl (568.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (451.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (422.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (515.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (473.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

apngasm_python-1.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (433.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.6-cp312-cp312-macosx_11_0_universal2.whl (759.2 kB view details)

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

apngasm_python-1.0.6-cp312-cp312-macosx_11_0_arm64.whl (367.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

apngasm_python-1.0.6-cp312-cp312-macosx_10_15_x86_64.whl (411.2 kB view details)

Uploaded CPython 3.12 macOS 10.15+ x86-64

apngasm_python-1.0.6-cp311-cp311-win_arm64.whl (473.0 kB view details)

Uploaded CPython 3.11 Windows ARM64

apngasm_python-1.0.6-cp311-cp311-win_amd64.whl (524.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

apngasm_python-1.0.6-cp311-cp311-win32.whl (459.4 kB view details)

Uploaded CPython 3.11 Windows x86

apngasm_python-1.0.6-cp311-cp311-musllinux_1_1_x86_64.whl (585.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.6-cp311-cp311-musllinux_1_1_s390x.whl (569.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

apngasm_python-1.0.6-cp311-cp311-musllinux_1_1_ppc64le.whl (665.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.6-cp311-cp311-musllinux_1_1_i686.whl (594.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

apngasm_python-1.0.6-cp311-cp311-musllinux_1_1_aarch64.whl (572.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (520.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (477.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

apngasm_python-1.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.6-cp311-cp311-macosx_11_0_universal2.whl (765.2 kB view details)

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

apngasm_python-1.0.6-cp311-cp311-macosx_11_0_arm64.whl (370.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

apngasm_python-1.0.6-cp311-cp311-macosx_10_15_x86_64.whl (414.6 kB view details)

Uploaded CPython 3.11 macOS 10.15+ x86-64

apngasm_python-1.0.6-cp310-cp310-win_arm64.whl (473.5 kB view details)

Uploaded CPython 3.10 Windows ARM64

apngasm_python-1.0.6-cp310-cp310-win_amd64.whl (524.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

apngasm_python-1.0.6-cp310-cp310-win32.whl (460.1 kB view details)

Uploaded CPython 3.10 Windows x86

apngasm_python-1.0.6-cp310-cp310-musllinux_1_1_x86_64.whl (586.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.6-cp310-cp310-musllinux_1_1_s390x.whl (569.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

apngasm_python-1.0.6-cp310-cp310-musllinux_1_1_ppc64le.whl (666.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.6-cp310-cp310-musllinux_1_1_i686.whl (595.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

apngasm_python-1.0.6-cp310-cp310-musllinux_1_1_aarch64.whl (572.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (455.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (426.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (520.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (477.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

apngasm_python-1.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.6-cp310-cp310-macosx_11_0_universal2.whl (765.7 kB view details)

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

apngasm_python-1.0.6-cp310-cp310-macosx_11_0_arm64.whl (370.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

apngasm_python-1.0.6-cp310-cp310-macosx_10_15_x86_64.whl (414.8 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

apngasm_python-1.0.6-cp39-cp39-win_arm64.whl (473.6 kB view details)

Uploaded CPython 3.9 Windows ARM64

apngasm_python-1.0.6-cp39-cp39-win_amd64.whl (525.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

apngasm_python-1.0.6-cp39-cp39-win32.whl (460.4 kB view details)

Uploaded CPython 3.9 Windows x86

apngasm_python-1.0.6-cp39-cp39-musllinux_1_1_x86_64.whl (586.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.6-cp39-cp39-musllinux_1_1_s390x.whl (569.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

apngasm_python-1.0.6-cp39-cp39-musllinux_1_1_ppc64le.whl (666.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.6-cp39-cp39-musllinux_1_1_i686.whl (595.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

apngasm_python-1.0.6-cp39-cp39-musllinux_1_1_aarch64.whl (572.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (455.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (426.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (520.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (477.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

apngasm_python-1.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (437.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.6-cp39-cp39-macosx_11_0_universal2.whl (766.0 kB view details)

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

apngasm_python-1.0.6-cp39-cp39-macosx_11_0_arm64.whl (370.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

apngasm_python-1.0.6-cp39-cp39-macosx_10_15_x86_64.whl (415.0 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

apngasm_python-1.0.6-cp38-cp38-win_amd64.whl (525.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

apngasm_python-1.0.6-cp38-cp38-win32.whl (460.3 kB view details)

Uploaded CPython 3.8 Windows x86

apngasm_python-1.0.6-cp38-cp38-musllinux_1_1_x86_64.whl (586.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.6-cp38-cp38-musllinux_1_1_s390x.whl (569.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

apngasm_python-1.0.6-cp38-cp38-musllinux_1_1_ppc64le.whl (666.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.6-cp38-cp38-musllinux_1_1_i686.whl (595.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

apngasm_python-1.0.6-cp38-cp38-musllinux_1_1_aarch64.whl (572.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (455.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (426.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (520.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (477.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

apngasm_python-1.0.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (437.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.6-cp38-cp38-macosx_11_0_universal2.whl (765.2 kB view details)

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

apngasm_python-1.0.6-cp38-cp38-macosx_11_0_arm64.whl (370.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

apngasm_python-1.0.6-cp38-cp38-macosx_10_15_x86_64.whl (414.7 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for apngasm_python-1.0.6.tar.gz
Algorithm Hash digest
SHA256 1e93419c145212e9830bcafdbfd8c7a770473cb488ede607c0c009c49569df54
MD5 7d8fa1b6d469ed80591ca79d6735bfec
BLAKE2b-256 712c715776a82731b4515bed3383c38331f1337a2289b2bad5ce3a1675f28386

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 70063a51640d1b30f64cb220598ebb2f235019a6655e6a3063fc6cdb5d2bf866
MD5 e433a59190a1043379a7fdc3b7572fcd
BLAKE2b-256 f3079cbd9414fa117ffbcb37463b49e290109bf5fcc28142176670472335c308

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a1665485453d93f651e6a95ffddc77f038369ead10e514e869880d0eee0d009
MD5 0fc23e252d46905e70926527fed2792f
BLAKE2b-256 d5125cf0552866b1f9ddf89b5ff7256a44155ad2cc74234f144519e5ca3e20ce

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31f3439db0a4978d37650660067aeb8aaffc911063edbcabdd134da8d6829afe
MD5 a845976fa98ae8c299fb3c5915734355
BLAKE2b-256 e78c5e9220b31452354b48571b88db530b45de854f286e5743ac9db3097e05eb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 330cb7b0d21fde4178a0bf67904fe23a2aa1823341748647999914d9a5e7562e
MD5 244c31bf0b2b509e0ac2909c95aa43fd
BLAKE2b-256 f65444e3b36aa9b4355a3f7a67ba74d5ec3a103140d7acc9814b0003862d4407

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8d7ed48bee16419cb09c9cdf3556679ba5f9beb80904ce9acdcc48e379854e54
MD5 8606889edb117ea728b1067ed2413899
BLAKE2b-256 4af4184b1191184478e1a939e87963d080086742a7970f5792e6295551e0c4f6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7b92c4e138ff97bb9a4ac025501ecbce056267887398ceefb5a9cc1255ba83b3
MD5 e8addf19a0caaf58c93c439971b42a8f
BLAKE2b-256 57360ea3361a678a34f86cbf84216b638fba8acbf27dca0e356a97cc86edbb52

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e88e1a33e3a4bd1ad4c0aa8179dbf3f9cda21190182e0be2f97e9df73f7c92ad
MD5 1cb9aecd0ce03f4a51fc9524a5e3ba56
BLAKE2b-256 24f9866673ca62c4c78acb4e7a10ff4921c222aad2b234e26786c52c089732ad

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 edc4531577d4722c5977f48b233b3683733a4afec384e2e08bedf0f95e028895
MD5 d194cc20f4ecaee6f9b23c9de179e7b9
BLAKE2b-256 51a03233e5a2ff212af1eb02549eca32bd465e079c7ca851116b27966834f26b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4c2dfbaeda2776c4542f68e87ac78fe34744be2bfcf50ee110f55c326f0d39e
MD5 dc8ed0fc7f85f5aecea36bb76bad2579
BLAKE2b-256 ced3461444f59d137238b634a3629c044ef9f4a7cb44166aadbe48d31b5be98f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 82dae09395dc37c10ff0411ba15419cad4ea266c7a745edc8576ed755814d796
MD5 695a5c44f61d2e0bf9409aa9af95cba0
BLAKE2b-256 c589f104ce90fd21ecd66510a445e9de957316cc5e150a6481f2945cd0bd4a14

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 03899213a5ca7d99d162fd8d19b468b7b1c05c344a66ece58734f5a4eed49488
MD5 0f3555f1827edf4509c86f4f98c52c05
BLAKE2b-256 1ad42c5da09c5b8f41525548792156d2a95828193c884bdaf362e5e8a421b75b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d08289ec6d563261bc553a7e4f52d4821a65467273a05ce6761a182d32d819ed
MD5 d60b0186204e14b01f09f78a5289700b
BLAKE2b-256 7ff7bc84b5a976aaccd52ff813e3736d323eadef7563aeb1feb1814679eea69d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d5872f556afb0d14843a8d0779f25ee095e4b56cdf03f7a149b52f5b51b63be
MD5 694e79e39554786bacdce7be70be359a
BLAKE2b-256 dd2bbc62e8c647af2b0110a7e23728df22aed5dd8a878578babeca2460e1e98c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 338ab67769b0047b2df1cf83aa3d502d0f34c6a3373bd401f49774e44a4027b3
MD5 59684a5f0aa73b148c9ff21b6dde2de7
BLAKE2b-256 9198de0608b8ec52b6541db64f8d283cb188863aab2086c3c6b6652e0aa23138

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 21b1b64876ca794689117c87c506e08ee848284fb310a42cb0ebe757a1e58ea3
MD5 b13668fe3efb3831a65be74556de8811
BLAKE2b-256 c230c1e081b424f3afbd3ae7f21cbcf5b2ce8e19dbe396d72ded3e26800f2d76

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ddf584106539f5a34e5168174e5f70afe522da1e88d21f69cbf0a59a640d719a
MD5 50a50771d2f7f62ab4a8de09ec79a2c8
BLAKE2b-256 d11e1c673a40111aa09755ab06126b2c443c08770907ab5de695c23719984169

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f45a5f105418c196c15e9f6322009ba900e2d7f32555ba750e6d5b0c27c89aad
MD5 9f798b310bfaad555db2f1fb12796d21
BLAKE2b-256 95d85f698332cb6bd3c59d8a29afb71b25b73e1f5e7b22cc4948163b8b79a449

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8aa7974c2c9bfcec2a958ff972eece971ed5dadbff482ea1b580caf4215a0661
MD5 6ec61c6bd1faae4e6ae5e47564581726
BLAKE2b-256 9131de8e08edc654aafd74c8bef5566a2708ceee786a9c486a6bebed53728191

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 802cda7abffb6fca6d7c1b42329858ff324e1bc930a551bacd23e07203eaaae3
MD5 e49ec51e1ea7cee6c7629d0b48ef881f
BLAKE2b-256 bcaeb19440574ef85d84bac17b6cf2e6f3f46fb7a3dd0d41866e5127e3b2f7bc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 f60f6b1c1809e75d9bca8a3ed5052da36521ab5c3ac4d78983b8941723d20d3e
MD5 e8926085c73a956dfc3c31f9430c2096
BLAKE2b-256 3ec37ec9b90e13ea9b9c8da9c5fdccff116546ff2c368258a7556445acbc79ea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 c5626866edf5d80f37b3fe5b8c5c5200938073c4d3cff859cb49aa3e9d3e2fed
MD5 0531615367db79f925a230b86c5b40a3
BLAKE2b-256 76d4df875145f74ce2bee368ec5bcc42304241391c690cf9cd0e671a8e61c978

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6f25340176644d8dbc45530ee288b06bc6b06f730f8e1b36c8d596160a11a618
MD5 ef702d1ee0ff06f834de17a23db2b639
BLAKE2b-256 d97f0474f8b66465ff406ff4806409289170beaf762a25a49405b4b707b075eb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bb0971558b43c397f6fd719a146378bde51521a933a7ee18d331e3736c7eaf9a
MD5 3d338667227e13f193d365e9cb24c522
BLAKE2b-256 6f0ef4255f6ef39b40a1d898c0f23333e856153a412c178f8d368b35cb951b5a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf2b418d8eb038a2c7075b1a6a504a6196af2996df90830370febd47677cb24a
MD5 b3e4a27cbfaa911f71e4c43e648680f2
BLAKE2b-256 c487f7ea85dd505102acb603c5540e645c4508366f38ada6b00efdd60a3be754

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c4f433959bcb87de4c00f153f13e880e29d8e63c6adbd90cceadd7df67f4a9f
MD5 1794a2de94ca33852b43e65b96e19348
BLAKE2b-256 1084f7c72c96f3aa6f85683350e29583edce24ccbc795d177f641b3a613f4876

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5627fd88316c506b4ced42996c696a973da032c0ff160f5324815b9fe530984a
MD5 68d29b1a33e2926b17813d606a1d269d
BLAKE2b-256 e0d7fa14935996bd7e010e09d54462902f593f64a11906ba0d7aebe9b2f14049

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99feafe748ad1295e5bacd28b71b9c5fb9a6841e6a73b63de4bea7cdcf41fe53
MD5 7b616cea2f6a458d53833a0583eeb19c
BLAKE2b-256 e40a8d388407aa8b488551ac63ed151aef8a57795bdc23d25894f01ff105589f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cb3f8bbb19ff381b51b663ced2bac46b27840b5fcd70ebfeb7cde3b14994491
MD5 047c46d4ebd2519206031bd7ed907fa3
BLAKE2b-256 fbb48304b2f00147ab3db8eb536d37b56c145c7383616acdc0523e78bbde92aa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 69685bbbb59e570a8454b95d13366e595b2056d622ad9d10637b3b47d28f07ed
MD5 230287960f5e43d0d9d0728c4d18287e
BLAKE2b-256 e15e557c52f48c252376987db630d0154843a374da3d605d0381f10eec0bb354

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56f203bf5528222ab3ccd0e040e4489333f54aa194ebd3cf472c12ce93e8ca6b
MD5 d137b180f8f1e9746c48598d06962d58
BLAKE2b-256 3003f52914dbf352af166a5927c290db998962179f4e72103a6d26ba91f1c8e5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6ad0d314cffc13c4f5e30fe78d1cf1a38885d50244ff029ea9097752ff9df443
MD5 f681793b3c131941bb9f8a7be0522d8e
BLAKE2b-256 ab25bcb056bbee7bc11fabea699543fa981cf6f6c1684c28eec99b1da346119a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 745c3013aa05effa86378fabb218176de4cbac98ef8dda3aa79ce3db1d976bd1
MD5 f2aafb18c0a954a63ada820d0ed3e936
BLAKE2b-256 879c2db9e68619ee389d57550869b9abc0d822d8613e32d9c97495ee710441e4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 831c8a7997b84984577df7ce97ab12e24bb10bc8705f0b0f9e2a4dc14c9e8b3a
MD5 bf1c99035d896027c601669568ec5fdf
BLAKE2b-256 083df79ff5dec984d9e3fcbe9a6bf38e50703bace3a673c05c1ac18ed472a551

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a6954f84c5b01a3bf88b10409ea4d00ba9e8ca3704d455f7d6ef55aa57ce2188
MD5 95ee354a7f56cd5290648005f36062fe
BLAKE2b-256 a5107b25b0c2f853ce263fb96653f75bddec906b1f4705f7eb438fc34912315a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4d74bf540456c18fe7012bb001d7ff2c0268c33cc88cf17c85c8d295a5af6720
MD5 e7333b072cf1c5452ffc8754be0f392e
BLAKE2b-256 14fad1b81f44e2e02d8dd8cf00e34f81e5d79c8a2b4ad61c1494a865ff26d75a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 19fa3a00526b06a46b9e572a11a93c1ee68778a72b8c59ddc2534fff86f1ecdd
MD5 783d73b5a27840431ef3c0e1b7e3a8f3
BLAKE2b-256 029c863496fad030feac506523667719ea063d9399b3d3d47b7d3a537814ebe5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 95a655d91b4e8022ef3c774f86e83ee163ba7f6bc57a2a5fff14f2bb1a75bbf3
MD5 6e4e140fca03170812c49b9dad590b96
BLAKE2b-256 2fb459e85151e445f523fdbfa4273057ade4a07ef0b6970388c4b34fad83092b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3306609d44a23a7022136f53d4572f986793f940075d13802585ef357431bafe
MD5 de90e022505f67b98377c86e36013f55
BLAKE2b-256 2933cb8515bbc33eaf1fb121abef89673bc6762986aa2167f3c3fac30e878ad6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c1613d64c08329e77fd8ecd657b0960b1b78c9018a241d3766799c59a59084e5
MD5 eb967bbc9b231b6283717adf43fc3601
BLAKE2b-256 74a0503ed9a57f1578ac3dd05180233b369b2c9380caa0f98138f414c033dea0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0c0139403b5b43330ea01f681cf3ea94ca45a488009e8c2efddddb0ae7bebf1
MD5 1415d0eea47b04698e0141552bc13ec1
BLAKE2b-256 3261e87d4fc4e446b6203ffcb13da7a3676f8e25d3b4af104e6016befa8dca44

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc2251878627b7d5097f41ff26cf56cafc18a0ed01fb1d1b7d1a93c45abb6d71
MD5 9802c4c87278024c9ba2676ee33763aa
BLAKE2b-256 40208cb45412159de4f5e96df4aef92afb250f3afda8da9b62b745543a0af9de

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebde98b13e2c1e576f575d695491a0bd4db4386f732d65cdd5e6715db95ac641
MD5 fa225c37553eb0795e9fe925e6778631
BLAKE2b-256 585afcd452a833fc2bfb4eb49f45f34540a7842638b3c6910f3f6d4b1393d6d9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dceb015b964d9f0bee29604b138b534801a0a81b7d2d2fb03c0ad351930752c4
MD5 d82acd6417359c2947edab4165253b32
BLAKE2b-256 7ea47a74941c229f2c13c045dc18d4226ddd5c88b610ab17259f8e4517879ac7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7502a122c596cbdc308d9aa799ed63f5fca81c5160f82699f95d8fbe81108fd6
MD5 aebc814170abfb277a9aac28e43843c6
BLAKE2b-256 de3fac09d57d950b067a872416e23ce33953835e263e4e37fe7a8840b3d3c5be

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 6f3516275ae3d575851f4b91a7efb63943340c37b877b9d0889873223e78e7c4
MD5 4858e9cdfdbe187f398d4576aae7917b
BLAKE2b-256 1a7182d86a18ea35168e57f3d8e94bca9055171cf79a439519aa94dc8a1ddbc3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ae97ab3669c385a1f711f069888ab99e27da6923c662c431a82586b72477506
MD5 616d0c3024fd7e8b3937f9fc67109561
BLAKE2b-256 f732711ce79ad5dd76cf40618332a08b916bd07bc772ac3a43ad5608c2252aad

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 254092d840462c7464247c9f57866b0822ad95d2b4709f5f90c80072e3ffb7a5
MD5 c6690fad0e57d09f01efda571a3799e9
BLAKE2b-256 08331895470f3234b383de16c57c8d9cd79c36ea1d4ab742ba73dfc0f8d66be4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f29096292b4b28517f02f4eac2fa04a52dc2d1c47406534a67e45405152d6f04
MD5 07f5e6c7fc2a65ea603a3b4582a52de4
BLAKE2b-256 5fff0073c234544c97a1d38ae51fddae83b64ab17c37f614be52cdf7240f74c5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 abf71642a240db0b02ac4be8271eeaf56057e727eea0e3f3603aa48f4d336206
MD5 3794b6463b51b61c059820668cff97dc
BLAKE2b-256 cc6eecf145f3083dfaa80334535d4a7c92bc53b069580f502592d424441312f1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8fc124144491904a918231dc9c2a1477988aaab9672aa67ef621cb02bb37934b
MD5 bf5060fa66497445cdc5e3ddd0b2c783
BLAKE2b-256 a283c1c2511e4db847cb677ef0890041378fe08594bffae6ecd9393aa4da57d9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5adc20823f1d4d912dcd86285125010963a77ef5dd5aa62fda15fdd5ea0b1f3d
MD5 19450b37d7e516e574c9c0f5a907edce
BLAKE2b-256 244223899e9acae877b2b26acf10590db027272c8fd38684a9e7225c310a9786

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 2cca4b15702de8ba8fa9a37b7bdec9ed63e0519692c595b85690e89b386dc03d
MD5 73272e435a94c66e091a2e7459bbe848
BLAKE2b-256 717c92ae0b755d648021d9851d2e17e3c40d557ae2fd3ffba6435f10482ea9a0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 7a868bb28518147bdadb48d9990cb2c76d0a3b73f356d1c8f08d21e6dcf9a301
MD5 728041683dff6b071d25b1a1e06358de
BLAKE2b-256 0b87e0bc4055df0bc355a544d4ea7a95d1ce8f65ff75473393d5f9c8d09c962e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ddb1150794ed6e1f856fe12d94d5a5c17a5aa34d6f498cb80a45254ea10af057
MD5 800e716a6f2d418cab40c2fa11bd5112
BLAKE2b-256 7742dc03f4cc12323bca761c87f9e18221e99b3973371f370b18740400b7d4f0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 84ac448b4aa5a894bc14488009b6f7179236fa1fff7e7c86a6d2c68d871f3dbd
MD5 279e4d35b411146a03c4a369ca8916f1
BLAKE2b-256 a46727cdbb41907eb1287683b3d738bf82a3da670a34e024fe7609d4da9c8763

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ee2a7f10ccf22c9380791d9afcb0027c76c829bcbd49507ff801d50bde3cfef
MD5 4e590c83d97bf1a9a5fcd7a9f3b93cb4
BLAKE2b-256 6829e76e63d659b47365fa389438141aa0d7c63968cea5410c6ea949fc873b6e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 00fe530830ab14d776cec57db6b4a5e1a117ee7d87030e2bfc6585120a4520be
MD5 806e479c19c970168ebb82eb99e986fb
BLAKE2b-256 b13b73d7d2e6338ee902229f0ef87d059ebb86e44d831d6fd0577dabba922938

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e407bc169799200144983090dd2ba634e00f9fae5b45def85cec8a37ae2295d
MD5 82c255f6f7d3374a43d6d8ffa10746e1
BLAKE2b-256 8d77ca16fd6d3852bbd3a374f52f368213b6e8e86a131aedb5df4e2e8e9ce3ee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fb6d155cae27c66e5965ec3877a4097849bfe1b61d5290cf702896bcf1ea9e0d
MD5 5091bee2402340e7a8a90dfc83bd75fa
BLAKE2b-256 9cf34724b8c0145ca4a32aa11817ad2ae31785344b61826a09e13650570c0736

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef780095fc926f7902f3943e9faf12e199ca491e3fc49df69c5773f578ba06c6
MD5 4ac1a0a2f398f80f52194b6cc5f55c68
BLAKE2b-256 27651d266941eb4d84d59843afbf5cf0b3360b345cf543ddaca45fb028bff813

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 323dd4edfce4f28f741528bc425dada9597732339a4f1ada20a617a1de319a2a
MD5 bf427d7404c4def88b5b7d280912e297
BLAKE2b-256 42398495c1ad1775c43eda05fcbd65ec737f143cc773f5d6180ee00ca6761ba8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00875d9033abb37044574eed9c2d3c71776a58a4cd3a1e8e591f6737145c100b
MD5 87906ed1ac55205b7807a57192ef94a7
BLAKE2b-256 a61d8898180e91d965a74e6a0ffb4b305d2867067c225548111eb61587becb7c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 99c7547cfd78c883b5b686b953f14910c141946d1038a8da6fecab49e5ed5fad
MD5 6021f61e0dfcf3e3436531954dce038b
BLAKE2b-256 ade8c042e09766120768a71e1f91353b04fe212a132cf6888b57aaaf95b2749b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 228a10a40288726f6783a7613ef1bf85942a31caa74541f4e2861acffe395614
MD5 2babfaa220527ba47916673ec24b4cb4
BLAKE2b-256 77e8d1487d024d6392bf1ccfbdeafe47250e3c50941c35d3806acc430dd6559f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ee69ece337ebb5153346b9bb04cbedfc5aff92e4edd53f4ed7d4056659246881
MD5 03e55487bb38c18e2b55bc9390cc752e
BLAKE2b-256 c19ac296780af86e0041c9651d43b175ceb0af88d52b6f193c04ca6f99ff4342

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 08c92a3e5ab450e0dd52bc9530ffc6c25efc8808bafc8b15525ea421f5c270ad
MD5 d2e5e814748858301c112ab50182a999
BLAKE2b-256 107bd52bd8f3d90f096860ceb5fb998d171d367c5ef8b73eefb98525909f1307

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9a8077586bbfbb771aac72d244948ab377140623554c79487c5f1c8ee2a033ec
MD5 d67e007d0cc33d24267cd04c431c55b6
BLAKE2b-256 3f07a63affd8af8cc3006927a4d1bc22214d789cc57fa0f01994396602bf717c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 7c28f94be1fc17e90217482d7c944984d4da2fa2aa1b915177a277aee5f3e1c9
MD5 4d8cd7dc7bbb092e19878758023a2da7
BLAKE2b-256 6d314681d2b57364fcc22a70e4a530bb7e17a138e466c9dead60935911fd4719

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 355c9133f99fe59fa3f2f39dd83a5d1c0f0e44852f08a6fc9e4e1a1841878ea9
MD5 c38a0d58491d47548ecd5250939e6bf9
BLAKE2b-256 94e4b09cf78f12cb877b47cf58c428a79081b80a3f7e32679038b6afd4ee313c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 706ade3d713ca2a9a9e1f8d24d4493e2585d7f04b9a6bd7f986c8f006f8b9061
MD5 30ef926cf8801f813b25e5d2558f78b3
BLAKE2b-256 0329e49f8b7dd23680614eaf8e614e68a3f31ceca1f4fd100296e0ddb5e8b2a2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 39dccdfd189aba963d826b4599ac5a89dc476916accb1cb84bb359ca466e4684
MD5 24e21e57638f9380b19e01d744b7d8fc
BLAKE2b-256 ebff7b88d2f3d664415ecd1f1d04cad0de49b958f022932a25dbcd8af62bb0e2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40ee11e04f7b4baf61aa1b936eb85767e6769bb1a7bd60e8d8cbaaa6fcaab91f
MD5 c070e4a7c78dd3a5375afba2ca3c468d
BLAKE2b-256 f395989231a4b94e830db965d189c7b21d601e6962cb0b1f96e82896b5cffeae

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 862751fdbe2a14912d95b7fe5827f5c9300ce9b200c8f45a7301f9c3c18ab714
MD5 fee2f6f58f4ce631e805ca6b7f9b8533
BLAKE2b-256 7f9fd40ff23d15e960f607f77a048380a2ca8527e4cb925fd41e0ae0afc54b95

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ff5b8bd5826eac7552e272a09ded22de9fccc2d40904f3055bc99ee07f99240c
MD5 d557205cfe5da32fe9807671c5147423
BLAKE2b-256 d8b38e085a5c7772fd6f26af63f9c080a0efdbfe4dbbde43b00a5cfb0046139d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d2fcdaedea5337f74544c9464d7ec6884ae9412e680298c3e1b6593bebcabb33
MD5 fa767de78ba17357c66a7131f1acd472
BLAKE2b-256 6dd398580c9bd2cf871e12b68b20802633162daa411cfca929d2f9b529d233ed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d78cd63a47d6b60650080b85c665a5adca45209dde374d676c62e1c0f8b17afe
MD5 340599319c02039f73bd080d264cdf94
BLAKE2b-256 f06c265e4e8d6f143d3e6b1a7b527f182e2e0a79f16949713a06e8e70310d1f6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 edf72957988734978b5de0850712082ec27274c8681bb4af3fc169a650242573
MD5 9dce492aaa92eb63604604f27dbca24f
BLAKE2b-256 c0affc87e2bb403b17d088a3759150a107ec53b19fb64661d20bcca4a0b9c217

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3959a1c27ac01fac5c63d68a4deaaca9158029901f8b35d136072e97ba2e232b
MD5 c15ba14ec1dfc74fd853698c7ef39459
BLAKE2b-256 87c2668ae37f02d4c2f9cb4395a82f7849b8adf28523dc75f235cfbf495c348d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 300976c9f55750ba98a23953ca8da784dd5527c012d0ea61fcd64a285e11ef30
MD5 85bff54ea723cf45db82a4922b44c7e4
BLAKE2b-256 f0f4b50f3ad5045428e2779cebcc330de3d93ec51bfc3795c9eac930022606e7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5277034b85a6fb54b4cfd999436c8c823d6a7760ee2ce1485aa4b263c9b50d90
MD5 7f2f86bed539f89f2b2531548d4327a5
BLAKE2b-256 148ab2371e307f95253d35e1ba8f04ecbdf2a2aed13d06bd79a4772de891350b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 81d5905aa742b1656dc9722cabf6e0ced5f96853aee3aecb70d15f747da3c5dc
MD5 46370f0fb9ed9a76458bd6f2d21ef57e
BLAKE2b-256 c2e4b0e8f188918b6023b66cfd0fe759c7e3971397132f5dd3b1639f336673c4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 37a39429ff65238b3481e57b59470ec1b59ad91a867e2bded322b9aeb47413c7
MD5 6d639dbae6b969a0feda4056a1b9c9f3
BLAKE2b-256 fcbda8aac3fc34fa3672e9cf7a6c330a254aa27d2ade0e6fedb482cfb9a2ac53

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 5e066b5fa577139e48b4156f7dfbf10cdc13b121dbd366d12b0fe94a6f1e14ef
MD5 8e11c09949c16944e1736eb4fca58021
BLAKE2b-256 af6c2db89b9e91fc77b0769e15e770ba16f0ecd989313c3442a42dc2e944544e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e9816351f8a37827c0dafb1f4872162295b015b310e877149a461a0bcae11984
MD5 70903a2f9b02b11ffd0fb562aa7c8bf6
BLAKE2b-256 9928ee3fe6322ed97f7828ebf6038302296d567210f10ca72c8999d012a5fc30

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 552f53555961693cf56b4a9759dc38a1c5bb94c5aebdd5f212d7e62a09e932da
MD5 48f70f4c54cdd2f1c074a435d64b2583
BLAKE2b-256 6922f1a2f384c5d2a4886f625f0e1c5149d17ebf79bab03bc865bf0e864f9bb9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 298dc2cba20734d2d7f1d807e15fa44283258e4ba126be02ec09da4cfd415b46
MD5 4500d02c70f4cdfa952ca63e5f66a444
BLAKE2b-256 473330b90b84e849267871597300e7f71e1c569bb5a098b7e893778445610b77

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d4f89969507e4ce818dbdca231461b33b9b3effa9c65866614f464192e9416b
MD5 04e5e76d1a812c70e3079b1e2d7508b7
BLAKE2b-256 54d8ea6096e6a70ed0399b1205b80e6083363512dca58b5b1e7f0c578ddf1cc4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2ae333d437d8ba9803bc54cd87d14761c9c22191d31231e14056f691764917bd
MD5 ae781894f1420b0c6225851a8560255c
BLAKE2b-256 7616cba32ef190167f7802a22f0a7c48c0281212a2a29ae68455eabcb4aee134

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea29d953edbf9df790681d8bd70fd84d4c0e636745f1903f5e51bf997532ad68
MD5 e37b88e0b1f23d6554da2b4d10b83e07
BLAKE2b-256 e884fc59b68b11348c240cd489d9d8126c373f778d7dabff7271f07782a8acda

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9dee5fb5130af3308577ed4012cf14e452c63b5a5dafeac94deed51d50eb86ce
MD5 67f7b795521159d4352b21b7c750e1ac
BLAKE2b-256 17a88f1c61a2cfca7feb91f96032896c1afb00058dbfee1dd6f59b8769b947bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 911c6933e164a10e8488306b9b2aa51cfda669f077e79140a6e2328c2921c179
MD5 14056adbbba6a91ecbd9164a36c052f5
BLAKE2b-256 d8de80fd1fd872db773d9b42f4efdc5bdcbeeab45dc9296d2788490b63cf00ea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 047712b7c06fdb50e84a4c7e4541ab3db23a5782393dba938b636d4e1e149bb6
MD5 ef25d634c9bb98fc4c8753fd4afc1ddc
BLAKE2b-256 2b6e8d833841c386a6596406cc801cc0a3bc02a438277522a777bcc50e6082b0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e47b10f7f7098185fed11cc6b0e0f1b803da881ee41ab11d6e575a7b883e9521
MD5 08bccbab64341135f32076a611e3e0bd
BLAKE2b-256 c26a41374f57232bd6df3c51a376a70d31438d5c502b9c99a400d0211c4002f0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.6-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 464aba542ca590ad99c988dee06e2a650deaea2f05321b07d08e2eed9244dc2e
MD5 9576cd0c33e923aa3279c6a9d7666d81
BLAKE2b-256 ea98b5b6efc7a84690969ca771a6015224a8c9964a8e45d1501626c4e8573afa

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