Skip to main content

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

Project description

apngasm-python

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

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

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

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

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

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

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

Install

pip install apngasm-python

Example usage

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

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

apngasm = APNGAsmBinder()

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

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

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

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

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

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

apngasm = APNGAsm()

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

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

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

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

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

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

from apngasm_python import _apngasm_python
help(_apngasm_python)

Building from source

Method 1: Without vcpkg

Simply run:

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

# To build wheel
python3 -m build .

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

Method 2: With vcpkg

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

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

# To build wheel
python3 -m build .

# To install directly
pip3 install .

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

# Choose only one

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

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

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

Credits

Project details


Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.7-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (477.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded CPython 3.12 Windows ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.1+ s390x

apngasm_python-1.0.7-cp312-cp312-musllinux_1_1_ppc64le.whl (689.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.15+ x86-64

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

Uploaded CPython 3.11 Windows ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (539.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.15+ x86-64

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

Uploaded CPython 3.10 Windows ARM64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.15+ x86-64

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

Uploaded CPython 3.9 Windows ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.15+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for apngasm_python-1.0.7.tar.gz
Algorithm Hash digest
SHA256 4e6a57296af295366eb4adb2a5645c69cbdf7b33203890ec6bbb796f23841065
MD5 84204e82e908958da7edb6aa81bc1f51
BLAKE2b-256 0b9d25d4ee1c5a46105e1e20936e8d61c98b4373491cd6a2e39e0a877ffa8cfb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bada23a0875e7ea4c7bbe254906ad68e9f054b519e953d6af239de8a116b2cf2
MD5 5b94a8a60d5d483a3eefb38bdda9d1e4
BLAKE2b-256 a2457744d5da635b4d4203dc02a863964ddf17865e70c56dc94f6b717c2d7a90

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94794962009879827c54e4a157cd6b16658b592353bdf17726cfd6623fcae26b
MD5 0190e5e62943fc7ba681ddeb40605e52
BLAKE2b-256 8de34f586e64b8b63fa215b17d581a0aed1387b75d41ab9a49db84f50640cba2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 070448bab021cb7978bca0f5fa2c72622b27e9afeb1a26e1b619e9bb63e9ac81
MD5 63008e2e2aee7645fc7245c994733656
BLAKE2b-256 99509045baa6029d8f9f6bdf0a49a6ba7ad95305a6b000da60f4345cd7c284fd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56b0a1908bc1ee49cbf38d61cb923c2a33ebced0591cffcbbf585c6e3f423179
MD5 bc48784bdcb577e91453e4dcfe70e6f4
BLAKE2b-256 54b5c81c710a60631e105af79611710939043f39f9c06a39d6ae716dea72ffa7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0615ad7f16ade51dc66227350ef11d648644eea05d06b9e781a6222637672000
MD5 becdb47d91e467150b42b4fa9f91f6db
BLAKE2b-256 29f971044564f591b492070ad6acfb21b0da5f34293d0e49e511ba4b6a45ab57

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c9c174c627e3e055dad2617fb4f7fbc53b2519051ae3c59cb084db4210b0048e
MD5 9e665befd9250ecc571f9b71a17e5610
BLAKE2b-256 192ab66b0809db99e563147f9dc38a1c4ff8b78911d7307ceabe051f38ddd501

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ef797c599a8577355d65ab8113225c024a78c3d1cf908066956a24e0e31d3f1
MD5 ad25c74092928a5ac351934882a26aba
BLAKE2b-256 71d99b801417991337c25bdbaecb67f23e941cf2633f8914eec97a3ab75e6df5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 567142a00f3cd66a30451e28e1b1ca5b519d0d6d8d74c7ec3d99f15f5ce8f8f7
MD5 214fe9290748850cf19d5127929ea6f1
BLAKE2b-256 2e1be16a0c0d57df0cb03f07c98cceae78f05bd754eac4a65e214be410e6dcda

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 872353fc58a7c6f281c1b542d7d93eeb683b63206aae9fb94defb5870e923330
MD5 a912cc323cb2854f2e9e8945e7cd79b9
BLAKE2b-256 c9808de7b2ee94437d22f7536d6cc515cb26267aebfe93b3cd6d2dda858fba72

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e73aa3bfdd117e0b96385d09f7e208cb3ebfa5ab1431d78145cbb38504e755aa
MD5 1f72c433dac4c24e25e420f2d48961c6
BLAKE2b-256 7f83d8e2fdd5651d7a03c15e5ae30512df3a0daf2bd9d3a8fc02b9b169009b65

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0d0d4ebb161520eaf14dbdcdfb916ebac8e3645ae99418580f72bdf57f8e87ef
MD5 f045df01222a698f4f9f62c9485e1475
BLAKE2b-256 4ac68725827993fd490379c675df0d83fb73a6f5f3be6d69b1457fbf8f2c2145

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebcc154cf05723a7231ef995f1c712cf2bd28d70c08dac576dc70595c3e17bf1
MD5 4dede401965153c7d10c08f163913f1e
BLAKE2b-256 e28dde9fbbcfa71011f31e47cb8bd5b0f6a7779b765f1fbb916380c86b0f75af

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 085095644f2d1401585c5ce71d96daf2368eb11b83c8e5e4ebc21ae24b915bfb
MD5 c54a55037754359aa3d0363eda6b4be3
BLAKE2b-256 033c21c7b2ae06f8ba7407eb93da9c7050372d7ab63858a3957d6d8a6091305e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9a8f0141e58050e2f26fde0426e2b09d2eada637f30cb60b2ffe2289566621c
MD5 5a99c8c59866bff2ffc14dafebc73572
BLAKE2b-256 0607199d37de2965f68f45aa0af82599c080ca40fa2ab14c1aa9940b4f4ace85

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 afac6f48929bebbfb066c0b2c22b18df7d42f31687f0bb3ad413a8e102b1ca9a
MD5 e5adb65335fae6cc5f9bdf66c72d5c8e
BLAKE2b-256 7803385ab2cb18de473497ccb52c4b91d08128ca756a520393dadcee79a4eec0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 54d2862888a4722e1fcf5938d4b47722e33b460185d335e632425c98dcea1013
MD5 4f091fd3bc06299cdf6cf02b04051443
BLAKE2b-256 075b9f435a429f843ea1f5a10b91c5772671014cbff1b5b0146d1e553355f5d8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 901c7083a6b2debadab9867687f4d8eff843b253fd28a47afadf258ec8a88d71
MD5 6984dde49ff7b6153ecc214cb86775c7
BLAKE2b-256 ff3ed8659794aaf4e01fad365b7c022c25009679d4573343fda0c48781519bd3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 73fc852642701b2805e3b34ca299810c6dadfad22a0b2c927e61413734f87b38
MD5 74e686bebbe625a1906c6410d08e83c9
BLAKE2b-256 9dcdcc68333ceb1134a5cae11fa6355b97d25acdf0a280607e5e682f2b6fe9c6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d584350683bd83a84b7fac1d691dbeed5b47456d8d66e9105b40589d08b0f40a
MD5 baa4e677743f5ea33c62bd0845ce6d83
BLAKE2b-256 8e3e173dc40329eaef1a69da28ee87872a2a125244a28b16b6cfe5616f5142fe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 1509040182d4328bf981e610304a8d1593b8380e8fffc007308475e8855be861
MD5 a7db6b0291b548be9d4a90fd2a74f17f
BLAKE2b-256 dd3d9880142a14f642ef3103e4bfd2b32313fafc7158c5bc91ad1d1d77093b0a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e68beb7679d122f467f8c6475ae0bc7105b979295fa3c9eb8b744077c8445238
MD5 fadea44a401f0f48783628aed54816af
BLAKE2b-256 c217e4bf184827acf2c5a3ca71c005218251556cec32a04df7769a168f0186d5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 191de988f4b4018b1c7f4a806401912f2d00afecc15f707994f0673e6ac8ab71
MD5 85f6059f5bdbedcf43588fa7ccfae542
BLAKE2b-256 f49d81d54009bd986482be6b6e4953ec9a35f9cedb9a46cc434c83cdab687930

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7240b88f9a234dc3d06e8aaf346c07cb90becfc06ceefadeb4953df916f918de
MD5 72b95ece29131729cb5f9e7e2aa3b6f4
BLAKE2b-256 00eca276fdaa7a9230116a554589d2e47e5b3943cbd33d025ba1b36ec0d34f75

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04f7247caa71eaadff1119834e4a7edd65745f578757d64714069c4b0aebde8d
MD5 36d7b9cb8d94cc5826a6a6297b41f207
BLAKE2b-256 257d3a7036132815bb9a97dd6def8234041c75e28b81e50006a340bdc3d0bf74

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d3bf2aab04fe2abe2368c5178dc24e3d43514140a383ff69b32bf268001fa6c3
MD5 88cddcd1bd00ab7465835e4f63a9ec94
BLAKE2b-256 8bf986580ff03d22bea3fb59920ea46a80f80f719e420983ead7b0d553f8b395

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c17368944ce10a49cb47df0626aad52e6bae399df5eefc1f5216fcbda852c09f
MD5 12d67cd83cf52b852fad31bc1f806e26
BLAKE2b-256 6214d1456ce321d6fe72dc7572c96b9f396da6f2cbbc673f62c86ce80b8f7bd7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 595315a12589c77907faf20e118647d0a1f3fdf4bebd1bfa483caecee41428d4
MD5 ae537f364a6ec7bb8209fa77c336f83a
BLAKE2b-256 4ee4b22ad48b1b96ba782f2e5ff81f970cce6e11f2a0290111b88f4dcd7b976f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b378e77f53bf8ebfa2a5c40782d0b35473784b6685f3b7b2157dd5f4c15b9ca
MD5 fa23678916b9df4f0eb07e7904870ef6
BLAKE2b-256 2fbf292ea442aaed15dd2abeb3a34883e8bf3a79ef887bf826b7f9963817570e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 a2bd13da801c86d7c278da54c7abbbafe9e3d03466a1d96784fc40b9a7c0e433
MD5 aeb30cb6f85dc3e8c2b702d3a110c150
BLAKE2b-256 f0abd198a46e0955f90727ffc003cabf4dea9436ad4e5e1201f31e2229c550bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05eaa36feec63c1cf60684e415df535c62bf93d182058c214469baf06f451998
MD5 69e80b097e58f7d22e2027747386fcc5
BLAKE2b-256 02e0303192f22fdc23070b2fc46159dcae6c48112a23536bce2a2e39830aa420

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e5bab23e41a2af4a5f81819b929643d79cf484c6fce91407348bf5b2e8198078
MD5 24f4bfa4f422742fb9ad33eeb9b83475
BLAKE2b-256 d9050811ec3ef55000e7f43d4468f77e074363e2291dfa7b4c0947a06b8b6ce1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d495637a06643602e79cb5e32a599db62fcba59c53cd63759c7d39ce35288012
MD5 f3e17516f480007272d05ec6eff199c3
BLAKE2b-256 2c1898a136066c3b85534368e4bd86e5cfcf1aba39befc347c3e3362a47ec8dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 77ec56311015db819195fe2666ee725b1cc35cff660a9b499568d06f077ddab8
MD5 dd3f03ee9347492c3b20e882dbdaf802
BLAKE2b-256 7a2b0f9a6dad6cc8039dfcf87cb337dd98989ab689e8926679b42718ead4878c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cd75c56a842003497b2c59fcd0e0cef5e262a594962e46d924b4be7bd9f1ae5d
MD5 b68384ff13c9bbf5989bf691be96b1c9
BLAKE2b-256 d3202a0be58b35a18e7add005fa05831c3b0fd6f34b3a6fc0a2b0eb43fa1730e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fa1dbdb2e1e6a1bfbd683be881236f3ab64c3d68323dfd4ae6a6e068766ee40b
MD5 39f4c6a39dadea28cc9d9acbb4e3c431
BLAKE2b-256 8672ef0ac2a6371f17206eda63cfe892a51b54223938a5d2bf4a2a4e72b72d1b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 8d962d85497869d3c85898cf09073d37e2f0a5d80f8dbc91150d806c985fe26d
MD5 603a0ca0f18676c05c1c49032c201c1e
BLAKE2b-256 5a4519a321fae93c427616e391089612e0fdf7b4f75ae1a33a0e42c2e63d40cb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 dc4be4d2b9344daf8039bee50f796a04934cd169e15fcf216517f65a9b730a0b
MD5 eeaf0810050412182632dc65c5ac2604
BLAKE2b-256 0e624cd9464d1d759c53613332ef6c1e3122d3f26f5299dc6d02d85a4174faec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 561606722cba9f4f2264a1a11341e4f4bd6b3ccd66ed3ee95e9d12c4cdb1aa87
MD5 ae02b2a446f3b9c0920f172d42c6f0df
BLAKE2b-256 abfe17cfd4c01cb5a7e201563e17f116aeba10c368809c664f993c0871a9f2b6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2d19b96ad8a68463d441d0323dcd8c7a7ed7fabf1f7f859bde98a06ea7b56252
MD5 8d12c75d29fe9d23f6527269818e5be2
BLAKE2b-256 2b3ce28ead1c21024041ac2773827c4432b605f4e9e02fbd3a197934266b8365

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a1e655faf51739b0b75c1a735e928d70778ee3abd9f6b02f2e5a305bc6d1099
MD5 2a4ebc07e95b6368bbfd2e0c4f76c8fc
BLAKE2b-256 b5f6724d05921742f974a17f044c9292cbd13abc69e3a0f24c57bd53298d8490

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 856e2c43204bff6578e75d618c9f63b18cf2664c315a6d7ed074bea4e5625974
MD5 a2a56e4e14ed62c471073dcab9da9dd9
BLAKE2b-256 d5df34adc3686017cf2d4c9b5627ac8c4258e082df60acbe16101236c5f8e8f1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 feb9baf9621c8c10735262fc142b280b6d75d34a2f39899518d514115eac3240
MD5 ab71924cb356dc64f2ca1939f928a643
BLAKE2b-256 cac9bd268bd23cac8de0943d0540837f55389cfb527e129de6eb3c7aac852fbd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f88e6579b54b5b0dfc414c2a1f9237c9763e27c2f79949fc0d9a4ae479f0d245
MD5 707fa4a919935eb4b5c1895704807aad
BLAKE2b-256 5a64491a3aced0fd0d76f54fe8c405333c84a5b3d974d878f6e70a6904c30480

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc72df0cc63035f033b22527bce5d7457f5aa37eff71335693863001dbb229dd
MD5 4d28e5c55896693a574be2b22f2b7787
BLAKE2b-256 cac0f517f5e4b17ede10c25216a57cb6f7cc1d7173bc011bcf71492de34e6fb1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 0e397372149a6999e0d7f06b50ff3eeb879f6adfdfa0e8a552b6a5118d52e70a
MD5 be12bdc1103e20823bf61d312f6e3b15
BLAKE2b-256 145e83c9050986542eb9cf56d97ef78bbc0ded5f398e256beda39f136548150c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a455ddbb8a8e696bd616c47a01f16fe564abff1cc41510409c3887546933951
MD5 37d2b80d6500c5ceb295a952498d62f9
BLAKE2b-256 bcd16c78e793a8f7896da46b50081b4919eb5273032e0abba6b585d4f61f9027

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fa1f33db1d95377e22d456174b3a2ca9ed09b78706dca19e753b3799a806fe0f
MD5 14150e474ad91803afb6baee762568c8
BLAKE2b-256 dd587c7170dcce45a5ff10f1ad40c6e95ca590fd22cc3cebdebdb8ef6a70505e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 6aead808ca1ecb382957f32377d516c14f80e2864258869228125380f943df03
MD5 631a1098c0d979b9fbcaea1850f6fae4
BLAKE2b-256 d96e128c046323c44a0b48d90495a6994d3079c0be4028146d1628cdce8ab82b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a2f86c464ddbc3016cd0642721444b1f957e7dc549a44c10c01b6e1c8eca7880
MD5 9208c4abd4441bdf3b7744646312e9e8
BLAKE2b-256 229f9bec6e1ef0490c7991314280820c4ab8790c8bc63a41ebecab79e2e0e9a8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ddb90dfea2830138da42d44047d27427cc3a607ad6cae9e2c525733703cdf402
MD5 17ec202ec19c819f0c51c654002b04ee
BLAKE2b-256 e8d393c5fc48549841d73ee16c0e50c5c8f29030c38655c356227b95aa915ff8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7c73250f7d065d742cfcfaff73393c05d8ecbab74069225818022100e270509c
MD5 73b38af893fcec716e2734c9d87e6e7c
BLAKE2b-256 5c696755a3814cae8570001d3b6c64274b364d04150a78d5f75cf8fed9971eed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 56178bc2acb38c3d80a55c081dd5b74e21674e08c12faca8e55b2aebda786a16
MD5 ae327fbbb4aa164e60bea664d0b6f3fb
BLAKE2b-256 0de140e32e065453324c593c25058ab2596e60751077c2e5c144dc5a768a5980

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 eb8f3f78f20fa7d511032b7f70df6549cc35e4b636ef2778fb60893edc6f5de9
MD5 e18d4c7ef9a29519d7ac7c5823bd5f29
BLAKE2b-256 20ecc0761d846505d9abfe40fa0a075308dedf9c5f8611de5d10a08d0315815e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8022ccce3bbf439ddb69708e743d21bd9ec5759de914ec5e07b9935ae2bc8e50
MD5 228194912460d17ca2ac6f720db1ba8a
BLAKE2b-256 e3a50563ae3e072a0c8b5d83b2f013dc8b0e045fbd8965fd22d76995d0b1db62

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ccc22629c376dedd08f3a00ce033f67375fc4ec9e93e0c27efad33df09a3bef7
MD5 8c86b9aac73f8c8e50cbcf0f2b1b0970
BLAKE2b-256 abe3becb1abe09bd5ed5f56245b3d837a312d55f82aab692c04736b7a473b7b7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7aeab926a7fd63cc7293b9cd0d3d7c31ead6217a1054c564f5c982cf89f09ea
MD5 dac2e277dc08226646d07f0ae1265c38
BLAKE2b-256 c8d4bba845019056f6100e121d7dcb79d50a46263f76651e90c54dea3a354cfe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ddb1790ca1008fd1eda3105bd5fdc82e30cba431073a11f8f283067887916d76
MD5 77483cad4b217140731110d7cde590cb
BLAKE2b-256 06812785b245a573ac79ecab4640030643ed9d6b364fc5fcf4b61e44ba2b0b5a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1f61af4b92e29de0c2838e9a2b98dc13f2d9296e1123aac0bcaf1e9cf847190c
MD5 0729879ff331764eb04f2a57aea46365
BLAKE2b-256 f6a2201ffc54eb75be76849877af85b3e6e581f6ad723a633f454dfc37dd74f1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2e9fe20dcc6f89d3d4c32aec6ca5c616b568c1f443d6ed86d7465fc67d24ce14
MD5 0d3cfdfea95f3213c5209d2d85384b84
BLAKE2b-256 6471a019779306c74ff105cf6007aa294369a1ab3ceefc79e3afce0399889e22

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6089fe2c607ff4b559e48b9cd006f253a96440612bdf8764d2cc2eaf59263e9f
MD5 9cac4cc0b1138f8a53c001101630d1b2
BLAKE2b-256 9e455382d2fd5e109aa936a648c10c12e1cc8b1060060e0544330cee9c0c7fc0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 e42483d47849c4f8fac9b2ba458ed4da0cc3468519d596d3712e5895880667f1
MD5 eb9cad8e6e95abff1323f8abe763ab76
BLAKE2b-256 549e58e683f43d25320d1b18eb49e409d4f84bc73d93f28470f01daeb8326bdf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 990bf90dbfa54e3b45766dad163d07d8ebe3cd62f82c9a7d87ab3d600eea7aaf
MD5 316c5b5ff75cccdf107c07117d97f663
BLAKE2b-256 9641939ab48a6a0754b05f256e61a66b721ee4b2fc85d63515daddc413e04202

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 618945cc140a007f092f846d01a8d48cf8220f6d474aa8c7bacdf46cfa9fd2c7
MD5 7839bb9a65499281aa2f03693d8b0f97
BLAKE2b-256 6e5ac7323df5d9bb8c58a1e5c584036b2dea310dd5e71371ab8717b1774fced8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 6fb1756e5836eca59e875ee208e97ef2e8ddbd8d3242f053bee74cccb97b06ce
MD5 da851d7dbc27e47ce58b24b9f0fc0b51
BLAKE2b-256 fff21b2f6ee2121bd857b6b19a8864ea84b558fe1440730a96bdb5b7c26859be

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 991fad6a49d5aca569f43c2c23bec22141898908a0c6373176d2a5c4b25565b2
MD5 d2f9aac7705ef5634ff9345cc9bb3548
BLAKE2b-256 136161d798cba99c49964f3656f945719e84edb5b88f6ce66fa1e47526ab7ed0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 729b7ab9ce5bdafbc92cbf67173a7c26eb9494d0291ce84eb03980100b7a5ad9
MD5 95a92f1b2ed2b1e3fdd593d90a7ea06a
BLAKE2b-256 0ae25697fd4469bd97054c8d00a7c51724f18e0843ea9ef1d250e7e8ec639121

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bc4d24e4ef76357fa2bb3e9f215a7864ce00b347446ed5e79737faa6a8a462a5
MD5 11af5b7f4c234e6fd0e11789b546f4cd
BLAKE2b-256 853d36afb17650d0a76beb0dc6ddaa4bf2f4d735b961063d320c5e5d1482ca78

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 2163d5994f85f5ef4fd334572c8b549c371b25f604b666adc3ddca07b825870e
MD5 9920f28d812a11d0605ed768eea8426e
BLAKE2b-256 5e6b2a7f5af9ed473f1250d5c426b17de2e67c1395994832b4f9f8a1c1c3aefc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 860b895a048945abbb3bab713b3c7aaef0a4d4625aa846615d6aae9c700d906b
MD5 8285fd34efbaaca0fc8ef769916939d2
BLAKE2b-256 1092cedbada690c98da50dd3db206b4ba93bbbb3a5825c55f44772ffa9f26dd1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b59c6f1b03a224587a54d07d4d4a76b31c8ead4406dd7a84fd60ab9839fc855c
MD5 a332412deda9227a4e2d05f0dc14d203
BLAKE2b-256 f6089febf9a8486c619c35e677e7e077e71b7b7242386ee73290251759c5d88b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 618b45b89b6a02dfbc162f97bab9b3008141370ca407f1687beccbe2e119009c
MD5 e0549712c475e08db5e379f2c90b684c
BLAKE2b-256 ca81ec3d2b95e2b973671ce66417e1eca720eddb6e55ed792d61d56040d0cb41

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e355cab3a27fcd79c21635dcb925340dea2ef0e2e702f699f3084ed06fcef73
MD5 9965da623a18140b174054ee2c383e49
BLAKE2b-256 1ff809bdd3c0959d56b7923e3337bd601a961979798eb63e977d1aaccfccbc53

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3a4435281dfc348182ec78f6bfc8a7891f90c09f13aa188bd8b3149c0aad63b8
MD5 7cf3f01cc8af4c629adb850985c2e5d7
BLAKE2b-256 0df64e691f7b728b9bb95c311a0c5a353cbf58e171cd4fe6095d1c69c38ba365

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5652db3122150ad5b4750855f932917c4c6cb1a573fb98ae4bac03db23cea181
MD5 ecc42aa8faf8175c9e5b067314c7f9eb
BLAKE2b-256 b6ea786283ac3e2b6cdf21e3045d29f5c1efb621d96c086c3e1f08f8e149eb7a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5415b455ab92062de847ef90007153bff20bad116ca470b999a4936b3f16cf53
MD5 2de1cd879a8c0e4f35946a61a42c5e9b
BLAKE2b-256 4eaf13e3f2f1321b37fc4f8b7b0636b82c78270bbe6064900ac79909a66ebc0b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e43583173fd72c1cd67a1ddb2cc1b884efe35801c8d3acee71e2177bc2fe807
MD5 a38cb5af72926fe2f57ae063aaa15032
BLAKE2b-256 974a8ad69ee1666f8d86765c4ad4ffe8dd329bf8db3e03609a87f52a5551e85d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 eab4c2aeb966245d96b5b1e88f3644fedbacf535eebce610be15b30908b869cf
MD5 0abc591063b9bab78adf20c244bc4bf8
BLAKE2b-256 3bb7f33c418d8f8b4de99e0d9e29f0c2d5f05ecad4010005a021386258b09b20

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7e11ca1a6f9c6551a36928fc57b2657fa8c9811bd62ae7b3af6d984eb7077cc
MD5 5b56559e882512911cce9a1d7c0af92d
BLAKE2b-256 e0b4b58a632101c46c2bde7ff962e4040daa28453f30e98283a05327c65993b5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ef1f9c4541f8c86cb284d2f3ea36312428701e4396b58f90039c5362a3bb0f14
MD5 fb37f6efd91dedfd9a0861fe5145a461
BLAKE2b-256 9cf7daf49c6bd7b3a61a92aa7e6df860669b0343cd7d012ead34cca83da55f82

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 593360429495ff35c05682eafb3d6026faaed65af68c6d6696b7e0a5a344f41b
MD5 9cc7dc108ada6113a894698a2512f8c0
BLAKE2b-256 d2f7863d2cfff60847831dd3f8b74909d1e863fa0073a21ede3006116cf6d668

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c9bb34a2f35bcfa2e5ba9c89ce40fac1a07a4beee038c904c9a85efb9cdcb8da
MD5 24cad6b1c3102a7cfd4e6fb7737b47e6
BLAKE2b-256 465865b2b190475dd796b15b7bd825344f4b75a2bf12cc2e4c4cec83cd89643f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 528e396142b4212ae4c9b8917630dc56bf860194cf335b4344eafa036ce20783
MD5 13e4cdcee05b6e9e61b29fe67431a8d3
BLAKE2b-256 0f25f1610a244b79992e895ebbeaa95c171c8db0fe6362e5c4604dc7dc5d7e55

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 39925f7a8b4372e9f9b1d525348a48a498bd50fb26dfd4d6a21c8d06f70d94a6
MD5 cd91147280b48c9d6f16607a610dcde9
BLAKE2b-256 5acbaa639b3ad1e019087f8cc7fce1aac836bcbf973f5f17d18db0558a9c5278

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 97d6499277119fd16f552dd6812f1b56ee8bbe7fe222ffbeb19b1e4fe51e3d44
MD5 ffdc32304a459be4409bd43c729b03c2
BLAKE2b-256 9b941c1a1ad62d0c1ef20426df4b4d2b7f3de04a329f3131657ef50e79afe9f3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 99d38977b491e4286c277b174f8526cc6a3b4393d13d67db762019d166af1721
MD5 2836cfe8ca91fb6f16161e78de5ca950
BLAKE2b-256 f2a2d893dfac72e48a3ba937f90b916786ab12cfcb3bc0755acea0ef9679858a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cc8290df592fa9291619d5180e41c411678d7141472b75d8a23667ba5a69105d
MD5 68bf7e33aaf09c596d3cd8435f01f6af
BLAKE2b-256 f983bd96a6ec4a29c3318c606d46196b55eee62a135c5bf74c35af1b648264ee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4bcf0d176627512181dee8b0f0734fc2ce4295d451ff5de32b3d1296f659aca
MD5 408659650bb57223f91111733ba9db4c
BLAKE2b-256 39f678efba60e5df630f98f84257cb7b6677945d637014bc2f10cd9c74af494c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 34518a5075147676bfdd09aed4f98b8ef2d379eb2074b53abf24952aca9860d7
MD5 a3cfe155e156d69ae556b16a5defeaaa
BLAKE2b-256 390d7011cc02aca2df5e045b98eb07498c4778c68df9a60747e49e2d89aa7194

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa36118130cbbbe379543ecbd415ce359e4643612738bf6bd3e283023215c55a
MD5 ca00d87ef21a12a9e4f705f1ef7a3d14
BLAKE2b-256 38f834b4f9e5de8a863c1c500ab37cb71bead99c9ef2e5350924e2e5dd257084

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc72ea43da6d3441926d199e967b016c415975e8566617083d95e8d4012a34fc
MD5 b9d7052f170167c2b67c5d4b04ed8aa9
BLAKE2b-256 e5bbf3ce9bbc1c6013634580f77c21f17bbf32d025c64923f2c7a224d161f8c6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa4c65468d0017538dd9fa5f32878efd0ca58b8391e7925611015f7c862b4421
MD5 dea64c78cda3611b83264d063829f4fb
BLAKE2b-256 51d48785b2305949b52833de9955c5f2df3d9f45311cc7914fdfd9147cc554b7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 ec035ed0f7a7d5e700d4ce5a86a058358a5a095033db00d25f45deb24a74059e
MD5 d06bc13cb95a28a2893cf5b9de1dbc44
BLAKE2b-256 a01634be7bb6dc3e3c32541d8d78988e5b754e1ae01c2f41f7851e3692c2e22a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42f064c4bab1bb0e11362556100fca9c31ebf81de15f6421ec0af9a61452822b
MD5 2c0af5ddeded99f1907ae9f44d4048a5
BLAKE2b-256 65661f4b303877db5a7f3e01c851457a239be5b1d028e458ebb89ac1f842748d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.7-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e5da59823f5fcdc83ca0efc52427d77cffa41d0234629d2d04504d6fb26c7306
MD5 ac9766f0c697192e324c3c77636e5597
BLAKE2b-256 2562b584437785ecfea94041c5c825cde644027d496a8bd42f5a744eaed87878

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