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.apngasm import APNGAsmBinder, see example/example_binder.py

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

apngasm = APNGAsmBinder()

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

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

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

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

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

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

apngasm = APNGAsm()

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

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

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

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

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

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

from apngasm_python import _apngasm_python
help(_apngasm_python)

Building from source

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

# To build wheel
python3 -m build .

# To install directly
pip3 install .

To cross-compile, please set environment variables:

# Choose only one

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

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

Credits

Project details


Download files

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

Source Distribution

apngasm_python-1.2.0.tar.gz (657.6 kB view details)

Uploaded Source

Built Distributions

apngasm_python-1.2.0-pp310-pypy310_pp73-win_amd64.whl (353.5 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (483.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (441.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (413.8 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.2.0-pp39-pypy39_pp73-win_amd64.whl (353.5 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (483.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (441.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (413.7 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.2.0-pp38-pypy38_pp73-win_amd64.whl (352.9 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (460.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (482.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (440.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (413.0 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.2.0-cp312-abi3-win_arm64.whl (325.2 kB view details)

Uploaded CPython 3.12+ Windows ARM64

apngasm_python-1.2.0-cp312-abi3-win_amd64.whl (353.6 kB view details)

Uploaded CPython 3.12+ Windows x86-64

apngasm_python-1.2.0-cp312-abi3-win32.whl (315.9 kB view details)

Uploaded CPython 3.12+ Windows x86

apngasm_python-1.2.0-cp312-abi3-musllinux_1_1_x86_64.whl (593.3 kB view details)

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

apngasm_python-1.2.0-cp312-abi3-musllinux_1_1_s390x.whl (578.5 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ s390x

apngasm_python-1.2.0-cp312-abi3-musllinux_1_1_ppc64le.whl (695.4 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.0-cp312-abi3-musllinux_1_1_i686.whl (603.6 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ i686

apngasm_python-1.2.0-cp312-abi3-musllinux_1_1_aarch64.whl (583.7 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ ARM64

apngasm_python-1.2.0-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (460.4 kB view details)

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

apngasm_python-1.2.0-cp312-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (428.9 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ s390x

apngasm_python-1.2.0-cp312-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (540.5 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ ppc64le

apngasm_python-1.2.0-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (482.2 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ i686

apngasm_python-1.2.0-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (440.2 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.0-cp312-abi3-macosx_11_0_universal2.whl (760.1 kB view details)

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

apngasm_python-1.2.0-cp312-abi3-macosx_11_0_arm64.whl (372.0 kB view details)

Uploaded CPython 3.12+ macOS 11.0+ ARM64

apngasm_python-1.2.0-cp312-abi3-macosx_10_15_x86_64.whl (412.4 kB view details)

Uploaded CPython 3.12+ macOS 10.15+ x86-64

apngasm_python-1.2.0-cp311-cp311-win_arm64.whl (327.6 kB view details)

Uploaded CPython 3.11 Windows ARM64

apngasm_python-1.2.0-cp311-cp311-win_amd64.whl (355.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

apngasm_python-1.2.0-cp311-cp311-win32.whl (317.6 kB view details)

Uploaded CPython 3.11 Windows x86

apngasm_python-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl (597.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

apngasm_python-1.2.0-cp311-cp311-musllinux_1_1_s390x.whl (581.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

apngasm_python-1.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl (700.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.0-cp311-cp311-musllinux_1_1_i686.whl (607.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

apngasm_python-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl (587.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

apngasm_python-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (432.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

apngasm_python-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (544.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (486.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

apngasm_python-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.0-cp311-cp311-macosx_11_0_universal2.whl (766.2 kB view details)

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

apngasm_python-1.2.0-cp311-cp311-macosx_11_0_arm64.whl (374.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

apngasm_python-1.2.0-cp311-cp311-macosx_10_15_x86_64.whl (416.0 kB view details)

Uploaded CPython 3.11 macOS 10.15+ x86-64

apngasm_python-1.2.0-cp310-cp310-win_arm64.whl (327.9 kB view details)

Uploaded CPython 3.10 Windows ARM64

apngasm_python-1.2.0-cp310-cp310-win_amd64.whl (356.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

apngasm_python-1.2.0-cp310-cp310-win32.whl (318.1 kB view details)

Uploaded CPython 3.10 Windows x86

apngasm_python-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl (597.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

apngasm_python-1.2.0-cp310-cp310-musllinux_1_1_s390x.whl (581.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

apngasm_python-1.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl (700.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.0-cp310-cp310-musllinux_1_1_i686.whl (607.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

apngasm_python-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl (587.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

apngasm_python-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (464.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (432.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

apngasm_python-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (545.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (486.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

apngasm_python-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.0-cp310-cp310-macosx_11_0_universal2.whl (766.6 kB view details)

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

apngasm_python-1.2.0-cp310-cp310-macosx_11_0_arm64.whl (374.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

apngasm_python-1.2.0-cp310-cp310-macosx_10_15_x86_64.whl (416.2 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

apngasm_python-1.2.0-cp39-cp39-win_arm64.whl (328.1 kB view details)

Uploaded CPython 3.9 Windows ARM64

apngasm_python-1.2.0-cp39-cp39-win_amd64.whl (356.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

apngasm_python-1.2.0-cp39-cp39-win32.whl (318.5 kB view details)

Uploaded CPython 3.9 Windows x86

apngasm_python-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl (597.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

apngasm_python-1.2.0-cp39-cp39-musllinux_1_1_s390x.whl (582.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

apngasm_python-1.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl (700.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.0-cp39-cp39-musllinux_1_1_i686.whl (607.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

apngasm_python-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl (587.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

apngasm_python-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (464.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (432.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

apngasm_python-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (545.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (486.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

apngasm_python-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.0-cp39-cp39-macosx_11_0_universal2.whl (766.8 kB view details)

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

apngasm_python-1.2.0-cp39-cp39-macosx_11_0_arm64.whl (374.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

apngasm_python-1.2.0-cp39-cp39-macosx_10_15_x86_64.whl (416.3 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

apngasm_python-1.2.0-cp38-cp38-win_amd64.whl (356.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

apngasm_python-1.2.0-cp38-cp38-win32.whl (318.5 kB view details)

Uploaded CPython 3.8 Windows x86

apngasm_python-1.2.0-cp38-cp38-musllinux_1_1_x86_64.whl (597.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

apngasm_python-1.2.0-cp38-cp38-musllinux_1_1_s390x.whl (581.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

apngasm_python-1.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl (700.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.0-cp38-cp38-musllinux_1_1_i686.whl (607.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

apngasm_python-1.2.0-cp38-cp38-musllinux_1_1_aarch64.whl (587.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

apngasm_python-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (464.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (432.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

apngasm_python-1.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (545.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (486.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

apngasm_python-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.0-cp38-cp38-macosx_11_0_universal2.whl (766.3 kB view details)

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

apngasm_python-1.2.0-cp38-cp38-macosx_11_0_arm64.whl (374.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

apngasm_python-1.2.0-cp38-cp38-macosx_10_15_x86_64.whl (416.1 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for apngasm_python-1.2.0.tar.gz
Algorithm Hash digest
SHA256 4c28e43e9e30fe6a8daec12e6d4df11e4fba9be595888891f14c5a11c09886eb
MD5 394709bf3991cb63a80b28c1016a8edf
BLAKE2b-256 6d60dcad91a19311fad136efc4ba2374a025d0e7d5a27c56d093194a11e1abf8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 afd0c8e86d3766093a928d2cd0702cc519fad52f119b9f23023169094d3a598f
MD5 6548bedd37d910409218635fd6dc7902
BLAKE2b-256 c64af954643fd1bf7d37251ff12f07f16aa8205e3e2d4c9bd05cc43d806ea614

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ccb62f1c8e783d992750b884e755894d189c35e6ab17f3c8a1781c7ae5e2db3
MD5 70571ff0f55c1c11e020ff955291ad45
BLAKE2b-256 97dd276d965bc5a4321eeee502dbdbe53769e17b768e8848cc413ed4831cd88c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6f60422265768d4dee0d57f17de995e3e685c16b2a8c6662210675d6c3112fb5
MD5 4e04b15f46959ad673bf06db156d359e
BLAKE2b-256 f24b44788f84e375aa8c7a5982e45663e8bb3f940ecbb82ac04d9f95b314530d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e337d4d5cec0ed180766bd473d00c1d0e8101e84d6b8e87c3173784e9c3439ba
MD5 f82d54e30f51a6ed29942b648d15fb18
BLAKE2b-256 87d1aae8d58ded2f0ea186c90f300ec059d1cce3d69d8294e14af52bb7ebf14a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 283babb5419ad80ea6e7e4a003ea56dcc80d1bc63b93e7c61d5851182fd7cb10
MD5 4b61317931a5723e1ed0fe46e97725e0
BLAKE2b-256 5a33579f77c8764d1b18d530cfad3b9048a2229c89cbeb4f479588a8d8806242

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e15ea2d4e634b61af9195a0d21dae2c9bf2debf908dd5bc67c741c594c0a9967
MD5 dfb9b3253127da8a2f2a089d9d911c40
BLAKE2b-256 d38b4e6b8b9f4f8bca097c35105a7aa82cd9d821a6f94975e81f8650b48c3e0f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92c1fa99a7fc9c15e2435b0917aa0d7523f042481579316b8c07450149e293d9
MD5 7884fbe02fdb2d3eb55d598266979d36
BLAKE2b-256 41aaf06bcc51e3ca8e6e3117eadcead2f175cc037e7c30a471327e7a23e701a7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99b06c6f55b8e84f5c86efcc4291fdcab7b51addba614a685a5348925ebe7dc8
MD5 345c83b69aeff56c918ea4193a7242ff
BLAKE2b-256 c756dab871d262825301fb3d5d707b69b65c1760df554288c9dc2c6941d500c2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2de0c24c8f411da63e13175673eb0e6c59a226cae7a4756d0b5d086515c5d911
MD5 dbe10ccbabcf7d999cb5c736a54275a1
BLAKE2b-256 fa81726d7b3a12b9cb60779b45cc1e20515e529454865c6387b00de247d7c8bb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6d7c894e9361feb11243747de4fe0acd17b03ac158b92ec5b455b98f503793ba
MD5 2cdc5ada7b87216df043285ae989dbba
BLAKE2b-256 e044864cefb5b14489e849e50059c973abd24d0d22d05d032beffa371d0443f4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1374040d58228c2dcd657b66a1956afc1ebada752653297f7e0c85d89d9b653c
MD5 39e4da31e54826c30797b8d35156a70f
BLAKE2b-256 911912a5955d9301c447714702d736305265b554a039ffbcd93dbfb0c6d29371

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c338c73643c0e6890eacfb0d18d36dc397c92cba4d75bea3d0ac57aabc9ffd34
MD5 dfbd864832ae2e7fa323ae87270b4882
BLAKE2b-256 bf3e204898b3da4a6a2529ca8ecacd1a1a2fb886c7053b9b9214d79a46979d77

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e1c5dc5ce28ba683ecad6f9ee3724545333d57a8bb0c0be8fcc226ce0122458
MD5 45aa4890d71e0e2675b2905aa425dffa
BLAKE2b-256 e5c032bd2e9a7756ffc74233f53fb8952310615f4f4e295de87ef9edbe4faeb2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa62fa4c25ce65ddc9f92023d26e2999942c15ecb0532acd008426b48744b823
MD5 3cf30d0e9c1e1eff61cf53bd6510c566
BLAKE2b-256 debaf958e6b13007acd5604d7c8a550ec1fcf80e2e5aef875f461a184cfd2870

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a70917268b97ecece61629d093036bab5f2dd262089fa9a286de64bc539c0850
MD5 ab62d6795ce21375c4e81bfb9f43543f
BLAKE2b-256 f638d32df69864dc2a767fbb501ecd3e61ca248a57a227a3985fe37a55de2a7e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp312-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 acf4d8ff917c08e687dc5640ad9a79a669fd11cdc12abc5690a13d89a1c4fa69
MD5 5b5e4366d4470e65dc12bf155d70eb46
BLAKE2b-256 753beabaa09ddecd27c7c3fa2efb20771411872d12f45b1a3b551e6a15a2a482

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 b8c231f676442b91ba7dcc3221e51704820dd8c50e72a46eb0059306312a8354
MD5 59716d268771c6f285176616f8ff8fa6
BLAKE2b-256 881aa647f61f7e6c8db8a0bb8b360a87c25b4304465a2fbc5a43da9ab8fe183a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp312-abi3-win32.whl
Algorithm Hash digest
SHA256 99710cf807a8d689d6bf72f54f37b79de2efdc27c1af1448771de422584eb860
MD5 0d3b9f9bf160abe6be373e434af838c5
BLAKE2b-256 c2e257b696bbad8851cfedf7e4d708cf20f3f90ff36990517def1ec68eeaa892

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp312-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 72f85af8d014872b5dadfdb5b3ff7aad46b4b8b91c56c22aaeda51228e85f6d6
MD5 70a40b5e444d591f83016f46b497f2e5
BLAKE2b-256 6c6775b0684a126b37fb9eb2a2115c1620f367568fad32ee6989fc9470a2f0fe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp312-abi3-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 ccc21ebcb947931db1189c28c46ef67929dc66d8e5c6255a5b39f4ef90043a19
MD5 cefb9a281963966ae3ae50a5e5315d44
BLAKE2b-256 03e79601ac68052c3d94ec8e9240203859f6e920785327db77d1754e97519cb5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp312-abi3-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 55cc5b624642d89abd7a0623f3e98bde1244f2f0b9d5fc489a2b1a558b5cfd56
MD5 bf73b4edafe7df16dc58de8a8b12194f
BLAKE2b-256 32220e660fb6a9c1903827ba91c9901a2a7d09ea705d8e6cda03bed57f466130

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp312-abi3-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ee081f6dc3c3249e35d79927ee95e641d197e316b4bbae247d0ce3e750a35c0e
MD5 47547aa4186189bbb82300650d546c44
BLAKE2b-256 4df30bf878ace2c398a846608f70b43ec79e39b00531369d39e2489dc94d2f6c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp312-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 11052b299967fb74086c8820736d8decb1eec0df61b413f18849caf950dda7c8
MD5 fdb17ea68f5b7eedc24e921a7d49a45c
BLAKE2b-256 3a896b917e35c5bf6576f34767911d15c3037fc60c654b746c1a774b14b1cb94

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90a7f809896c2f3271174788dc62df4dd3a915db1e8e8783ceda486fe621933e
MD5 3b9d99e5ad379af145176d0b3b791c2e
BLAKE2b-256 d5d4028ff9d125dde5969e4c707639bdb1901fdcbb1adaa0027322b75ef6f7d1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp312-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0d5c28e064ce35938cb622c84aa7eade97edb1e70dfcdc0144394d470f613a9c
MD5 e792df82a6626edc8235e4e315f28bdc
BLAKE2b-256 b4eacc54bb7e27a763a317bb6f8db842d165ba308805d8bdde52388f88bbdabe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp312-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 177847077c93c2ea845bb9c0c4cf7cc480b26e2a577bf27ced022604887d246a
MD5 cc737fa6c5e3679a64f1f8f9c3d4784c
BLAKE2b-256 3f2fd2c5d1945622751d430b52cf976b2ccdbb0b4c23c7302cbf65071df88e98

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a7add0196ca8150acb425a8951d9f1106dd0e32b77de550bc3b36f92eb6f2dbe
MD5 1114116c05a8b457114f15af0c114500
BLAKE2b-256 2c3810fbd1cd4fcb9692c50d9c6ba2ad848aac07d6c197313384633d533cfaf3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efe91d60cbcfe22b05d218e58cbbaaae7c5655bdf6641a4a35b7fdcc9cc974a1
MD5 4da32f97b3082724aeafed03531e4907
BLAKE2b-256 712b24e7e7e521c411d1834cc2d399c972bd1bdfaf52c302929816c5f106cae2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp312-abi3-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 870603ad2c86c88cee924e6082882ca7aae8a7bcadfbc2c41c0e1295c8fc6021
MD5 c353ddd01bcc70bf00c16cec7cafd5ae
BLAKE2b-256 a3bac2fb5e6fa0f8f7d6cb87b1ad082e84bb206a74d0b3d536273b8dff584b29

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2344cec7a8a41522397a7a8a9c91ca19ced0620d2f801264d61e9541fd4c7b41
MD5 a1fa93bbf434e961615aed419e594876
BLAKE2b-256 6426e7ff2df69a8e4150c419d0995bb1f6380a93e69c2cc23208c5d97ddbc1dc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp312-abi3-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6351050db0b3903ad160cf459cf69fddde53571a8353803f7f8cb2f3edca8a4e
MD5 ff2e809f2750831a294442dbeb0a9bad
BLAKE2b-256 4124f7a4b6e54c07714bba3166ae980e5c490791ff9f8adbd4af80ccca23e21a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 52c9c2f75666e50923fa8502e10ddfc478ba547f54b49c88754c150a6a9d9268
MD5 958c1650d24b6ba6a98257c2c167667c
BLAKE2b-256 71ff4d9d7fe926404ef4efdd9ae39351c0c2de56c20f0c95212b7c7aa533bcfd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4468cbddf54a3010894125a00a9834b1af3e1044c922eb64b03dc53969ddbcd7
MD5 178ff0fe8de84560d48b329d53c7f980
BLAKE2b-256 0da761f6db745605b797def34cb6392a40347b7af802124a20adf2c56dd580af

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cb958d5cf0fcae575c0cad750de73aa2a88dd587b137491d304c45a76f3bd7d8
MD5 1dd907ce76eaabc6b2fd675406b5f3ee
BLAKE2b-256 d19dfd2936f51c10bfe03830b04fde42fa23fd1c7b7c814ae36e2d5fedbe6d59

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 09532e96a9128b6086ffa5f58db950c77477c881243af38425c226ca394c14a1
MD5 5e9cc6488801498c6e4346212946510a
BLAKE2b-256 fc49ab02737c5c344d2a29841e7fa66479b43cbe554e451dce2a74188156e2f0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 70902ac96ad985239841b407976bd51d58bff92c98313eda64df9d1f77faf9f0
MD5 ee20c65a61954a7bc7ef78dbce389b26
BLAKE2b-256 70c80bb3146915939c4e1a7cf1bc8b6b5bf5a97f13dd4f54082ef3ffa2842579

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 b4eaed2a8409cb29e4c81972c84990946cc83d1aff30c70f5f5933bd53b34cf8
MD5 b6a3a9fbd30f8d04d77b8edb1cc4bf43
BLAKE2b-256 44ea56ea7192435030e075205d7cb80ebedeec376637c6a355cf88c88ccc4586

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 cec347eba37f3663aa41350e2b0891200f378c1420dbd4bfaa8ac05e00c8da9a
MD5 1d5d51fb3ef43999c9786432aa57c81b
BLAKE2b-256 cf990dbbe258f440d0fdc1b43e53fab3dcffef50c4ef8dceac5b191c50842907

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ca3573fd57a138ca541175e7e0ee139ed5a2453b8715bc9303c180f39d3608f5
MD5 5395ab8bbf6bb2d026d53e6d5d096426
BLAKE2b-256 05bbdf6fc29cf916d6f494f6936a7d29971233a02a96fc44b83b3957deeae3c6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ddce0f69ced20c357c2e12149534cc0cfe43cc12b51c52441195e0ad64ea8d0
MD5 665f4967d648a1bde437a7bff549347e
BLAKE2b-256 7fe58845428ad2b4f14059acb4cfb554d9948842bb219159d0c2a589fb6dc0fe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0d056b6e4cd160e9286b38f60923f2f520679ce26fbd0bf14c0ba52cdedb5fed
MD5 d5fba92f983bb9c6bf5e471f4850f273
BLAKE2b-256 440b6940a7b624517df6f830d90b0c73293bdf7cabdb7a5a4012791ab33beee5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dec02982d19cc617e44634b425e830426cd6181531657c16f78378004248b088
MD5 f75774f6e8f3b799dba84cd52c0a3a5b
BLAKE2b-256 fbcc31680be9adcd847597b9b3bb12e53e8b6ab424cce942904e6b8b4ab1b095

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 403fdf71f4adc3553d515859e53f9cac4c6baf48db699fb7b6a1893314ae0af4
MD5 1e927501270721cce04325d57d6d6722
BLAKE2b-256 2a0a55c18e3707858acbdcef14de9238909c09202a3133bc8ff8a6a06e9489ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7818b760f0c749399e204d4c3899a133103a3e5996870e9f3e50caec11dfd5a8
MD5 6312c53d127e0e6c7b6af7dd3c578991
BLAKE2b-256 69af66ecb5b16ce657d14583483ef54f06e8fcc9ddbb5ce1adcd5ee673a99767

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 12eaab907a60d44c1b2072e69f771659226d8851ea180a9636394a9f2cd45b0b
MD5 399ecf0115e065981f5f644b208b1c28
BLAKE2b-256 2ab1771a522e2ec61bda88d81afe7a222ea457db3fb5e8f8751441e08223ae48

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b8954ce1851e801c5f029d4366a08672c5ffadc9297872865fe2752f90f89dd
MD5 6d9ed26e5ac2a853a94c9827369419cb
BLAKE2b-256 1bafc3232d0ee4ac33215ed8ecd7a1d25aa930403024a4db9c6ddc7e78ef9a4b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5320d3555754dc5ff2711bec6126397727814d1f22dbe900bd997ad2080c42ac
MD5 8e6105c58c9be8b05d22f171fae247a3
BLAKE2b-256 4ec462cfd9c9b9496f1396476f6f245af515992aa76b6279034fcae5cff849b5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e88f0be99bf9eb70001c15b18281b3056695ad23a63e8beee38c1ae7069a5a96
MD5 8672aababe99d0e27e9c3b8b3077903d
BLAKE2b-256 b294f110c44d98732a82b78f36492b8e1802c39d4e4eef596649af5b98b855e6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 da778d70475d9aa858679df74e1f934c0de9e6b9a90b78d55e275f40abd3a15e
MD5 d2b5cf2f33669fce8760d4c45a49ca6e
BLAKE2b-256 72d42abf6c96eff6198400aeaca2a5b66950d378c2e5773186c5b51c1630156f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 709fcf9a130389c83657237f6594c7b806e2a36bfcf61f87f59b8b9c5e3326f2
MD5 615544444995a641637f2aa8f5744763
BLAKE2b-256 1bf8ce25fbff72ab70855fd96a0d1aadfb6101c093814ace5d1a2ab5ba30da0b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 55e19c71a921b0d2684c99e81c00f215a45130081b611878970b29204e096ef8
MD5 c5bf1d9a476407e09eafa7e29eb8708f
BLAKE2b-256 3c4427f86583a49e7a455523829865027884231c9cdacacac445ed9a1d237b3f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 503d4ec506289bb36de813580e043d2cd353d7e524f70aab35b6d9bc76a03f8f
MD5 46b0e9f7bcdb15f6cf0e3ba9c380e9b6
BLAKE2b-256 382d22554580ba0f138db035989254fbe07c1c2db4e08cfe6b18ba3cede580bd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 068619338783179fdb495a7d4939c82ca5e0720a9ebd5011eb17cbf48bc906f5
MD5 8726afd1fffccc08d41672a2a401d2e0
BLAKE2b-256 57beac0f6b43e01fe287fd91e15c1193ac5f56d206ee4cc3b3b4adf8a8538134

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c358148cf68f5d6128ac9f48e69ee683069ede105d35a1d4892e0ed24270e0b9
MD5 70a6426e80b6e997f649fcb004aa25db
BLAKE2b-256 8dbf7902bdfe7c79f63a06636e2522ee8bd4c3b0a991e77cfbbb0228ee651a95

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6095259f76d6ba8f1b2096727a4bd1bffb086672f4f86ec20a6cfeb1d37ed8b3
MD5 ce68e94b2167cd39cac52fe32e4a9eaa
BLAKE2b-256 ff0f461f2fec2714063cd75802da4657620d28b15c3e7315eaef346019751dea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddb533adc9164aa3d569d43cd3e34db11825ba04e6a49d49532d51adc423ae24
MD5 e9873401d0e1249337f7f4a1d391127d
BLAKE2b-256 22bbf1b39b7438c78d97072d8ca0a8e22589b15e4584aeaf9a15b6e713b07569

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 59d37738a19187994dc719a54c0faac83201bda9948de62f0a46d263eb3d6e58
MD5 dd906046650035037034fa45fa13a196
BLAKE2b-256 9ad0b602b653f41708594b001028da3950dfa1a95422b73e77960fb32678d6f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7eff24bfcdc54a622e5eff6c12f473306ca54d639fa0fba3cc946ead5b574709
MD5 3ad39a9a650fad2bd1aed060dfc2aa68
BLAKE2b-256 4d8cf12a7be6eeee0c36e8dc5a22f3c46485a4203bd3430438b1223d5e4d6ca9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0711d343d59c00e8a0301bbf921c75dc95c235766339e55814d5c35e0e472e84
MD5 be5138d3a79326224ceb7fa6c3703388
BLAKE2b-256 b9cd2d63562d2c65a139edd0434180cb97b4d929338b7286b1f8b220b112e7ac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e04856bc1340ba6933f6155930d8fc0aa6b7105d68ccda56e14fb5b112ad5abf
MD5 ba805d23f147cd3b9e2624fb70b6214b
BLAKE2b-256 6ab094a834d3e5183a1387cae964d19b373351aee356cfa353253fe109813c80

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 00ebaff229d761863b0ed34e6e7f3679e22dbaaf8e2bd71efeab8a8b2f6e2f77
MD5 848bf3b93fcaf7ed789c181c40d96a07
BLAKE2b-256 c3655536555cd46361553aa48adf4ac947e0c8ee2c4c26c9dd86d872296a155e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 353393e53d80461ccd1e6e7a08290a678952ca062b79eac4cb6faa4eddf86282
MD5 36dcc4359162c6fa7e9d8e98f178210d
BLAKE2b-256 e1f7975a3c8942d733ba3185c535905f4a31d68fdb8164509c0dda176a46fcbe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0d36a9a5b07c4f01af130c9c1ed7a4039e9893b4fd7351df2dfef88a55e9eaa0
MD5 9dffa777381e72aaf399ae2d331ad97d
BLAKE2b-256 fd70dab928339d30b288cd5a28227e4cc169b25363ffcab457631123f96da422

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 de1f48f17b4bd3b46ba9e98ca85d324b26d3b4556720ed6629c0a5f5c0de5b20
MD5 6e4c882071b10d793efac1c032071317
BLAKE2b-256 8d6c44e4bc1f31d20d3049cfb635d2c614b9fdabe77e1c9e4f2cfd64625b0d98

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 803882f74f75f0da5ce35fa0f6b3320148d21500beaadda96c7c735a29b3fa25
MD5 0f55b834ade302ab34c447a6b48fb6f7
BLAKE2b-256 bf4ad54afec1cad4fc7364981b8a46845a6fc6c7ccf8a5d59d612527a328d2b2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c11be4edf230969ebebbf021a63d8f087d382fb5204563c1b3aef7479dc771e6
MD5 1695dbc2fb0fe1784c70f7fa97d1b98a
BLAKE2b-256 8c5aa06e93597ec453d61f86d8a4d75f8bab527fcddd00e8f1f77f727855880e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f851af9dcb22e69f80b737174442837d0711138d0e9239229a87e9c0cf92b68a
MD5 3105c00a42dc71bba2e0dcbb67a806a8
BLAKE2b-256 1a30d4af2c4439a23fd48a31624d47435826d38a778d51197bfc9a9d2dc335fd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 9b15175bfcbafaab2281f7ddaaa19aea94b63400c03667c487737d0af903677c
MD5 b9a49adc1dd8f903b47c261b0ff97de9
BLAKE2b-256 b8d110f996cfd576b805f09ca050d1120d386f1db14363e462c0ce09ee8a6449

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 3b245d24ea154fb81c0de2511e9de649479cd3aa54d29641364bcff76133d0ee
MD5 1bd0f41fe4bdb28506df85c389cdb148
BLAKE2b-256 c062337302d968bca3aa72d751f6b9b127b74d65dae408e1ea84024fc300f1d1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 cf7add7911f834e48cd71707f310fcdb61d2bf3191da24943f7fe79ddc1c8b04
MD5 65fbbcee7cabd2b72554226821532190
BLAKE2b-256 6e88cf241e36f5b1c85f89661f28b57c899624e10b6de320d470175e41749045

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e2629f49e367a144b31219066c117a029a524fcf4821753e3441fc210ef85fe7
MD5 1058b58f2ae9580d41d557ebfe742bc0
BLAKE2b-256 09ec399da6fb166d83eaffa6f944c456ec15b755aef7837324d409f49dcbc871

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96a9cf7140194ca04b378ec78ee37a4bee6817ceb8b0698b2009e95cea612ee8
MD5 9f7430c05de9babbee3a2d97a634c6cc
BLAKE2b-256 976d3c04f37f44f00b2c05a27b628a99db59c512a9288bd90c9f27e9896d8543

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d04556abbec7f79e23f03a26df6928952f84ac53f4f2af823a5ec159c56400f2
MD5 8d367a7bf5eea42b45e7ecad161bcc44
BLAKE2b-256 5647821e5877cd87eb0ec02563f77cfe8ad8d061a5b996a624fc6c3a78794f8f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d9c1509f0b529523a6a5c5b0fe2f63c1ea5b3e2a613ed0407e0bb1d593fe012
MD5 8a5922cb40d4dd8dc519f196ba4240f4
BLAKE2b-256 9e571ede2323932349af259364111af58b3685732e549b736d109d33300b4ed2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ad8696c123fb8c2e656fcd59c489f6ab603351b9dfa1b186cbc56b6d2d708bdb
MD5 4ac0d255c79c42edcd03b6e490c0c0d6
BLAKE2b-256 bcd70b58bf40cfcfa9148bc967673db73c1a8ce965a4791070bf23579651e021

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42fecfa4c563eb4caa47e4239f31bc996baf24d15e351f1191fbaea43560866f
MD5 48ab90b3f218c61f60e4bb8307e94a99
BLAKE2b-256 2d91a6815a3e30743dbe1f140e0a96e7462857877515a1928f7f43a38fdecd17

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 fed5d1dfb7fc801594d3de6cee4050a419b15399cfe26437dea584d5a9a13933
MD5 7d9e7836486cb2575986fce980a169f7
BLAKE2b-256 1debd18299e60c8333c363c00a62f14951942e33c8b1007a40417128878ff8d0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c887542a49c91c29259ed76b2ffc4ea3a448b8648a6b4558e818404e42c391ff
MD5 a2a027af8ff3a385f102a161a50ef77f
BLAKE2b-256 134beea05723139b0e7f5d684fbd6c6b9d4f546419eb027032d9c56e26bf1a21

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e6c9359fd3c8338f81ea25ca7dbf2e095256f6ce2a92f932d7ec931b47642ea2
MD5 e2fa607b2f95e3b2e5155a6d36e1a77b
BLAKE2b-256 d157823f8cdd18ca678021a7764d34a765ab52dd744682d3884df94c0d23ff28

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 37080c353c6391c1f7e356d147b681e9a8d8beef27d6aa518dfc69a0346ab6e4
MD5 52e75d8a3f7ca01f224505b2bcc84975
BLAKE2b-256 7bad7cf538ee56ed4db2983d55ad89616f31e94aa8ab0565f1d3e7b41d448e97

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3ff8088dceb912def0363eb2e5cfb6ecfd500c202e77f6865343cbf5c0a92d60
MD5 f4206bd7e71cd60c802b469a22af7ce0
BLAKE2b-256 785d21500f4dd5e75ea3490ec3070988b36e21dd1baae1ccf4487002bdc51ff5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4b532601bd6181ae9eb5890fe86a630439a92159c9728ae455beab8063b0354d
MD5 747838ad90725afdb2af598ee2d97754
BLAKE2b-256 283eaaf76e8e7cc872a42f338ce6d285a1d87b03e16839c45bde3be051ecabc9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 d9a96785b8257307215879e233f85a29b33b6976243b035f5b98a459ed0417c0
MD5 6da12eb66ee35961c807d1db67c3400c
BLAKE2b-256 76e678749518977f39ae7a4a59ec77d448faa8ed9ed2f3abe5c8d8fb1a28c79e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 84c4f378d6c10a20528b732394d375f00a8beab238df176f63f369301513a5f9
MD5 77e66120ecb621db72ae5ee92d19eaec
BLAKE2b-256 c206c07e91298a3890aa44ef97460b99d6a9e8de64889b845ebd216bd04c57a2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a60d5d13b9128e8f6e7577694e20ea96b8d88edc8a4c8ffd13263ea1b40b9f83
MD5 6ebc9f1401b04dd0b446076da32f0ae8
BLAKE2b-256 b17c478adafa1631380b7fd26074aa26ccb149c8ba5e94fed183487bbafe2ea7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4bc1fa91550f538a70d93de475c99da7769756ea9a1f1906940c99ce6bdad2c1
MD5 1756aaaec9b90c592eb9e0bd9b5c7f06
BLAKE2b-256 dc077de8bf9ef7727c1fdd45ba18445deba9238ab7ec4ab8a8782742a1106bbd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08718b0a18e96e531490765879607538845f33249ef4f57164da76bafc748203
MD5 e0cf5819fb2058cae24bb74b5a3ce9fe
BLAKE2b-256 92e6507517ad142e7bad3c975e441c0fa9d0dd9e6ed111153ce88bdeea55e2ef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b20a353ecb6dadc07da902d838f83a269d7651b14fda9ff7d99182d94bba4ad0
MD5 70af7fa51d9d7ed22cb9f5d7957f4d84
BLAKE2b-256 e3db0dd757cb67a31f1760705322a27e3076d358e3531a0c79e9f60f2e52b688

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2fa70f7557c4232f70510e95e294d13f4773da05a200401f9095a867eb365b20
MD5 f69c75c9b107aab6eb1b8ae91b2fe757
BLAKE2b-256 b59f429f935156764f48715b497cd786853fcef415dc33870abed5845a1e3b12

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4044a08ac11f58b4fc4bfca5cda52534cbd88726c3b38e69e81c03d9e6550c1c
MD5 febb6aa07bf5498347005f1f8690da31
BLAKE2b-256 3b72e644708f348f3d283e47d419cd0a694f2513da40ac13efeb42290d7e7ca4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b59afd8aa922aae1145708110c02d92c58d358647a0f01e2fa9073a412743e4
MD5 05313e7c437fd0ca3d54fcc2b54965ba
BLAKE2b-256 11e1621d14580f0411bb25d6709c5458a1c59b9a9b6bb5000e19c007d56c48fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 57533c7c7971e116a6f350c171330d6806fe5c9dfaaff60f9083d0b22ef86403
MD5 2baca621a95ecd77ae7b6ee27bd7b015
BLAKE2b-256 1fad957d8606684d33ec5f0acbcde96de6bb39d52aa9eca9c44b6f062f7228e0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eab1c000c98d0fd307611f510de1e541acfbc23ec0c3938ffd3cc6a8a2b09ee8
MD5 ae29612dc306b7f7f34cca2e2b4b0781
BLAKE2b-256 1b4b54878b2036ddc6b76361a57dc7f3b29291ea4594b0f6912c4cf1dbe4e4e6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.2.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fec8cf242d7e1e5680168ba7bdcdc96141491ffeb73ce413ebc95381d06c833c
MD5 e485ea9e05032facc579a0d80b472589
BLAKE2b-256 248fc2928548d021f45c84bb82ea96f62a42579359ae17e80ee53c84763ab83d

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